mirror of
https://github.com/valitydev/riak_test.git
synced 2024-11-06 08:35:22 +00:00
Fix test failures caused by riak client not allowing list keys
This commit is contained in:
parent
d849fe3e59
commit
bbb85a23aa
@ -8,6 +8,10 @@
|
|||||||
confirm() ->
|
confirm() ->
|
||||||
application:start(inets),
|
application:start(inets),
|
||||||
lager:info("Deploy some nodes"),
|
lager:info("Deploy some nodes"),
|
||||||
|
|
||||||
|
%% Allow listing of buckets and keys for testing
|
||||||
|
application:set_env(riakc, allow_listing, true),
|
||||||
|
|
||||||
Nodes = rt:build_cluster(4, [], [
|
Nodes = rt:build_cluster(4, [], [
|
||||||
{riak_core, [{default_bucket_props,
|
{riak_core, [{default_bucket_props,
|
||||||
[
|
[
|
||||||
|
@ -11,6 +11,9 @@
|
|||||||
-define(assertDenied(Op), ?assertMatch({error, {forbidden, _}}, Op)).
|
-define(assertDenied(Op), ?assertMatch({error, {forbidden, _}}, Op)).
|
||||||
|
|
||||||
confirm() ->
|
confirm() ->
|
||||||
|
%% Allow listing of buckets and keys for testing
|
||||||
|
application:set_env(riakc, allow_listing, true),
|
||||||
|
|
||||||
application:start(crypto),
|
application:start(crypto),
|
||||||
application:start(asn1),
|
application:start(asn1),
|
||||||
application:start(public_key),
|
application:start(public_key),
|
||||||
|
@ -1,6 +1,6 @@
|
|||||||
%% -------------------------------------------------------------------
|
%% -------------------------------------------------------------------
|
||||||
%%
|
%%
|
||||||
%% Copyright (c) 2013 Basho Technologies, Inc.
|
%% Copyright (c) 2013-2017 Basho Technologies, Inc.
|
||||||
%%
|
%%
|
||||||
%% This file is provided to you under the Apache License,
|
%% This file is provided to you under the Apache License,
|
||||||
%% Version 2.0 (the "License"); you may not use this file
|
%% Version 2.0 (the "License"); you may not use this file
|
||||||
@ -81,6 +81,9 @@ default_config(#config{
|
|||||||
{riak_api, [{pb_backlog, 1024}]}].
|
{riak_api, [{pb_backlog, 1024}]}].
|
||||||
|
|
||||||
confirm() ->
|
confirm() ->
|
||||||
|
%% Allow listing of buckets and keys for testing
|
||||||
|
application:set_env(riakc, allow_listing, true),
|
||||||
|
|
||||||
[Node1 | _] = Nodes = setup(),
|
[Node1 | _] = Nodes = setup(),
|
||||||
|
|
||||||
ok = create_bucket_type(Nodes, ?NORMAL_TYPE, [{n_val, 3}]),
|
ok = create_bucket_type(Nodes, ?NORMAL_TYPE, [{n_val, 3}]),
|
||||||
|
@ -11,6 +11,9 @@
|
|||||||
-define(assertDenied(Op), ?assertMatch({error, <<"Permission",_/binary>>}, Op)).
|
-define(assertDenied(Op), ?assertMatch({error, <<"Permission",_/binary>>}, Op)).
|
||||||
|
|
||||||
confirm() ->
|
confirm() ->
|
||||||
|
%% Allow listing of buckets and keys for testing
|
||||||
|
application:set_env(riakc, allow_listing, true),
|
||||||
|
|
||||||
application:start(crypto),
|
application:start(crypto),
|
||||||
application:start(asn1),
|
application:start(asn1),
|
||||||
application:start(public_key),
|
application:start(public_key),
|
||||||
|
@ -1,6 +1,6 @@
|
|||||||
%% -------------------------------------------------------------------
|
%% -------------------------------------------------------------------
|
||||||
%%
|
%%
|
||||||
%% Copyright (c) 2012 Basho Technologies, Inc.
|
%% Copyright (c) 2012-2017 Basho Technologies, Inc.
|
||||||
%%
|
%%
|
||||||
%% This file is provided to you under the Apache License,
|
%% This file is provided to you under the Apache License,
|
||||||
%% Version 2.0 (the "License"); you may not use this file
|
%% Version 2.0 (the "License"); you may not use this file
|
||||||
@ -23,6 +23,9 @@
|
|||||||
-include_lib("eunit/include/eunit.hrl").
|
-include_lib("eunit/include/eunit.hrl").
|
||||||
|
|
||||||
confirm() ->
|
confirm() ->
|
||||||
|
%% Allow listing of buckets and keys for testing
|
||||||
|
application:set_env(riakc, allow_listing, true),
|
||||||
|
|
||||||
TestMetaData = riak_test_runner:metadata(),
|
TestMetaData = riak_test_runner:metadata(),
|
||||||
Count = 4,
|
Count = 4,
|
||||||
OldVsn = proplists:get_value(upgrade_version, TestMetaData, previous),
|
OldVsn = proplists:get_value(upgrade_version, TestMetaData, previous),
|
||||||
|
@ -1,6 +1,6 @@
|
|||||||
%% -------------------------------------------------------------------
|
%% -------------------------------------------------------------------
|
||||||
%%
|
%%
|
||||||
%% Copyright (c) 2016 Basho Technologies, Inc.
|
%% Copyright (c) 2016-2017 Basho Technologies, Inc.
|
||||||
%%
|
%%
|
||||||
%% This file is provided to you under the Apache License,
|
%% This file is provided to you under the Apache License,
|
||||||
%% Version 2.0 (the "License"); you may not use this file
|
%% Version 2.0 (the "License"); you may not use this file
|
||||||
@ -30,19 +30,13 @@
|
|||||||
%%--------------------------------------------------------------------
|
%%--------------------------------------------------------------------
|
||||||
|
|
||||||
-define(TS_VERSION_CURRENT, "current").
|
-define(TS_VERSION_CURRENT, "current").
|
||||||
|
|
||||||
%% git checkout riak_ts-1.3.1 && make locked-deps
|
|
||||||
-define(TS_VERSION_1_3, riak_ts_1_3_1).
|
|
||||||
|
|
||||||
-define(SQL_SELECT_CAP, {riak_kv, sql_select_version}).
|
-define(SQL_SELECT_CAP, {riak_kv, sql_select_version}).
|
||||||
|
|
||||||
suite() ->
|
suite() ->
|
||||||
[{timetrap,{minutes,10}}].
|
[{timetrap,{minutes,10}}].
|
||||||
|
|
||||||
init_per_suite(Config) ->
|
init_per_suite(Config) ->
|
||||||
Versions = rt:find_version_by_name(["riak_ts-1.3.1", "riak_ts_ee-1.3.1"]),
|
Config.
|
||||||
Vsn131 = maybe_missing_1_3_1(Versions),
|
|
||||||
[{?TS_VERSION_1_3, Vsn131} | Config].
|
|
||||||
|
|
||||||
end_per_suite(_Config) ->
|
end_per_suite(_Config) ->
|
||||||
ok.
|
ok.
|
||||||
@ -143,21 +137,19 @@ capability_not_specified_on_one_node_test(_Ctx) ->
|
|||||||
%% Riak TS Capability Tests
|
%% Riak TS Capability Tests
|
||||||
%%--------------------------------------------------------------------
|
%%--------------------------------------------------------------------
|
||||||
|
|
||||||
sql_select_upgrade_a_node_from_1_3_test(Config) ->
|
sql_select_upgrade_a_node_from_legacy_test(_Ctx) ->
|
||||||
Vsn131 = ?config(?TS_VERSION_1_3, Config),
|
|
||||||
[Node_A, Node_B, Node_C] =
|
[Node_A, Node_B, Node_C] =
|
||||||
rt:deploy_nodes([Vsn131, Vsn131, Vsn131]),
|
rt:deploy_nodes([legacy, legacy, legacy]),
|
||||||
ok = rt:join_cluster([Node_A,Node_B,Node_C]),
|
ok = rt:join_cluster([Node_A,Node_B,Node_C]),
|
||||||
ok = rt:wait_until_ring_converged([Node_A,Node_B,Node_C]),
|
ok = rt:wait_until_ring_converged([Node_A,Node_B,Node_C]),
|
||||||
ok = rt:upgrade(Node_A, ?TS_VERSION_CURRENT),
|
ok = rt:upgrade(Node_A, ?TS_VERSION_CURRENT),
|
||||||
ok = rt:wait_until_ring_converged([Node_A,Node_B,Node_C]),
|
ok = rt:wait_until_ring_converged([Node_A,Node_B,Node_C]),
|
||||||
ok = rt:wait_until_capability(Node_A, ?SQL_SELECT_CAP, v1),
|
ok = rt:wait_until_capability(Node_A, ?SQL_SELECT_CAP, v2),
|
||||||
ok.
|
ok.
|
||||||
|
|
||||||
sql_select_join_with_all_nodes_upgraded_test(Config) ->
|
sql_select_join_with_all_nodes_upgraded_test(_Ctx) ->
|
||||||
Vsn131 = ?config(?TS_VERSION_1_3, Config),
|
|
||||||
[Node_A, Node_B, Node_C] =
|
[Node_A, Node_B, Node_C] =
|
||||||
rt:deploy_nodes([Vsn131, Vsn131, Vsn131]),
|
rt:deploy_nodes([legacy, legacy, legacy]),
|
||||||
ok = rt:join_cluster([Node_A,Node_B,Node_C]),
|
ok = rt:join_cluster([Node_A,Node_B,Node_C]),
|
||||||
rt:wait_until_ring_converged([Node_A,Node_B,Node_C]),
|
rt:wait_until_ring_converged([Node_A,Node_B,Node_C]),
|
||||||
rt:upgrade(Node_A, ?TS_VERSION_CURRENT),
|
rt:upgrade(Node_A, ?TS_VERSION_CURRENT),
|
||||||
@ -168,18 +160,14 @@ sql_select_join_with_all_nodes_upgraded_test(Config) ->
|
|||||||
rt:wait_until_capability(Node_C, ?SQL_SELECT_CAP, v3),
|
rt:wait_until_capability(Node_C, ?SQL_SELECT_CAP, v3),
|
||||||
ok.
|
ok.
|
||||||
|
|
||||||
%% This test passed for 1.4.0, expecting v1 where commented, but fails for 1.5.0 due to code change. We set it to expect
|
sql_select_downgrade_a_node_test(_Ctx) ->
|
||||||
%% v3 until future changes are made. After 1.5.0 if this test will fail if new code is introduced to handle capability
|
|
||||||
%% communication. https://bashoeng.atlassian.net/browse/RTS-1415
|
|
||||||
sql_select_downgrade_a_node_test(Config) ->
|
|
||||||
Vsn131 = ?config(?TS_VERSION_1_3, Config),
|
|
||||||
[Node_A, Node_B, Node_C] =
|
[Node_A, Node_B, Node_C] =
|
||||||
rt:deploy_nodes([Vsn131, ?TS_VERSION_CURRENT, ?TS_VERSION_CURRENT]),
|
rt:deploy_nodes([legacy, ?TS_VERSION_CURRENT, ?TS_VERSION_CURRENT]),
|
||||||
ok = rt:join_cluster([Node_A,Node_B,Node_C]),
|
ok = rt:join_cluster([Node_A,Node_B,Node_C]),
|
||||||
rt:wait_until_ring_converged([Node_A,Node_B,Node_C]),
|
rt:wait_until_ring_converged([Node_A,Node_B,Node_C]),
|
||||||
% rt:wait_until_capability(Node_A, ?SQL_SELECT_CAP, v3),
|
% rt:wait_until_capability(Node_A, ?SQL_SELECT_CAP, v3),
|
||||||
rt:wait_until_capability(Node_B, ?SQL_SELECT_CAP, v1),
|
rt:wait_until_capability(Node_B, ?SQL_SELECT_CAP, v2),
|
||||||
rt:wait_until_capability(Node_C, ?SQL_SELECT_CAP, v1),
|
rt:wait_until_capability(Node_C, ?SQL_SELECT_CAP, v2),
|
||||||
rt:upgrade(Node_A, ?TS_VERSION_CURRENT),
|
rt:upgrade(Node_A, ?TS_VERSION_CURRENT),
|
||||||
rt:wait_until_ring_converged([Node_A,Node_B,Node_C]),
|
rt:wait_until_ring_converged([Node_A,Node_B,Node_C]),
|
||||||
rt:wait_until_capability(Node_A, ?SQL_SELECT_CAP, v3),
|
rt:wait_until_capability(Node_A, ?SQL_SELECT_CAP, v3),
|
||||||
@ -189,8 +177,8 @@ sql_select_downgrade_a_node_test(Config) ->
|
|||||||
%% pending changes to how capabilities are communicated around the ring, this
|
%% pending changes to how capabilities are communicated around the ring, this
|
||||||
%% section will expect v2. Once capabilities are changed in a future version of riak
|
%% section will expect v2. Once capabilities are changed in a future version of riak
|
||||||
%% (or if testing 1.4.0 as current)
|
%% (or if testing 1.4.0 as current)
|
||||||
%% the expected version should go back to v1.
|
%% the expected version should go back to v2.
|
||||||
rt:upgrade(Node_A, Vsn131),
|
rt:upgrade(Node_A, legacy),
|
||||||
rt:wait_until_ring_converged([Node_A,Node_B,Node_C]),
|
rt:wait_until_ring_converged([Node_A,Node_B,Node_C]),
|
||||||
rt:wait_until_capability(Node_B, ?SQL_SELECT_CAP, v3),
|
rt:wait_until_capability(Node_B, ?SQL_SELECT_CAP, v3),
|
||||||
rt:wait_until_capability(Node_C, ?SQL_SELECT_CAP, v3),
|
rt:wait_until_capability(Node_C, ?SQL_SELECT_CAP, v3),
|
||||||
@ -200,10 +188,9 @@ sql_select_downgrade_a_node_test(Config) ->
|
|||||||
%% Perform queries in mixed version cluster
|
%% Perform queries in mixed version cluster
|
||||||
%%--------------------------------------------------------------------
|
%%--------------------------------------------------------------------
|
||||||
|
|
||||||
query_in_mixed_version_cluster_test(Config) ->
|
query_in_mixed_version_cluster_test(_Ctx) ->
|
||||||
Vsn131 = ?config(?TS_VERSION_1_3, Config),
|
|
||||||
[Node_A, Node_B, Node_C] =
|
[Node_A, Node_B, Node_C] =
|
||||||
rt:deploy_nodes([?TS_VERSION_CURRENT, Vsn131, ?TS_VERSION_CURRENT]),
|
rt:deploy_nodes([?TS_VERSION_CURRENT, previous, ?TS_VERSION_CURRENT]),
|
||||||
ok = rt:join_cluster([Node_A,Node_B,Node_C]),
|
ok = rt:join_cluster([Node_A,Node_B,Node_C]),
|
||||||
rt:wait_until_ring_converged([Node_A,Node_B,Node_C]),
|
rt:wait_until_ring_converged([Node_A,Node_B,Node_C]),
|
||||||
Table = "grouptab1",
|
Table = "grouptab1",
|
||||||
@ -220,7 +207,7 @@ query_in_mixed_version_cluster_test(Config) ->
|
|||||||
[{1,1,B*C} || B <- lists:seq(1,10), C <- lists:seq(1000,5000,1000)]),
|
[{1,1,B*C} || B <- lists:seq(1,10), C <- lists:seq(1000,5000,1000)]),
|
||||||
ExpectedResultSet = [{N} || N <- lists:seq(1000,5000,1000)],
|
ExpectedResultSet = [{N} || N <- lists:seq(1000,5000,1000)],
|
||||||
%%
|
%%
|
||||||
%% Test that the current version can query version 1.3
|
%% Test that the current version can query older version
|
||||||
%%
|
%%
|
||||||
Query =
|
Query =
|
||||||
"SELECT c FROM grouptab1 "
|
"SELECT c FROM grouptab1 "
|
||||||
@ -232,7 +219,7 @@ query_in_mixed_version_cluster_test(Config) ->
|
|||||||
{ok,{Cols, Rows}}
|
{ok,{Cols, Rows}}
|
||||||
),
|
),
|
||||||
%%
|
%%
|
||||||
%% Test that the 1.3 can query the current version
|
%% Test that the previous can query the current version
|
||||||
%%
|
%%
|
||||||
{ok, {Cols, Rows}} = run_query(rt:pbc(Node_B), Query),
|
{ok, {Cols, Rows}} = run_query(rt:pbc(Node_B), Query),
|
||||||
ts_data:assert_row_sets(
|
ts_data:assert_row_sets(
|
||||||
@ -240,9 +227,3 @@ query_in_mixed_version_cluster_test(Config) ->
|
|||||||
{ok,{Cols, Rows}}
|
{ok,{Cols, Rows}}
|
||||||
).
|
).
|
||||||
|
|
||||||
%% If 1.3.1 is not found, use a meaningful atom to prompt the error message
|
|
||||||
%% rtdev:check_version/1
|
|
||||||
maybe_missing_1_3_1([]) ->
|
|
||||||
missing_version_ts_1_3_1;
|
|
||||||
maybe_missing_1_3_1([Vsn]) ->
|
|
||||||
Vsn.
|
|
||||||
|
@ -1,6 +1,6 @@
|
|||||||
% -------------------------------------------------------------------
|
% -------------------------------------------------------------------
|
||||||
%%
|
%%
|
||||||
%% Copyright (c) 2015 Basho Technologies, Inc.
|
%% Copyright (c) 2015-2017 Basho Technologies, Inc.
|
||||||
%%
|
%%
|
||||||
%% This file is provided to you under the Apache License,
|
%% This file is provided to you under the Apache License,
|
||||||
%% Version 2.0 (the "License"); you may not use this file
|
%% Version 2.0 (the "License"); you may not use this file
|
||||||
@ -39,6 +39,9 @@ confirm() ->
|
|||||||
run_tests(?PVAL_P1, ?PVAL_P2).
|
run_tests(?PVAL_P1, ?PVAL_P2).
|
||||||
|
|
||||||
run_tests(PvalP1, PvalP2) ->
|
run_tests(PvalP1, PvalP2) ->
|
||||||
|
%% Allow listing of buckets and keys for testing
|
||||||
|
application:set_env(riakc, allow_listing, true),
|
||||||
|
|
||||||
Data = make_data(PvalP1, PvalP2),
|
Data = make_data(PvalP1, PvalP2),
|
||||||
io:format("Data to be written:\n~p\n...\n~p\n", [hd(Data), lists:last(Data)]),
|
io:format("Data to be written:\n~p\n...\n~p\n", [hd(Data), lists:last(Data)]),
|
||||||
|
|
||||||
|
@ -1,6 +1,6 @@
|
|||||||
%% -------------------------------------------------------------------
|
%% -------------------------------------------------------------------
|
||||||
%%
|
%%
|
||||||
%% Copyright (c) 2016 Basho Technologies, Inc.
|
%% Copyright (c) 2016-2017 Basho Technologies, Inc.
|
||||||
%%
|
%%
|
||||||
%% This file is provided to you under the Apache License,
|
%% This file is provided to you under the Apache License,
|
||||||
%% Version 2.0 (the "License"); you may not use this file
|
%% Version 2.0 (the "License"); you may not use this file
|
||||||
@ -39,6 +39,9 @@
|
|||||||
%%--------------------------------------------------------------------
|
%%--------------------------------------------------------------------
|
||||||
|
|
||||||
suite() ->
|
suite() ->
|
||||||
|
%% Allow listing of buckets and keys for testing
|
||||||
|
application:set_env(riakc, allow_listing, true),
|
||||||
|
|
||||||
[{timetrap,{minutes,10}}].
|
[{timetrap,{minutes,10}}].
|
||||||
|
|
||||||
init_per_suite(Config) ->
|
init_per_suite(Config) ->
|
||||||
|
@ -1,6 +1,6 @@
|
|||||||
%% -------------------------------------------------------------------
|
%% -------------------------------------------------------------------
|
||||||
%%
|
%%
|
||||||
%% Copyright (c) 2016 Basho Technologies, Inc.
|
%% Copyright (c) 2016-2017 Basho Technologies, Inc.
|
||||||
%%
|
%%
|
||||||
%% This file is provided to you under the Apache License,
|
%% This file is provided to you under the Apache License,
|
||||||
%% Version 2.0 (the "License"); you may not use this file
|
%% Version 2.0 (the "License"); you may not use this file
|
||||||
@ -31,6 +31,9 @@
|
|||||||
%%--------------------------------------------------------------------
|
%%--------------------------------------------------------------------
|
||||||
|
|
||||||
suite() ->
|
suite() ->
|
||||||
|
%% Allow listing of buckets and keys for testing
|
||||||
|
application:set_env(riakc, allow_listing, true),
|
||||||
|
|
||||||
[{timetrap,{minutes,10}}].
|
[{timetrap,{minutes,10}}].
|
||||||
|
|
||||||
init_per_suite(Config) ->
|
init_per_suite(Config) ->
|
||||||
|
@ -1,6 +1,6 @@
|
|||||||
%% -------------------------------------------------------------------
|
%% -------------------------------------------------------------------
|
||||||
%%
|
%%
|
||||||
%% Copyright (c) 2016 Basho Technologies, Inc.
|
%% Copyright (c) 2016-2017 Basho Technologies, Inc.
|
||||||
%%
|
%%
|
||||||
%% This file is provided to you under the Apache License,
|
%% This file is provided to you under the Apache License,
|
||||||
%% Version 2.0 (the "License"); you may not use this file
|
%% Version 2.0 (the "License"); you may not use this file
|
||||||
@ -31,6 +31,9 @@
|
|||||||
%%--------------------------------------------------------------------
|
%%--------------------------------------------------------------------
|
||||||
|
|
||||||
suite() ->
|
suite() ->
|
||||||
|
%% Allow listing of buckets and keys for testing
|
||||||
|
application:set_env(riakc, allow_listing, true),
|
||||||
|
|
||||||
[{timetrap,{minutes,10}}].
|
[{timetrap,{minutes,10}}].
|
||||||
|
|
||||||
init_per_suite(Config) ->
|
init_per_suite(Config) ->
|
||||||
|
@ -8,6 +8,9 @@
|
|||||||
-define(NUM_KEYS, 1000).
|
-define(NUM_KEYS, 1000).
|
||||||
|
|
||||||
confirm() ->
|
confirm() ->
|
||||||
|
%% Allow listing of buckets and keys for testing
|
||||||
|
application:set_env(riakc, allow_listing, true),
|
||||||
|
|
||||||
%% test requires allow_mult=false b/c of rt:systest_read
|
%% test requires allow_mult=false b/c of rt:systest_read
|
||||||
[Node] = rt:build_cluster(1),
|
[Node] = rt:build_cluster(1),
|
||||||
rt:wait_until_pingable(Node),
|
rt:wait_until_pingable(Node),
|
||||||
|
@ -1,6 +1,6 @@
|
|||||||
%% -------------------------------------------------------------------
|
%% -------------------------------------------------------------------
|
||||||
%%
|
%%
|
||||||
%% Copyright (c) 2012-2013 Basho Technologies, Inc.
|
%% Copyright (c) 2012-2017 Basho Technologies, Inc.
|
||||||
%%
|
%%
|
||||||
%% This file is provided to you under the Apache License,
|
%% This file is provided to you under the Apache License,
|
||||||
%% Version 2.0 (the "License"); you may not use this file
|
%% Version 2.0 (the "License"); you may not use this file
|
||||||
@ -25,6 +25,9 @@
|
|||||||
%% 1.4 {riak_kv, handoff_data_encoding} -> [encode_raw, encode_zlib]
|
%% 1.4 {riak_kv, handoff_data_encoding} -> [encode_raw, encode_zlib]
|
||||||
%% 1.3 {riak_kv, anti_entropy} -> [disabled, enabled_v1]
|
%% 1.3 {riak_kv, anti_entropy} -> [disabled, enabled_v1]
|
||||||
confirm() ->
|
confirm() ->
|
||||||
|
%% Allow listing of buckets and keys for testing
|
||||||
|
application:set_env(riakc, allow_listing, true),
|
||||||
|
|
||||||
lager:info("Deploying mixed set of nodes"),
|
lager:info("Deploying mixed set of nodes"),
|
||||||
Legacy = case lists:member(legacy, rt:versions()) of
|
Legacy = case lists:member(legacy, rt:versions()) of
|
||||||
true -> legacy;
|
true -> legacy;
|
||||||
|
@ -1,6 +1,6 @@
|
|||||||
%% -------------------------------------------------------------------
|
%% -------------------------------------------------------------------
|
||||||
%%
|
%%
|
||||||
%% Copyright (c) 2016 Basho Technologies, Inc.
|
%% Copyright (c) 2016-2017 Basho Technologies, Inc.
|
||||||
%%
|
%%
|
||||||
%% This file is provided to you under the Apache License,
|
%% This file is provided to you under the Apache License,
|
||||||
%% Version 2.0 (the "License"); you may not use this file
|
%% Version 2.0 (the "License"); you may not use this file
|
||||||
@ -47,7 +47,7 @@
|
|||||||
|
|
||||||
confirm() ->
|
confirm() ->
|
||||||
TestMetaData = riak_test_runner:metadata(),
|
TestMetaData = riak_test_runner:metadata(),
|
||||||
OldVsn = proplists:get_value(upgrade_version, TestMetaData, lts),
|
OldVsn = proplists:get_value(upgrade_version, TestMetaData, legacy),
|
||||||
|
|
||||||
NumNodes = 4,
|
NumNodes = 4,
|
||||||
Vsns = [{OldVsn, ?CONFIG} || _ <- lists:seq(1, NumNodes)],
|
Vsns = [{OldVsn, ?CONFIG} || _ <- lists:seq(1, NumNodes)],
|
||||||
@ -116,7 +116,7 @@ confirm() ->
|
|||||||
?assertEqual(FetchSet2, FetchSet3),
|
?assertEqual(FetchSet2, FetchSet3),
|
||||||
|
|
||||||
%% Downgrade All Nodes and Compare
|
%% Downgrade All Nodes and Compare
|
||||||
downgrade(Nodes, lts),
|
downgrade(Nodes, legacy),
|
||||||
|
|
||||||
%% Create PB connection.
|
%% Create PB connection.
|
||||||
Pid3 = rt:pbc(rt:select_random(Nodes)),
|
Pid3 = rt:pbc(rt:select_random(Nodes)),
|
||||||
|
@ -1,6 +1,6 @@
|
|||||||
%% -------------------------------------------------------------------
|
%% -------------------------------------------------------------------
|
||||||
%%
|
%%
|
||||||
%% Copyright (c) 2016 Basho Technologies, Inc.
|
%% Copyright (c) 2016-2017 Basho Technologies, Inc.
|
||||||
%%
|
%%
|
||||||
%% This file is provided to you under the Apache License,
|
%% This file is provided to you under the Apache License,
|
||||||
%% Version 2.0 (the "License"); you may not use this file
|
%% Version 2.0 (the "License"); you may not use this file
|
||||||
@ -36,6 +36,9 @@
|
|||||||
[Class || {Class, Enabled} <- ?JOB_CLASS_DEFAULTS, Enabled]).
|
[Class || {Class, Enabled} <- ?JOB_CLASS_DEFAULTS, Enabled]).
|
||||||
|
|
||||||
confirm() ->
|
confirm() ->
|
||||||
|
%% Allow listing of buckets and keys for testing
|
||||||
|
application:set_env(riakc, allow_listing, true),
|
||||||
|
|
||||||
lager:info("Deploying 1 node"),
|
lager:info("Deploying 1 node"),
|
||||||
rt:set_backend(eleveldb),
|
rt:set_backend(eleveldb),
|
||||||
[Node] = rt:build_cluster(1, ?CFG),
|
[Node] = rt:build_cluster(1, ?CFG),
|
||||||
|
@ -1,6 +1,6 @@
|
|||||||
%% -------------------------------------------------------------------
|
%% -------------------------------------------------------------------
|
||||||
%%
|
%%
|
||||||
%% Copyright (c) 2016 Basho Technologies, Inc.
|
%% Copyright (c) 2016-2017 Basho Technologies, Inc.
|
||||||
%%
|
%%
|
||||||
%% This file is provided to you under the Apache License,
|
%% This file is provided to you under the Apache License,
|
||||||
%% Version 2.0 (the "License"); you may not use this file
|
%% Version 2.0 (the "License"); you may not use this file
|
||||||
@ -47,6 +47,9 @@
|
|||||||
%% ===================================================================
|
%% ===================================================================
|
||||||
|
|
||||||
confirm() ->
|
confirm() ->
|
||||||
|
%% Allow listing of buckets and keys for testing
|
||||||
|
application:set_env(riakc, allow_listing, true),
|
||||||
|
|
||||||
Configs = [
|
Configs = [
|
||||||
{current, {cuttlefish,
|
{current, {cuttlefish,
|
||||||
?COMMON_CONFIG ++ config(?TEST_OPS, Bool, [])}}
|
?COMMON_CONFIG ++ config(?TEST_OPS, Bool, [])}}
|
||||||
|
@ -1,6 +1,6 @@
|
|||||||
%% -------------------------------------------------------------------
|
%% -------------------------------------------------------------------
|
||||||
%%
|
%%
|
||||||
%% Copyright (c) 2012 Basho Technologies, Inc.
|
%% Copyright (c) 2012-2017 Basho Technologies, Inc.
|
||||||
%%
|
%%
|
||||||
%% This file is provided to you under the Apache License,
|
%% This file is provided to you under the Apache License,
|
||||||
%% Version 2.0 (the "License"); you may not use this file
|
%% Version 2.0 (the "License"); you may not use this file
|
||||||
@ -29,6 +29,9 @@
|
|||||||
-define(UNDEFINED_BUCKET_TYPE, <<"880bf69d-5dab-44ee-8762-d24c6f759ce1">>).
|
-define(UNDEFINED_BUCKET_TYPE, <<"880bf69d-5dab-44ee-8762-d24c6f759ce1">>).
|
||||||
|
|
||||||
confirm() ->
|
confirm() ->
|
||||||
|
%% Allow listing of buckets and keys for testing
|
||||||
|
application:set_env(riakc, allow_listing, true),
|
||||||
|
|
||||||
[Node1, Node2, Node3, Node4] = Nodes = rt:deploy_nodes(4),
|
[Node1, Node2, Node3, Node4] = Nodes = rt:deploy_nodes(4),
|
||||||
?assertEqual(ok, rt:wait_until_nodes_ready(Nodes)),
|
?assertEqual(ok, rt:wait_until_nodes_ready(Nodes)),
|
||||||
|
|
||||||
|
@ -26,6 +26,9 @@
|
|||||||
%% riak_test callback
|
%% riak_test callback
|
||||||
%% ====================================================================
|
%% ====================================================================
|
||||||
confirm() ->
|
confirm() ->
|
||||||
|
%% Allow listing of buckets and keys for testing
|
||||||
|
application:set_env(riakc, allow_listing, true),
|
||||||
|
|
||||||
?assert(eqc:quickcheck(eqc:numtests(?NUM_TESTS, ?MODULE:prop_test()))),
|
?assert(eqc:quickcheck(eqc:numtests(?NUM_TESTS, ?MODULE:prop_test()))),
|
||||||
pass.
|
pass.
|
||||||
%% ====================================================================
|
%% ====================================================================
|
||||||
|
@ -1,6 +1,6 @@
|
|||||||
%% -------------------------------------------------------------------
|
%% -------------------------------------------------------------------
|
||||||
%%
|
%%
|
||||||
%% Copyright (c) 2013 Basho Technologies, Inc.
|
%% Copyright (c) 2013-2017 Basho Technologies, Inc.
|
||||||
%%
|
%%
|
||||||
%% This file is provided to you under the Apache License,
|
%% This file is provided to you under the Apache License,
|
||||||
%% Version 2.0 (the "License"); you may not use this file
|
%% Version 2.0 (the "License"); you may not use this file
|
||||||
@ -42,6 +42,9 @@
|
|||||||
|
|
||||||
%% @doc riak_test callback
|
%% @doc riak_test callback
|
||||||
confirm() ->
|
confirm() ->
|
||||||
|
%% Allow listing of buckets and keys for testing
|
||||||
|
application:set_env(riakc, allow_listing, true),
|
||||||
|
|
||||||
NodeCount = 4,
|
NodeCount = 4,
|
||||||
lager:info("Build ~b-node cluster", [NodeCount]),
|
lager:info("Build ~b-node cluster", [NodeCount]),
|
||||||
[Primary,ToKill|_] = rt:build_cluster(NodeCount),
|
[Primary,ToKill|_] = rt:build_cluster(NodeCount),
|
||||||
|
Loading…
Reference in New Issue
Block a user