Simple test to prove redbug and recon available

This commit is contained in:
Martin Sumner 2019-10-01 10:08:18 +01:00
parent 1676dad7a8
commit c9c96f8258
2 changed files with 45 additions and 1 deletions

View File

@ -1,3 +1,4 @@
basic_command_line
riak_admin_console_tests
riaknostic_rt
verify_ops_tools

View File

@ -0,0 +1,43 @@
%% -------------------------------------------------------------------
%%
%% Copyright (c) 2019 Martin Sumner.
%%
%% 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(verify_ops_tools).
-behavior(riak_test).
-export([confirm/0]).
-include_lib("eunit/include/eunit.hrl").
%% Very basic test to confirm that redbug and recon are laoded and available
%% to support troubleshooting
confirm() ->
lager:info("Spinning up test nodes"),
Config = [{riak_core, [{ring_creation_size, 8}]},
{riak_kv, [{anti_entropy, {off, []}}]}],
[RootNode | _RestNodes] = rt:build_cluster(2, Config),
rt:wait_for_service(RootNode, riak_kv),
lager:info("Calling redbug and recon - are they there?"),
ok = rpc:call(RootNode, redbug, help, []),
lager:info("Redbug present"),
2 = length(rpc:call(RootNode, recon, node_stats_list, [2, 2])),
lager:info("Recon present"),
pass.