2015-03-31 07:46:03 +00:00
|
|
|
%% -------------------------------------------------------------------
|
|
|
|
%%
|
|
|
|
%% Copyright (c) 2007-2015 Basho Technologies, Inc. All Rights Reserved.
|
|
|
|
%%
|
|
|
|
%% 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(machi_flu1_test).
|
|
|
|
-compile(export_all).
|
|
|
|
|
|
|
|
-ifdef(TEST).
|
|
|
|
-include("machi.hrl").
|
2015-04-02 09:08:42 +00:00
|
|
|
-include("machi_projection.hrl").
|
2015-03-31 07:46:03 +00:00
|
|
|
-include_lib("eunit/include/eunit.hrl").
|
|
|
|
|
|
|
|
-define(FLU, machi_flu1).
|
|
|
|
-define(FLU_C, machi_flu1_client).
|
|
|
|
|
2015-04-01 08:59:40 +00:00
|
|
|
setup_test_flu(RegName, TcpPort, DataDir) ->
|
2015-04-02 08:16:15 +00:00
|
|
|
setup_test_flu(RegName, TcpPort, DataDir, []).
|
|
|
|
|
|
|
|
setup_test_flu(RegName, TcpPort, DataDir, DbgProps) ->
|
2015-04-06 09:43:52 +00:00
|
|
|
case proplists:get_value(save_data_dir, DbgProps) of
|
|
|
|
true ->
|
|
|
|
ok;
|
|
|
|
_ ->
|
|
|
|
clean_up_data_dir(DataDir)
|
|
|
|
end,
|
2015-04-01 08:59:40 +00:00
|
|
|
|
2015-04-02 08:16:15 +00:00
|
|
|
{ok, FLU1} = ?FLU:start_link([{RegName, TcpPort, DataDir},
|
|
|
|
{dbg, DbgProps}]),
|
2015-04-03 08:10:52 +00:00
|
|
|
%% TODO the process structuring/racy-ness of the various processes
|
|
|
|
%% of the FLU needs to be deterministic to remove this sleep race
|
|
|
|
%% "prevention".
|
|
|
|
timer:sleep(10),
|
2015-04-01 08:59:40 +00:00
|
|
|
FLU1.
|
|
|
|
|
2015-03-31 07:46:03 +00:00
|
|
|
flu_smoke_test() ->
|
|
|
|
Host = "localhost",
|
|
|
|
TcpPort = 32957,
|
|
|
|
DataDir = "./data",
|
|
|
|
Prefix = <<"prefix!">>,
|
|
|
|
BadPrefix = BadFile = "no/good",
|
|
|
|
|
2015-05-08 12:24:07 +00:00
|
|
|
W_props = [{initial_wedged, false}],
|
|
|
|
FLU1 = setup_test_flu(smoke_flu, TcpPort, DataDir, W_props),
|
2015-03-31 07:46:03 +00:00
|
|
|
try
|
|
|
|
{error, no_such_file} = ?FLU_C:checksum_list(Host, TcpPort,
|
2015-04-02 11:49:45 +00:00
|
|
|
?DUMMY_PV1_EPOCH,
|
2015-03-31 07:46:03 +00:00
|
|
|
"does-not-exist"),
|
2015-04-02 11:49:45 +00:00
|
|
|
{error, bad_arg} = ?FLU_C:checksum_list(Host, TcpPort,
|
|
|
|
?DUMMY_PV1_EPOCH, BadFile),
|
2015-03-31 07:46:03 +00:00
|
|
|
|
2015-04-02 12:01:48 +00:00
|
|
|
{ok, []} = ?FLU_C:list_files(Host, TcpPort, ?DUMMY_PV1_EPOCH),
|
2015-05-08 12:24:07 +00:00
|
|
|
{ok, {false, _}} = ?FLU_C:wedge_status(Host, TcpPort),
|
2015-03-31 07:46:03 +00:00
|
|
|
|
|
|
|
Chunk1 = <<"yo!">>,
|
|
|
|
{ok, {Off1,Len1,File1}} = ?FLU_C:append_chunk(Host, TcpPort,
|
2015-04-02 09:08:42 +00:00
|
|
|
?DUMMY_PV1_EPOCH,
|
2015-03-31 07:46:03 +00:00
|
|
|
Prefix, Chunk1),
|
2015-04-02 11:31:10 +00:00
|
|
|
{ok, Chunk1} = ?FLU_C:read_chunk(Host, TcpPort, ?DUMMY_PV1_EPOCH,
|
|
|
|
File1, Off1, Len1),
|
2015-04-02 11:49:45 +00:00
|
|
|
{ok, [{_,_,_}]} = ?FLU_C:checksum_list(Host, TcpPort,
|
|
|
|
?DUMMY_PV1_EPOCH, File1),
|
2015-03-31 07:46:03 +00:00
|
|
|
{error, bad_arg} = ?FLU_C:append_chunk(Host, TcpPort,
|
2015-04-02 09:08:42 +00:00
|
|
|
?DUMMY_PV1_EPOCH,
|
2015-03-31 07:46:03 +00:00
|
|
|
BadPrefix, Chunk1),
|
2015-04-02 12:01:48 +00:00
|
|
|
{ok, [{_,File1}]} = ?FLU_C:list_files(Host, TcpPort, ?DUMMY_PV1_EPOCH),
|
2015-04-01 08:59:40 +00:00
|
|
|
Len1 = size(Chunk1),
|
2015-05-19 06:15:05 +00:00
|
|
|
{error, not_written} = ?FLU_C:read_chunk(Host, TcpPort,
|
2015-04-02 11:31:10 +00:00
|
|
|
?DUMMY_PV1_EPOCH,
|
2015-05-19 06:15:05 +00:00
|
|
|
File1, Off1*983829323, Len1),
|
2015-04-01 08:59:40 +00:00
|
|
|
{error, partial_read} = ?FLU_C:read_chunk(Host, TcpPort,
|
2015-04-02 11:31:10 +00:00
|
|
|
?DUMMY_PV1_EPOCH,
|
2015-04-01 08:59:40 +00:00
|
|
|
File1, Off1, Len1*984),
|
2015-03-31 07:46:03 +00:00
|
|
|
|
2015-05-17 05:10:42 +00:00
|
|
|
{ok, {Off1b,Len1b,File1b}} = ?FLU_C:append_chunk(Host, TcpPort,
|
|
|
|
?DUMMY_PV1_EPOCH,
|
|
|
|
Prefix, Chunk1),
|
|
|
|
Extra = 42,
|
|
|
|
{ok, {Off1c,Len1c,File1c}} = ?FLU_C:append_chunk_extra(Host, TcpPort,
|
|
|
|
?DUMMY_PV1_EPOCH,
|
|
|
|
Prefix, Chunk1, Extra),
|
|
|
|
{ok, {Off1d,Len1d,File1d}} = ?FLU_C:append_chunk(Host, TcpPort,
|
|
|
|
?DUMMY_PV1_EPOCH,
|
|
|
|
Prefix, Chunk1),
|
|
|
|
if File1b == File1c, File1c == File1d ->
|
|
|
|
true = (Off1c == Off1b + Len1b),
|
|
|
|
true = (Off1d == Off1c + Len1c + Extra);
|
|
|
|
true ->
|
|
|
|
exit(not_mandatory_but_test_expected_same_file_fixme)
|
|
|
|
end,
|
|
|
|
|
2015-06-01 05:25:55 +00:00
|
|
|
Chunk1_cs = {<<?CSUM_TAG_NONE:8, 0:(8*20)>>, Chunk1},
|
|
|
|
{ok, {Off1e,Len1e,File1e}} = ?FLU_C:append_chunk(Host, TcpPort,
|
|
|
|
?DUMMY_PV1_EPOCH,
|
|
|
|
Prefix, Chunk1_cs),
|
|
|
|
|
2015-03-31 07:46:03 +00:00
|
|
|
Chunk2 = <<"yo yo">>,
|
|
|
|
Len2 = byte_size(Chunk2),
|
|
|
|
Off2 = ?MINIMUM_OFFSET + 77,
|
2015-04-01 08:59:40 +00:00
|
|
|
File2 = "smoke-prefix",
|
2015-04-02 12:18:41 +00:00
|
|
|
ok = ?FLU_C:write_chunk(Host, TcpPort, ?DUMMY_PV1_EPOCH,
|
|
|
|
File2, Off2, Chunk2),
|
|
|
|
{error, bad_arg} = ?FLU_C:write_chunk(Host, TcpPort, ?DUMMY_PV1_EPOCH,
|
2015-03-31 07:46:03 +00:00
|
|
|
BadFile, Off2, Chunk2),
|
2015-04-02 11:31:10 +00:00
|
|
|
{ok, Chunk2} = ?FLU_C:read_chunk(Host, TcpPort, ?DUMMY_PV1_EPOCH,
|
|
|
|
File2, Off2, Len2),
|
2015-05-19 05:05:18 +00:00
|
|
|
{error, not_written} = ?FLU_C:read_chunk(Host, TcpPort,
|
|
|
|
?DUMMY_PV1_EPOCH,
|
|
|
|
"no!!", Off2, Len2),
|
2015-03-31 07:46:03 +00:00
|
|
|
{error, bad_arg} = ?FLU_C:read_chunk(Host, TcpPort,
|
2015-04-02 11:31:10 +00:00
|
|
|
?DUMMY_PV1_EPOCH,
|
2015-03-31 07:46:03 +00:00
|
|
|
BadFile, Off2, Len2),
|
|
|
|
|
|
|
|
%% We know that File1 still exists. Pretend that we've done a
|
|
|
|
%% migration and exercise the delete_migration() API.
|
2015-04-02 12:18:41 +00:00
|
|
|
ok = ?FLU_C:delete_migration(Host, TcpPort, ?DUMMY_PV1_EPOCH, File1),
|
|
|
|
{error, no_such_file} = ?FLU_C:delete_migration(Host, TcpPort,
|
|
|
|
?DUMMY_PV1_EPOCH, File1),
|
|
|
|
{error, bad_arg} = ?FLU_C:delete_migration(Host, TcpPort,
|
|
|
|
?DUMMY_PV1_EPOCH, BadFile),
|
2015-03-31 07:46:03 +00:00
|
|
|
|
|
|
|
%% We know that File2 still exists. Pretend that we've done a
|
|
|
|
%% migration and exercise the trunc_hack() API.
|
2015-04-02 12:18:41 +00:00
|
|
|
ok = ?FLU_C:trunc_hack(Host, TcpPort, ?DUMMY_PV1_EPOCH, File2),
|
|
|
|
ok = ?FLU_C:trunc_hack(Host, TcpPort, ?DUMMY_PV1_EPOCH, File2),
|
|
|
|
{error, bad_arg} = ?FLU_C:trunc_hack(Host, TcpPort,
|
|
|
|
?DUMMY_PV1_EPOCH, BadFile),
|
2015-03-31 07:46:03 +00:00
|
|
|
|
|
|
|
ok = ?FLU_C:quit(machi_util:connect(Host, TcpPort))
|
|
|
|
after
|
|
|
|
ok = ?FLU:stop(FLU1)
|
|
|
|
end.
|
|
|
|
|
2015-04-03 08:10:52 +00:00
|
|
|
flu_projection_smoke_test() ->
|
2015-04-03 03:33:47 +00:00
|
|
|
Host = "localhost",
|
|
|
|
TcpPort = 32959,
|
|
|
|
DataDir = "./data",
|
|
|
|
|
|
|
|
FLU1 = setup_test_flu(projection_test_flu, TcpPort, DataDir),
|
|
|
|
try
|
2015-04-03 09:37:09 +00:00
|
|
|
[begin
|
2015-05-18 10:06:06 +00:00
|
|
|
{ok, {0,_}} = ?FLU_C:get_latest_epochid(Host, TcpPort, T),
|
2015-04-03 09:37:09 +00:00
|
|
|
{error, not_written} =
|
|
|
|
?FLU_C:read_latest_projection(Host, TcpPort, T),
|
2015-04-06 09:43:52 +00:00
|
|
|
{ok, []} = ?FLU_C:list_all_projections(Host, TcpPort, T),
|
|
|
|
{ok, []} = ?FLU_C:get_all_projections(Host, TcpPort, T),
|
2015-04-03 09:37:09 +00:00
|
|
|
|
2015-04-09 03:16:58 +00:00
|
|
|
P_a = #p_srvr{name=a},
|
|
|
|
P1 = machi_projection:new(1, a, [P_a], [], [a], [], []),
|
2015-04-03 09:37:09 +00:00
|
|
|
ok = ?FLU_C:write_projection(Host, TcpPort, T, P1),
|
|
|
|
{error, written} = ?FLU_C:write_projection(Host, TcpPort, T, P1),
|
|
|
|
{ok, P1} = ?FLU_C:read_projection(Host, TcpPort, T, 1),
|
2015-05-18 10:06:06 +00:00
|
|
|
{ok, {1,_}} = ?FLU_C:get_latest_epochid(Host, TcpPort, T),
|
2015-04-03 09:37:09 +00:00
|
|
|
{ok, P1} = ?FLU_C:read_latest_projection(Host, TcpPort, T),
|
2015-04-06 09:43:52 +00:00
|
|
|
{ok, [1]} = ?FLU_C:list_all_projections(Host, TcpPort, T),
|
|
|
|
{ok, [P1]} = ?FLU_C:get_all_projections(Host, TcpPort, T),
|
2015-04-03 09:37:09 +00:00
|
|
|
{error, not_written} = ?FLU_C:read_projection(Host, TcpPort, T, 2)
|
|
|
|
end || T <- [public, private] ]
|
2015-04-03 03:33:47 +00:00
|
|
|
after
|
|
|
|
ok = ?FLU:stop(FLU1)
|
|
|
|
end.
|
|
|
|
|
2015-06-01 05:25:55 +00:00
|
|
|
bad_checksum_test() ->
|
|
|
|
Host = "localhost",
|
|
|
|
TcpPort = 32960,
|
|
|
|
DataDir = "./data",
|
|
|
|
|
|
|
|
FLU1 = setup_test_flu(projection_test_flu, TcpPort, DataDir),
|
|
|
|
try
|
|
|
|
Prefix = <<"some prefix">>,
|
|
|
|
Chunk1 = <<"yo yo yo">>,
|
|
|
|
Chunk1_badcs = {<<?CSUM_TAG_CLIENT_GEN:8, 0:(8*20)>>, Chunk1},
|
|
|
|
{error, bad_checksum} = ?FLU_C:append_chunk(Host, TcpPort,
|
|
|
|
?DUMMY_PV1_EPOCH,
|
|
|
|
Prefix, Chunk1_badcs),
|
|
|
|
{error, bad_checksum} = ?FLU_C:write_chunk(Host, TcpPort,
|
|
|
|
?DUMMY_PV1_EPOCH,
|
|
|
|
<<"foo-file">>, 99832,
|
|
|
|
Chunk1_badcs),
|
|
|
|
ok
|
|
|
|
after
|
|
|
|
ok = ?FLU:stop(FLU1)
|
|
|
|
end.
|
|
|
|
|
2015-03-31 07:46:03 +00:00
|
|
|
clean_up_data_dir(DataDir) ->
|
2015-04-03 08:10:52 +00:00
|
|
|
[begin
|
|
|
|
Fs = filelib:wildcard(DataDir ++ Glob),
|
|
|
|
[file:delete(F) || F <- Fs],
|
|
|
|
[file:del_dir(F) || F <- Fs]
|
|
|
|
end || Glob <- ["*/*/*/*", "*/*/*", "*/*", "*"] ],
|
2015-03-31 07:46:03 +00:00
|
|
|
_ = file:del_dir(DataDir),
|
|
|
|
ok.
|
|
|
|
|
|
|
|
-endif. % TEST
|