riak_test/tests/job_enable_common.hrl
Ted Burghart 6aa340a625 Make sure the random number generator is seeded.
Print messages about why tests are skipped.
Invoke all tests, even if we know they'll be skipped for now.
2016-09-02 18:13:09 -04:00

64 lines
2.4 KiB
Erlang

%% -------------------------------------------------------------------
%%
%% Copyright (c) 2016 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.
%%
%% -------------------------------------------------------------------
-ifndef(job_enable_common_included).
-define(job_enable_common_included, true).
-define(APP_CONFIG_KEY, 'job_accept_class').
-define(CUTTLEFISH_PREFIX, "cluster.job").
-define(CUTTLEFISH_KEY(App, Op),
io_lib:format(?CUTTLEFISH_PREFIX ".~s.~s", [App, Op])).
-define(TOKEN_LIST_BUCKETS, {riak_kv, list_buckets}).
-define(TOKEN_LIST_BUCKETS_S, {riak_kv, stream_list_buckets}).
-define(TOKEN_LIST_KEYS, {riak_kv, list_keys}).
-define(TOKEN_LIST_KEYS_S, {riak_kv, stream_list_keys}).
-define(TOKEN_MAP_REDUCE, {riak_kv, map_reduce}).
-define(TOKEN_MAP_REDUCE_JS, {riak_kv, map_reduce_js}).
-define(TOKEN_SEC_INDEX, {riak_kv, secondary_index}).
-define(TOKEN_SEC_INDEX_S, {riak_kv, stream_secondary_index}).
-define(TOKEN_OLD_SEARCH, {riak_search, query}).
-define(TOKEN_YZ_SEARCH, {yokozuna, query}).
% Defaults for Riak 2.2
% 'true' == 'enabled', 'false' == 'disabled'
-define(JOB_CLASS_DEFAULTS, [
{?TOKEN_LIST_BUCKETS, true},
{?TOKEN_LIST_BUCKETS_S, true},
{?TOKEN_LIST_KEYS, true},
{?TOKEN_LIST_KEYS_S, true},
{?TOKEN_MAP_REDUCE, true},
{?TOKEN_MAP_REDUCE_JS, true},
{?TOKEN_SEC_INDEX, true},
{?TOKEN_SEC_INDEX_S, true},
{?TOKEN_OLD_SEARCH, false},
{?TOKEN_YZ_SEARCH, true}
]).
-define(COMMON_CONFIG, [
{"storage_backend", "leveldb"}, % required by ?TOKEN_SEC_INDEX
{"search", "on"} % required by ?TOKEN_YZ_SEARCH
]).
-define(ERRMSG_BIN(Tok), riak_core_util:job_class_disabled_message(binary, Tok)).
-define(ERRMSG_TXT(Tok), riak_core_util:job_class_disabled_message(text, Tok)).
-endif. % job_enable_common_included