#!/usr/local/bin/perl ################################################################# # # $Id: 04_test_verbosity_rules_bis.t,v 1.3 2005/11/07 16:49:09 erwan Exp $ # # same as 03, but test the ::* rules # # 050914 erwan Created # 051007 erwan Fix dependencies # use strict; use warnings; use Data::Dumper; use Test::More tests => 44; use lib ("./t/", "../lib/", "./lib/"); use Utils; BEGIN { # using Log::Localized with global verbosity off but config file Utils::backup_log_settings(); my $conf = "". "main::test2 = 4\n". "Foo:: = 3\n". "Foo::Bar::test1 = 1\n"; # "Log::Localized:: = 4\n"; Utils::write_config($conf); use_ok('Log::Localized'); }; use Foo; use Foo::Bar; my $want_rules = { "main::test2" => 4, "Foo::" => 3, "Foo::Bar::test1" => 1, }; my %rules = Log::Localized::_test_verbosity_rules(); is_deeply(\%rules,$want_rules,"checking verbosity rules"); sub test1 { my $level = shift; llog($level,\&Utils::mark_log_called); } sub test2 { my $level = shift; llog($level,\&Utils::mark_log_called); } #diag("checking that llog() logs proper verbositys, according to test config file"); # local llog(0,\&Utils::mark_log_called); is(Utils::check_log_called,1,"main::, verbosity 0"); llog(1,\&Utils::mark_log_called); is(Utils::check_log_called,0,"main::, verbosity 1"); llog(2,\&Utils::mark_log_called); is(Utils::check_log_called,0,"main::, verbosity 2"); llog(3,\&Utils::mark_log_called); is(Utils::check_log_called,0,"main::, verbosity 3"); llog(4,\&Utils::mark_log_called); is(Utils::check_log_called,0,"main::, verbosity 4"); llog(5,\&Utils::mark_log_called); is(Utils::check_log_called,0,"main::, verbosity 5"); test1(0); is(Utils::check_log_called,1,"main::test1, verbosity 0"); test1(1); is(Utils::check_log_called,0,"main::test1, verbosity 1"); test1(2); is(Utils::check_log_called,0,"main::test1, verbosity 2"); test1(3); is(Utils::check_log_called,0,"main::test1, verbosity 3"); test1(4); is(Utils::check_log_called,0,"main::test1, verbosity 4"); test1(5); is(Utils::check_log_called,0,"main::test1, verbosity 5"); test2(0); is(Utils::check_log_called,1,"main::test2, verbosity 0"); test2(1); is(Utils::check_log_called,1,"main::test2, verbosity 1"); test2(2); is(Utils::check_log_called,1,"main::test2, verbosity 2"); test2(3); is(Utils::check_log_called,1,"main::test2, verbosity 3"); test2(4); is(Utils::check_log_called,1,"main::test2, verbosity 4"); test2(5); is(Utils::check_log_called,0,"main::test2, verbosity 5"); # Foo &Foo::test1(0); is(Utils::check_log_called,1,"Foo::test1, verbosity 0"); &Foo::test1(1); is(Utils::check_log_called,1,"Foo::test1, verbosity 1"); &Foo::test1(2); is(Utils::check_log_called,1,"Foo::test1, verbosity 2"); &Foo::test1(3); is(Utils::check_log_called,1,"Foo::test1, verbosity 3"); &Foo::test1(4); is(Utils::check_log_called,0,"Foo::test1, verbosity 4"); &Foo::test1(5); is(Utils::check_log_called,0,"Foo::test1, verbosity 5"); &Foo::test2(0); is(Utils::check_log_called,1,"Foo::test2, verbosity 0"); &Foo::test2(1); is(Utils::check_log_called,1,"Foo::test2, verbosity 1"); &Foo::test2(2); is(Utils::check_log_called,1,"Foo::test2, verbosity 2"); &Foo::test2(3); is(Utils::check_log_called,1,"Foo::test2, verbosity 3"); &Foo::test2(4); is(Utils::check_log_called,0,"Foo::test2, verbosity 4"); &Foo::test2(5); is(Utils::check_log_called,0,"Foo::test2, verbosity 5"); # Foo::Bar &Foo::Bar::test1(0); is(Utils::check_log_called,1,"Foo::Bar::test1, verbosity 0"); &Foo::Bar::test1(1); is(Utils::check_log_called,1,"Foo::Bar::test1, verbosity 1"); &Foo::Bar::test1(2); is(Utils::check_log_called,0,"Foo::Bar::test1, verbosity 2"); &Foo::Bar::test1(3); is(Utils::check_log_called,0,"Foo::Bar::test1, verbosity 3"); &Foo::Bar::test1(4); is(Utils::check_log_called,0,"Foo::Bar::test1, verbosity 4"); &Foo::Bar::test1(5); is(Utils::check_log_called,0,"Foo::Bar::test1, verbosity 5"); &Foo::Bar::test2(0); is(Utils::check_log_called,1,"Foo::Bar::test2, verbosity 0"); &Foo::Bar::test2(1); is(Utils::check_log_called,1,"Foo::Bar::test2, verbosity 1"); &Foo::Bar::test2(2); is(Utils::check_log_called,1,"Foo::Bar::test2, verbosity 2"); &Foo::Bar::test2(3); is(Utils::check_log_called,1,"Foo::Bar::test2, verbosity 3"); &Foo::Bar::test2(4); is(Utils::check_log_called,0,"Foo::Bar::test2, verbosity 4"); &Foo::Bar::test2(5); is(Utils::check_log_called,0,"Foo::Bar::test2, verbosity 5"); Utils::remove_config(); Utils::restore_log_settings();