From f2244b26be11726c3324386946e9bd204c4ef1cc Mon Sep 17 00:00:00 2001 From: Andrew Thompson Date: Wed, 6 Oct 2010 21:05:13 +0200 Subject: Add optional eunit coverage report to terminal Add a coverage report similar to the one output to index.html except that it is output to the terminal if the new rebar.conf option 'cover_print_enabled' is set to true. --- src/rebar_eunit.erl | 34 ++++++++++++++++++++++++++++++++-- 1 file changed, 32 insertions(+), 2 deletions(-) (limited to 'src') diff --git a/src/rebar_eunit.erl b/src/rebar_eunit.erl index 2dd02a7..d5b69d7 100644 --- a/src/rebar_eunit.erl +++ b/src/rebar_eunit.erl @@ -214,7 +214,7 @@ perform_cover(true, Config, BeamFiles, SrcModules) -> cover_analyze(_Config, [], _SrcModules) -> ok; -cover_analyze(_Config, Modules, SrcModules) -> +cover_analyze(Config, Modules, SrcModules) -> Suite = list_to_atom(rebar_config:get_global(suite, "")), FilteredModules = [M || M <- Modules, M =/= Suite], @@ -228,7 +228,15 @@ cover_analyze(_Config, Modules, SrcModules) -> [{ok, _} = cover:analyze_to_file(M, cover_file(M), [html]) || {M, _, _} <- Coverage], Index = filename:join([rebar_utils:get_cwd(), ?EUNIT_DIR, "index.html"]), - ?CONSOLE("Cover analysis: ~s\n", [Index]). + ?CONSOLE("Cover analysis: ~s\n", [Index]), + + %% Print coverage report, if configured + case rebar_config:get(Config, cover_print_enabled, false) of + true -> + cover_print_coverage(lists:sort(Coverage)); + false -> + ok + end. cover_init(false, _BeamFiles) -> ok; @@ -326,6 +334,28 @@ cover_write_index_section(F, SectionName, Coverage) -> {Module, Cov, NotCov} <- Coverage], ok = file:write(F, "\n"). +cover_print_coverage(Coverage) -> + {Covered, NotCovered} = lists:foldl(fun({_Mod, C, N}, {CAcc, NAcc}) -> + {CAcc + C, NAcc + N} + end, {0, 0}, Coverage), + TotalCoverage = percentage(Covered, NotCovered), + + %% Determine the longest module name for right-padding + Width = lists:foldl(fun({Mod, _, _}, Acc) -> + case length(atom_to_list(Mod)) of + N when N > Acc -> + N; + _ -> + Acc + end + end, 0, Coverage) * -1, + + %% Print the output the console + ?CONSOLE("~nCode Coverage:~n", []), + [?CONSOLE("~*s : ~3s~n", + [Width, Mod, percentage(C, N)]) || {Mod, C, N} <- Coverage], + ?CONSOLE("~n~*s : ~s~n", [Width, "Total", TotalCoverage]). + cover_file(Module) -> filename:join([?EUNIT_DIR, atom_to_list(Module) ++ ".COVER.html"]). -- cgit v1.1