mirror of
https://github.com/valitydev/riak_test.git
synced 2024-11-06 16:45:29 +00:00
improve cluster meta test coverage in cluster_meta_basic
This commit is contained in:
parent
ea0c8ef55a
commit
e0456ff7ea
@ -19,17 +19,29 @@
|
||||
%% -------------------------------------------------------------------
|
||||
-module(cluster_meta_basic).
|
||||
-behavior(riak_test).
|
||||
-export([confirm/0]).
|
||||
-export([confirm/0, object_count/2]).
|
||||
-include_lib("eunit/include/eunit.hrl").
|
||||
|
||||
-define(PREFIX1, {a, b}).
|
||||
-define(PREFIX2, {fold, prefix}).
|
||||
-define(KEY1, key1).
|
||||
-define(KEY2, key2).
|
||||
-define(VAL1, val1).
|
||||
-define(VAL2, val2).
|
||||
|
||||
confirm() ->
|
||||
[N1 | _] = Nodes = rt:build_cluster(5),
|
||||
Nodes = rt:build_cluster(5),
|
||||
ok = test_fold_full_prefix(Nodes),
|
||||
ok = test_metadata_conflicts(Nodes),
|
||||
ok = test_writes_after_partial_cluster_failure(Nodes).
|
||||
|
||||
|
||||
%% 1. write a key and waits til it propogates around the cluster
|
||||
%% 2. stop the immediate eager peers of the node that performed the write
|
||||
%% 3. perform an update of the key from the same node and wait until it reaches all alive nodes
|
||||
%% 4. bring up stopped nodes and ensure that either lazily queued messages or anti-entropy repair
|
||||
%% propogates key to all nodes in cluster
|
||||
test_writes_after_partial_cluster_failure([N1 | _]=Nodes) ->
|
||||
metadata_put(N1, ?PREFIX1, ?KEY1, ?VAL1),
|
||||
wait_until_metadata_value(Nodes, ?PREFIX1, ?KEY1, ?VAL1),
|
||||
print_tree(N1, Nodes),
|
||||
@ -47,19 +59,95 @@ confirm() ->
|
||||
wait_until_metadata_value(Nodes, ?PREFIX1, ?KEY1, ?VAL2),
|
||||
ok.
|
||||
|
||||
%% 1. write several keys to a prefix, fold over them accumulating a list
|
||||
%% 2. ensure list of keys and values match those written to prefix
|
||||
test_fold_full_prefix([N1 | _]=Nodes) ->
|
||||
rt:load_modules_on_nodes([?MODULE], Nodes),
|
||||
lager:info("testing prefix (~p) fold on ~p", [?PREFIX2, N1]),
|
||||
KeysAndVals = [{I, I} || I <- lists:seq(1, 10)],
|
||||
[metadata_put(N1, ?PREFIX2, K, V) || {K, V} <- KeysAndVals],
|
||||
%% we don't use a resolver but shouldn't have conflicts either, so assume that in
|
||||
%% head of fold function
|
||||
FoldRes = [{K, V} || {K, [V]} <- metadata_to_list(N1, ?PREFIX2)],
|
||||
SortedRes = lists:ukeysort(1, FoldRes),
|
||||
?assertEqual(KeysAndVals, SortedRes),
|
||||
ok.
|
||||
|
||||
test_metadata_conflicts([N1, N2 | _]=Nodes) ->
|
||||
rt:load_modules_on_nodes([?MODULE], Nodes),
|
||||
lager:info("testing conflicting writes to a key"),
|
||||
write_conflicting(N1, N2, ?PREFIX1, ?KEY2, ?VAL1, ?VAL2),
|
||||
|
||||
%% assert that we still have siblings since write_conflicting uses allow_put=false
|
||||
lager:info("checking object count after resolve on get w/o put"),
|
||||
?assertEqual(2, rpc:call(N1, ?MODULE, object_count, [?PREFIX1, ?KEY2])),
|
||||
?assertEqual(2, rpc:call(N2, ?MODULE, object_count, [?PREFIX1, ?KEY2])),
|
||||
|
||||
%% iterate over the values and ensure we can resolve w/o doing a put
|
||||
?assertEqual([{?KEY2, lists:usort([?VAL1, ?VAL2])}],
|
||||
metadata_to_list(N1, ?PREFIX1, [{allow_put, false}])),
|
||||
?assertEqual([{?KEY2, lists:usort([?VAL1, ?VAL2])}],
|
||||
metadata_to_list(N2, ?PREFIX1, [{allow_put, false}])),
|
||||
lager:info("checking object count after resolve on itr_key_values w/o put"),
|
||||
?assertEqual(2, rpc:call(N1, ?MODULE, object_count, [?PREFIX1, ?KEY2])),
|
||||
?assertEqual(2, rpc:call(N2, ?MODULE, object_count, [?PREFIX1, ?KEY2])),
|
||||
|
||||
%% assert that we no longer have siblings when allow_put=true
|
||||
lager:info("checking object count afger resolve on get w/ put"),
|
||||
wait_until_metadata_value([N1, N2], ?PREFIX1, ?KEY2,
|
||||
[{resolver, fun list_resolver/2}],
|
||||
lists:usort([?VAL1, ?VAL2])),
|
||||
?assertEqual(1, rpc:call(N1, ?MODULE, object_count, [?PREFIX1, ?KEY2])),
|
||||
?assertEqual(1, rpc:call(N2, ?MODULE, object_count, [?PREFIX1, ?KEY2])),
|
||||
ok.
|
||||
|
||||
write_conflicting(N1, N2, Prefix, Key, Val1, Val2) ->
|
||||
rpc:call(N1, riak_core_metadata_manager, put, [{Prefix, Key}, undefined, Val1]),
|
||||
rpc:call(N2, riak_core_metadata_manager, put, [{Prefix, Key}, undefined, Val2]),
|
||||
wait_until_metadata_value([N1, N2], Prefix, Key,
|
||||
[{resolver, fun list_resolver/2},
|
||||
{allow_put, false}],
|
||||
lists:usort([Val1, Val2])).
|
||||
|
||||
|
||||
object_count(Prefix, Key) ->
|
||||
Obj = riak_core_metadata_manager:get({Prefix, Key}),
|
||||
case Obj of
|
||||
undefined -> 0;
|
||||
_ -> riak_core_metadata_object:value_count(Obj)
|
||||
end.
|
||||
|
||||
|
||||
list_resolver(X1, X2) when is_list(X2) andalso is_list(X1) ->
|
||||
lists:usort(X1 ++ X2);
|
||||
list_resolver(X1, X2) when is_list(X2) ->
|
||||
lists:usort([X1 | X2]);
|
||||
list_resolver(X1, X2) when is_list(X1) ->
|
||||
lists:usort(X1 ++ [X2]);
|
||||
list_resolver(X1, X2) ->
|
||||
lists:usort([X1, X2]).
|
||||
|
||||
metadata_to_list(Node, FullPrefix) ->
|
||||
metadata_to_list(Node, FullPrefix, []).
|
||||
|
||||
metadata_to_list(Node, FullPrefix, Opts) ->
|
||||
rpc:call(Node, riak_core_metadata, to_list, [FullPrefix, Opts]).
|
||||
|
||||
metadata_put(Node, Prefix, Key, FunOrVal) ->
|
||||
ok = rpc:call(Node, riak_core_metadata, put, [Prefix, Key, FunOrVal]).
|
||||
|
||||
metadata_get(Node, Prefix, Key) ->
|
||||
rpc:call(Node, riak_core_metadata, get, [Prefix, Key]).
|
||||
metadata_get(Node, Prefix, Key, Opts) ->
|
||||
rpc:call(Node, riak_core_metadata, get, [Prefix, Key, Opts]).
|
||||
|
||||
wait_until_metadata_value(Nodes, Prefix, Key, Val) when is_list(Nodes) ->
|
||||
[wait_until_metadata_value(Node, Prefix, Key, Val) || Node <- Nodes];
|
||||
wait_until_metadata_value(Node, Prefix, Key, Val) ->
|
||||
wait_until_metadata_value(Nodes, Prefix, Key, Val) ->
|
||||
wait_until_metadata_value(Nodes, Prefix, Key, [], Val).
|
||||
|
||||
wait_until_metadata_value(Nodes, Prefix, Key, Opts, Val) when is_list(Nodes) ->
|
||||
[wait_until_metadata_value(Node, Prefix, Key, Opts, Val) || Node <- Nodes];
|
||||
wait_until_metadata_value(Node, Prefix, Key, Opts, Val) ->
|
||||
lager:info("wait until {~p, ~p} equals ~p on ~p", [Prefix, Key, Val, Node]),
|
||||
F = fun() ->
|
||||
%% TODO: need to not resolve or else we can have ambiguities
|
||||
Val =:= metadata_get(Node, Prefix, Key)
|
||||
Val =:= metadata_get(Node, Prefix, Key, Opts)
|
||||
end,
|
||||
?assertEqual(ok, rt:wait_until(F)),
|
||||
ok.
|
||||
|
Loading…
Reference in New Issue
Block a user