mirror of
https://github.com/valitydev/riak_test.git
synced 2024-11-07 08:58:52 +00:00
eb6c3eba15
Fixes issue #149, related to basho/riak_core#228 If queried right after it has joined the cluster, a node may not have the other nodes registered by the node watcher yet. Switching to waiting until all nodes in the cluster have been registered by the node watcher before performing query. Also, querying for all nodes after stopping/starting just in case, although I haven't seen problems there, but sound reasonable. Removing assert from the call to wait_until_no_pending_changes since it is already asserting internally.
155 lines
5.6 KiB
Erlang
155 lines
5.6 KiB
Erlang
%% -------------------------------------------------------------------
|
|
%%
|
|
%% Copyright (c) 2012 Basho Technologies, Inc.
|
|
%%
|
|
%% This file is provided to you under the Apache License,
|
|
%% Version 2.0 (the "License"); you may not use this file
|
|
%% except in compliance with the License. You may obtain
|
|
%% a copy of the License at
|
|
%%
|
|
%% http://www.apache.org/licenses/LICENSE-2.0
|
|
%%
|
|
%% Unless required by applicable law or agreed to in writing,
|
|
%% software distributed under the License is distributed on an
|
|
%% "AS IS" BASIS, WITHOUT WARRANTIES OR CONDITIONS OF ANY
|
|
%% KIND, either express or implied. See the License for the
|
|
%% specific language governing permissions and limitations
|
|
%% under the License.
|
|
%%
|
|
%% -------------------------------------------------------------------
|
|
-module(verify_listkeys).
|
|
-behavior(riak_test).
|
|
-export([confirm/0]).
|
|
-include_lib("eunit/include/eunit.hrl").
|
|
|
|
-define(BUCKET, <<"listkeys_bucket">>).
|
|
-define(NUM_BUCKETS, 1200).
|
|
-define(NUM_KEYS, 1000).
|
|
|
|
confirm() ->
|
|
[Node1, Node2, Node3, Node4] = Nodes = rt:deploy_nodes(4),
|
|
?assertEqual(ok, rt:wait_until_nodes_ready(Nodes)),
|
|
|
|
lager:info("Nodes deployed, but not joined."),
|
|
|
|
lager:info("Writing some known data to Node 1"),
|
|
put_keys(Node1, ?BUCKET, ?NUM_KEYS),
|
|
put_buckets(Node1, ?NUM_BUCKETS),
|
|
timer:sleep(2000),
|
|
check_it_all([Node1]),
|
|
|
|
lists:foldl(fun(Node, [N1|_] = Cluster) ->
|
|
lager:info("An invitation to this party is cordially extended to ~p.", [Node]),
|
|
rt:join(Node, N1),
|
|
lager:info("Check keys and buckets during transfer"),
|
|
Ns = lists:usort([Node|Cluster]),
|
|
check_it_all(Ns),
|
|
lager:info("Wait until there are no pending changes"),
|
|
rt:wait_until_no_pending_changes(Ns),
|
|
rt:wait_for_cluster_service(Ns, riak_kv),
|
|
|
|
lager:info("Check keys and buckets after transfer"),
|
|
check_it_all(Ns),
|
|
Ns
|
|
end, [Node1], [Node2, Node3, Node4]),
|
|
|
|
lager:info("Stopping Node1"),
|
|
rt:stop(Node1),
|
|
rt:wait_until_unpingable(Node1),
|
|
|
|
%% Stop current node, restart previous node, verify
|
|
lists:foldl(fun(Node, Prev) ->
|
|
lager:info("Stopping Node ~p", [Node]),
|
|
rt:stop(Node),
|
|
rt:wait_until_unpingable(Node),
|
|
|
|
lager:info("Starting Node ~p", [Prev]),
|
|
rt:start(Prev),
|
|
UpNodes = Nodes -- [Node],
|
|
lager:info("Waiting for riak_kv service to be ready in ~p", [Prev]),
|
|
rt:wait_for_cluster_service(UpNodes, riak_kv),
|
|
|
|
lager:info("Check keys and buckets"),
|
|
check_it_all(UpNodes),
|
|
Node
|
|
end, Node1, [Node2, Node3, Node4]),
|
|
|
|
lager:info("Stopping Node2"),
|
|
rt:stop(Node2),
|
|
rt:wait_until_unpingable(Node2),
|
|
|
|
lager:info("Stopping Node3"),
|
|
rt:stop(Node3),
|
|
rt:wait_until_unpingable(Node3),
|
|
|
|
lager:info("Only Node1 is up, so test should fail!"),
|
|
|
|
check_it_all([Node1], false),
|
|
pass.
|
|
|
|
put_keys(Node, Bucket, Num) ->
|
|
Pid = rt:pbc(Node),
|
|
Keys = [list_to_binary(["", integer_to_list(Ki)]) || Ki <- lists:seq(0, Num - 1)],
|
|
Vals = [list_to_binary(["", integer_to_list(Ki)]) || Ki <- lists:seq(0, Num - 1)],
|
|
[riakc_pb_socket:put(Pid, riakc_obj:new(Bucket, Key, Val)) || {Key, Val} <- lists:zip(Keys, Vals)],
|
|
riakc_pb_socket:stop(Pid).
|
|
|
|
list_keys(Node, Bucket, Attempt, Num, ShouldPass) ->
|
|
Pid = rt:pbc(Node),
|
|
lager:info("Listing keys on ~p. Attempt #~p", [Node, Attempt]),
|
|
|
|
case ShouldPass of
|
|
true ->
|
|
{ok, Keys} = riakc_pb_socket:list_keys(Pid, Bucket),
|
|
ActualKeys = lists:usort(Keys),
|
|
ExpectedKeys = lists:usort([list_to_binary(["", integer_to_list(Ki)]) || Ki <- lists:seq(0, Num - 1)]),
|
|
assert_equal(ExpectedKeys, ActualKeys);
|
|
_ ->
|
|
{Status, Message} = riakc_pb_socket:list_keys(Pid, Bucket),
|
|
?assertEqual(error, Status),
|
|
?assertEqual(<<"insufficient_vnodes_available">>, Message)
|
|
end,
|
|
riakc_pb_socket:stop(Pid).
|
|
|
|
put_buckets(Node, Num) ->
|
|
Pid = rt:pbc(Node),
|
|
Buckets = [list_to_binary(["", integer_to_list(Ki)]) || Ki <- lists:seq(0, Num - 1)],
|
|
{Key, Val} = {<<"test_key">>, <<"test_value">>},
|
|
[riakc_pb_socket:put(Pid, riakc_obj:new(Bucket, Key, Val)) || Bucket <- Buckets],
|
|
riakc_pb_socket:stop(Pid).
|
|
|
|
list_buckets(Node, Attempt, Num, ShouldPass) ->
|
|
Pid = rt:pbc(Node),
|
|
lager:info("Listing buckets on ~p. Attempt #~p", [Node, Attempt]),
|
|
|
|
{Status, Buckets} = riakc_pb_socket:list_buckets(Pid),
|
|
?assertEqual(ok, Status),
|
|
ExpectedBuckets= lists:usort([?BUCKET | [list_to_binary(["", integer_to_list(Ki)]) || Ki <- lists:seq(0, Num - 1)]]),
|
|
ActualBuckets = lists:usort(Buckets),
|
|
case ShouldPass of
|
|
true ->
|
|
assert_equal(ExpectedBuckets, ActualBuckets);
|
|
_ ->
|
|
?assert(length(ActualBuckets) < length(ExpectedBuckets)),
|
|
lager:info("This case expects inconsistent bucket lists")
|
|
end,
|
|
riakc_pb_socket:stop(Pid).
|
|
|
|
|
|
assert_equal(Expected, Actual) ->
|
|
case Expected -- Actual of
|
|
[] -> ok;
|
|
Diff -> lager:info("Expected -- Actual: ~p", [Diff])
|
|
end,
|
|
?assertEqual(length(Actual), length(Expected)),
|
|
?assertEqual(Actual, Expected).
|
|
|
|
check_it_all(Nodes) ->
|
|
check_it_all(Nodes, true).
|
|
check_it_all(Nodes, ShouldPass) ->
|
|
[check_a_node(N, ShouldPass) || N <- Nodes].
|
|
|
|
check_a_node(Node, ShouldPass) ->
|
|
[list_keys(Node, ?BUCKET, Attempt, ?NUM_KEYS, ShouldPass) || Attempt <- [1,2,3] ],
|
|
[list_buckets(Node, Attempt, ?NUM_BUCKETS, ShouldPass) || Attempt <- [1,2,3] ].
|