2015-11-20 22:09:48 +00:00
|
|
|
%% -------------------------------------------------------------------
|
2015-11-19 20:13:26 +00:00
|
|
|
%%
|
2016-06-30 20:51:07 +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.
|
|
|
|
|
2016-01-11 17:40:38 +00:00
|
|
|
-module(ts_degraded_select_pass_1).
|
2015-10-07 14:47:57 +00:00
|
|
|
|
|
|
|
-behavior(riak_test).
|
|
|
|
|
2015-11-17 22:54:20 +00:00
|
|
|
-include_lib("eunit/include/eunit.hrl").
|
|
|
|
|
2015-12-01 17:59:55 +00:00
|
|
|
-export([confirm/0]).
|
2015-10-07 14:47:57 +00:00
|
|
|
|
|
|
|
confirm() ->
|
2016-06-30 20:51:07 +00:00
|
|
|
OrigCluster = rt:deploy_nodes(3),
|
|
|
|
OrigClients = [rt:pbc(Node) || Node <- OrigCluster],
|
|
|
|
OrigCCNN = lists:zip(OrigCluster, OrigClients),
|
|
|
|
ok = rt:join_cluster(OrigCluster),
|
|
|
|
|
2016-11-01 14:03:48 +00:00
|
|
|
DDL = ts_data:get_ddl(),
|
2016-06-30 20:51:07 +00:00
|
|
|
?assertEqual({ok, {[], []}}, riakc_ts:query(hd(OrigClients), DDL)),
|
|
|
|
|
2016-11-01 14:03:48 +00:00
|
|
|
Table = ts_data:get_default_bucket(),
|
|
|
|
Data = ts_data:get_valid_select_data(),
|
2016-06-30 20:51:07 +00:00
|
|
|
?assertEqual(ok, riakc_ts:put(hd(OrigClients), Table, Data)),
|
|
|
|
|
2016-11-01 14:03:48 +00:00
|
|
|
Qry = ts_data:get_valid_qry(0, 11),
|
2016-06-30 20:51:07 +00:00
|
|
|
|
|
|
|
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),
|
|
|
|
|
2015-11-17 22:54:20 +00:00
|
|
|
pass.
|
2016-06-30 20:51:07 +00:00
|
|
|
|
|
|
|
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).
|