mirror of
https://github.com/valitydev/riak_test.git
synced 2024-11-06 08:35:22 +00:00
4c33003f75
Test was assuming old-style lager config, but cuttlefish generates the 'new' style config, so the test broke.
54 lines
1.8 KiB
Erlang
54 lines
1.8 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.
|
|
%%
|
|
%% -------------------------------------------------------------------
|
|
-module(verify_riak_lager).
|
|
|
|
-behavior(riak_test).
|
|
-export([confirm/0]).
|
|
|
|
-include_lib("eunit/include/eunit.hrl").
|
|
-include_lib("kernel/include/file.hrl").
|
|
|
|
-define(UNIX_RW_R__R__, 8#100644).
|
|
|
|
confirm() ->
|
|
lager:info("Staring a node"),
|
|
Nodes = [Node] = rt:deploy_nodes(1),
|
|
?assertEqual(ok, rt:wait_until_nodes_ready(Nodes)),
|
|
|
|
lager:info("Stopping that node"),
|
|
rt:stop(Node),
|
|
|
|
rt:start(Node),
|
|
lager:info("Checking for log files"),
|
|
|
|
{ok, LagerHandlers} = rt:rpc_get_env(Node, [{lager, handlers}]),
|
|
|
|
Files = [proplists:get_value(file, Config) || {Backend, Config} <- LagerHandlers,
|
|
Backend == lager_file_backend ],
|
|
|
|
lager:info("Checking for files: ~p", [Files]),
|
|
[?assert(rpc:call(Node, filelib, is_file, [File])) || File <- Files],
|
|
|
|
FileInfos = [ FileInfo || {ok, FileInfo} <- [rpc:call(Node, file, read_file_info, [File]) || File <- Files]],
|
|
|
|
[?assertEqual(?UNIX_RW_R__R__, ?UNIX_RW_R__R__ band FileInfo#file_info.mode) || FileInfo <- FileInfos],
|
|
pass.
|
|
|