New machi_lifecycle_mgr_test, AST spec -> running FLUs & chains works!

This commit is contained in:
Scott Lystig Fritchie 2015-12-11 18:57:57 +09:00
parent e55115fdba
commit 6f077fbb62
2 changed files with 79 additions and 16 deletions

View file

@ -321,7 +321,7 @@ do_proj_write3(ProjType, #projection_v1{epoch_number=Epoch,
end. end.
do_proj_write4(ProjType, Proj, Path, Epoch, #state{consistency_mode=CMode}=S) -> do_proj_write4(ProjType, Proj, Path, Epoch, #state{consistency_mode=CMode}=S) ->
{ok, FH} = file:open(Path, [write, raw, binary]), {{ok, FH}, Epoch, Path} = {file:open(Path, [write, raw, binary]), Epoch, Path},
ok = file:write(FH, term_to_binary(Proj)), ok = file:write(FH, term_to_binary(Proj)),
ok = file:sync(FH), ok = file:sync(FH),
ok = file:close(FH), ok = file:close(FH),
@ -387,7 +387,6 @@ wait_for_liveness(PidSpec, StartTime, WaitTime) ->
undefined -> undefined ->
case timer:now_diff(os:timestamp(), StartTime) div 1000 of case timer:now_diff(os:timestamp(), StartTime) div 1000 of
X when X < WaitTime -> X when X < WaitTime ->
io:format(user, "\nYOO ~p ~p\n", [PidSpec, lists:sort(registered())]),
timer:sleep(1), timer:sleep(1),
wait_for_liveness(PidSpec, StartTime, WaitTime) wait_for_liveness(PidSpec, StartTime, WaitTime)
end; end;

View file

@ -31,10 +31,7 @@
-define(MGR, machi_chain_manager1). -define(MGR, machi_chain_manager1).
smoke_test_() -> setup() ->
{timeout, 120, fun() -> smoke_test2() end}.
smoke_test2() ->
catch application:stop(machi), catch application:stop(machi),
{ok, SupPid} = machi_sup:start_link(), {ok, SupPid} = machi_sup:start_link(),
error_logger:tty(false), error_logger:tty(false),
@ -55,6 +52,24 @@ smoke_test2() ->
filelib:ensure_dir(V ++ "/unused"), filelib:ensure_dir(V ++ "/unused"),
application:set_env(machi, K, V) application:set_env(machi, K, V)
end || {K, V} <- Envs], end || {K, V} <- Envs],
{SupPid, Dir, Cleanup}.
cleanup({SupPid, Dir, Cleanup}) ->
exit(SupPid, normal),
machi_util:wait_for_death(SupPid, 100),
error_logger:tty(true),
catch application:stop(machi),
machi_flu1_test:clean_up_data_dir(Dir ++ "/*/*"),
machi_flu1_test:clean_up_data_dir(Dir),
machi_flu1_test:clean_up_env_vars(Cleanup),
undefined = application:get_env(machi, yo),
ok.
smoke_test_() ->
{timeout, 60, fun() -> smoke_test2() end}.
smoke_test2() ->
YoCleanup = setup(),
try try
Prefix = <<"pre">>, Prefix = <<"pre">>,
Chunk1 = <<"yochunk">>, Chunk1 = <<"yochunk">>,
@ -135,20 +150,15 @@ smoke_test2() ->
ok ok
after after
exit(SupPid, normal), cleanup(YoCleanup)
machi_util:wait_for_death(SupPid, 100),
error_logger:tty(true),
catch application:stop(machi),
%% machi_flu1_test:clean_up_data_dir(Dir ++ "/*/*"),
%% machi_flu1_test:clean_up_data_dir(Dir),
machi_flu1_test:clean_up_env_vars(Cleanup),
undefined = application:get_env(machi, yo)
end. end.
make_pending_config(Term) -> make_pending_config(Term) ->
Dir = machi_lifecycle_mgr:get_pending_dir(x), Dir = machi_lifecycle_mgr:get_pending_dir(x),
Blob = io_lib:format("~w.\n", [Term]), Blob = io_lib:format("~w.\n", [Term]),
ok = file:write_file(Dir ++ "/" ++ lists:flatten(io_lib:format("~w,~w,~w", tuple_to_list(os:timestamp()))), {A,B,C} = os:timestamp(),
ok = file:write_file(Dir ++ "/" ++
lists:flatten(io_lib:format("~w.~6..0w",[A*1000000+B,C])),
Blob). Blob).
ast_tuple_syntax_test() -> ast_tuple_syntax_test() ->
@ -236,7 +246,7 @@ ast_run_test() ->
{flu, 'f5', "localhost", PortBase+5, []}, {flu, 'f5', "localhost", PortBase+5, []},
{chain, 'cc', ['f3','f5'], []}], {chain, 'cc', ['f3','f5'], []}],
{ok, Env2} = machi_lifecycle_mgr:run_ast(R2), {ok, Env2} = machi_lifecycle_mgr:run_ast(R2),
{X2a, X2b} = machi_lifecycle_mgr:diff_env(Env2, "localhost"), {_X2a, X2b} = machi_lifecycle_mgr:diff_env(Env2, "localhost"),
%% io:format(user, "X2b: ~p\n", [X2b]), %% io:format(user, "X2b: ~p\n", [X2b]),
F5_port = PortBase+5, F5_port = PortBase+5,
[#p_srvr{name='f5',address="localhost",port=F5_port}, [#p_srvr{name='f5',address="localhost",port=F5_port},
@ -247,5 +257,59 @@ ast_run_test() ->
ok. ok.
ast_then_apply_test_() ->
{timeout, 60, fun() -> ast_then_apply_test2() end}.
ast_then_apply_test2() ->
YoCleanup = setup(),
try
PortBase = 20400,
NumChains = 4,
ChainLen = 3,
FLU_num = NumChains * ChainLen,
FLU_defs = [{flu, list_to_atom("f"++integer_to_list(X)),
"localhost", PortBase+X, []} || X <- lists:seq(1,FLU_num)],
FLU_names = [FLU || {flu,FLU,_,_,_} <- FLU_defs],
Ch_defs = [{chain, list_to_atom("c"++integer_to_list(X)),
lists:sublist(FLU_names, X, 3),
[]} || X <- lists:seq(1, FLU_num, 3)],
R1 = [switch_old_and_new,
{host, "localhost", "localhost", "localhost", []}]
++ FLU_defs ++ Ch_defs,
{ok, Env1} = machi_lifecycle_mgr:run_ast(R1),
{_X1a, X1b} = machi_lifecycle_mgr:diff_env(Env1, "localhost"),
%% io:format(user, "X1b ~p\n", [X1b]),
[make_pending_config(X) || X <- X1b],
{PassFLUs, PassChains} = machi_lifecycle_mgr:process_pending(),
true = (length(PassFLUs) == length(FLU_defs)),
true = (length(PassChains) == length(Ch_defs)),
%% Kick the chain managers into doing something useful right now.
Pstores = [list_to_atom(atom_to_list(X) ++ "_pstore") || X <- FLU_names],
Fits = [list_to_atom(atom_to_list(X) ++ "_fitness") || X <- FLU_names],
ChMgrs = [list_to_atom(atom_to_list(X) ++ "_chmgr") || X <- FLU_names],
Advance = machi_chain_manager1_test:make_advance_fun(
Fits, FLU_names, ChMgrs, 3),
Advance(),
%% Sanity check: everyone is configured properly.
[begin
{ok, #projection_v1{epoch_number=Epoch, all_members=All,
chain_name=ChainName, upi=UPI}} =
machi_projection_store:read_latest_projection(PStore, private),
%% io:format(user, "~p: epoch ~p all ~p\n", [PStore, Epoch, All]),
true = Epoch > 0,
ChainLen = length(All),
true = (length(UPI) > 0),
{chain, _, Full, []} = lists:keyfind(ChainName, 2, Ch_defs),
true = lists:sort(Full) == lists:sort(All)
end || PStore <- Pstores],
ok
after
cleanup(YoCleanup)
end.
-endif. % !PULSE -endif. % !PULSE
-endif. % TEST -endif. % TEST