1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 52 53 54 55 56 57 58 59 60 61 62 63 64 65 66 67 68 69 70 71 72 73 74 75 76 77 78 79 80 81 82 83 84 85 86 87 88 89 90 91 92 93 94 95 96 97 98 99 100 101 102 103 104 105 106 107 108 109 110 111 112 113 114 115 116 117 118 119 120 121 122 123 124 125 126 127 128 129 130 131 132 133 134 135 136 137 138 139 140 141 142 143
|
%%
%% %CopyrightBegin%
%%
%% Copyright Ericsson AB 2014-2022. All Rights Reserved.
%%
%% Licensed 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.
%%
%% %CopyrightEnd%
%%
-module(msacc_SUITE).
-include_lib("common_test/include/ct.hrl").
%% Test server callbacks
-export([suite/0, all/0, init_per_suite/1, end_per_suite/1]).
%% Test cases
-export([
%% API-test
api_file/1,
api_start_stop/1,
api_timer/1,
api_print/1
]).
%%--------------------------------------------------------------------
%% COMMON TEST CALLBACK FUNCTIONS
%%--------------------------------------------------------------------
all() ->
[
api_start_stop,
api_file,
api_timer,
api_print
].
suite() -> [
{timetrap,{minutes,1}},
{ct_hooks,[ts_install_cth]}
].
init_per_suite(Config) ->
try erlang:statistics(microstate_accounting) of
_ ->
Config
catch _:_ ->
{skip, "Microstate accouning not available"}
end.
end_per_suite(_Config) ->
ok.
%%--------------------------------------------------------------------
%% TEST CASES
%%--------------------------------------------------------------------
api_timer(_Config) ->
%% Run msacc for about 100ms
msacc:start(100),
%% Verify that scheduler 1 executed+slept for about 100ms
[Sched1] = [S || S = #{ type := scheduler, id := 1 } <- msacc:stats()],
#{ counters := Cnt } = Sched1,
%% Time should be in us
Time = maps:fold(fun(_,V,Acc) -> V + Acc end, 0, Cnt),
if Time < 120000 andalso Time > 80000 -> ok;
true -> ct:fail({inaccurate_time, Time, msacc:stats()})
end.
%% We just do a basic check that none of the apis crash
api_start_stop(_Config) ->
msacc:start(),
timer:sleep(100),
msacc:stop(),
Runtime = msacc:stats(system_runtime, msacc:stats()),
Realtime = msacc:stats(system_realtime, msacc:stats()),
true = Runtime < Realtime,
RuntimeCnt = msacc:stats(runtime, msacc:stats()),
RealtimeCnt = msacc:stats(realtime, msacc:stats()),
TypeCnt = msacc:stats(type, msacc:stats()),
%% These should be very similar
RuntimeTypeCnt = msacc:stats(type, RuntimeCnt),
TypeRuntimeCnt = msacc:stats(runtime, TypeCnt),
lists:map(fun({#{ system := T1 },#{ system := T2}}) ->
if T1-0.5 < T2 orelse T1+0.5 > T2 -> ok;
true -> ct:fail({inaccurate_stats, RuntimeTypeCnt,
TypeRuntimeCnt})
end
end, lists:zip(RuntimeTypeCnt, TypeRuntimeCnt)),
%% These should be very similar
RealtimeTypeCnt = msacc:stats(type, RealtimeCnt),
TypeRealtimeCnt = msacc:stats(realtime, TypeCnt),
lists:map(fun({#{ system := T1 },#{ system := T2}}) ->
if T1-0.5 < T2 orelse T1+0.5 > T2 -> ok;
true -> ct:fail({inaccurate_stats, RealtimeTypeCnt,
TypeRealtimeCnt})
end
end,lists:zip(RealtimeTypeCnt, TypeRealtimeCnt)),
msacc:reset().
api_file(Config) ->
PrivDir = proplists:get_value(priv_dir, Config),
File = filename:join(PrivDir, "msacc.stats"),
Stats = msacc:stats(),
ok = msacc:to_file(File),
Stats = msacc:from_file(File),
PrintFile = filename:join(PrivDir, "msacc.txt"),
msacc:print(PrintFile, Stats, #{}).
%% We just check that it is possible to print in a couple of different ways
api_print(_Config) ->
msacc:start(100),
io:format("msacc:print(msacc:stats()).~n"),
msacc:print(msacc:stats()),
io:format("msacc:print(msacc:stats(),#{ system => true }).~n"),
msacc:print(msacc:stats(), #{ system => true }),
io:format("msacc:print(msacc:stats(runtime,msacc:stats())).~n"),
msacc:print(msacc:stats(runtime, msacc:stats())),
io:format("msacc:print(msacc:stats(type,msacc:stats())).~n"),
msacc:print(msacc:stats(type, msacc:stats())),
io:format("msacc:print(msacc:stats(realtime,msacc:stats())).~n"),
msacc:print(msacc:stats(realtime, msacc:stats())),
io:format("msacc:stats(type,msacc:stats(runtime,msacc:stats())).~n"),
msacc:print(msacc:stats(type, msacc:stats(runtime, msacc:stats()))).
|