mirror of
https://github.com/valitydev/riak_test.git
synced 2024-11-06 16:45:29 +00:00
56 lines
2.0 KiB
Erlang
56 lines
2.0 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.
|
|
%%
|
|
%% -------------------------------------------------------------------
|
|
%% @doc Runs the mapred_verify tests from
|
|
%% http://github.com/basho/mapred_verify
|
|
|
|
-module(mapred_verify_rt).
|
|
|
|
-behavior(riak_test).
|
|
-export([confirm/0]).
|
|
|
|
-define(NODE_COUNT, 3).
|
|
|
|
confirm() ->
|
|
lager:info("Build ~b node cluster", [?NODE_COUNT]),
|
|
Nodes = rt:build_cluster(?NODE_COUNT),
|
|
|
|
|
|
%% @todo longer term fix is probably one or more of:
|
|
%% 1) add a mapred_veryify section to riak_test.config
|
|
%% 2) learn to use this "inclextra" bit of rebar to package tests.def
|
|
%% in the escript: https://github.com/basho/rebar/blob/master/src/rebar_escripter.erl#L57
|
|
PrivDir = case code:priv_dir(mapred_verify) of
|
|
{error, bad_name} ->
|
|
erlang:error("Could not determine priv dir for mapred_verify. Make sure that your riak_test.config contains \"deps\"");
|
|
PD -> PD
|
|
end,
|
|
MRVProps = [{node, hd(Nodes)},
|
|
%% don't need 'path' because riak_test does that for us
|
|
{keycount, 1000},
|
|
{bodysize, 1},
|
|
{populate, true},
|
|
{runjobs, true},
|
|
{testdef, filename:join(PrivDir, "tests.def")}],
|
|
|
|
lager:info("Run mapred_verify"),
|
|
0 = mapred_verify:do_verification(MRVProps),
|
|
lager:info("~s: PASS", [atom_to_list(?MODULE)]),
|
|
pass.
|