riak_test/tests/ts_degraded_select_pass_1.erl

66 lines
2.1 KiB
Erlang
Raw Normal View History

%% -------------------------------------------------------------------
2015-11-19 20:13:26 +00:00
%%
%% Copyright (c) 2016 Basho Technologies, Inc.
2015-11-19 20:13:26 +00:00
%%
%% 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.
%%
%% -------------------------------------------------------------------
%% @doc A module to test riak_ts basic create bucket/put/select cycle,
%% with a node down.
-module(ts_degraded_select_pass_1).
2015-10-07 14:47:57 +00:00
-behavior(riak_test).
-include_lib("eunit/include/eunit.hrl").
-export([confirm/0]).
2015-10-07 14:47:57 +00:00
confirm() ->
OrigCluster = rt:deploy_nodes(3),
OrigClients = [rt:pbc(Node) || Node <- OrigCluster],
OrigCCNN = lists:zip(OrigCluster, OrigClients),
ok = rt:join_cluster(OrigCluster),
DDL = ts_data:get_ddl(),
?assertEqual({ok, {[], []}}, riakc_ts:query(hd(OrigClients), DDL)),
Table = ts_data:get_default_bucket(),
Data = ts_data:get_valid_select_data(),
?assertEqual(ok, riakc_ts:put(hd(OrigClients), Table, Data)),
Qry = ts_data:get_valid_qry(0, 11),
ok = check_data(OrigCCNN, Qry, Data),
{NodeOut, _} = lists:nth(2, OrigCCNN),
ok = rt:leave(NodeOut),
DegradedCluster = OrigCluster -- [NodeOut],
DegradedCCNN = lists:keydelete(NodeOut, 1, OrigCCNN),
ok = rt:wait_until_no_pending_changes(DegradedCluster),
ok = check_data(DegradedCCNN, Qry, Data),
pass.
check_data(CCNN, Qry, Expected) ->
lists:foreach(
fun({Node, Client}) ->
{ok, {_Cols, GotRows0}} = riakc_ts:query(Client, Qry),
GotRows = lists:sort(GotRows0),
io:format("Got ~b records at ~p\n", [length(GotRows), Node]),
?assertEqual(Expected, GotRows)
end,
CCNN).