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 144 145 146 147 148 149 150 151 152 153 154 155 156 157 158 159 160 161 162 163 164 165
|
#!/usr/bin/perl
use strict;
use warnings;
use Log::Log4perl;
# do some setup here...honest guv
use Test::More tests => 11;
use Test::Builder::Tester;
use Test::Log::Log4perl;
use Test::Exception;
my $logger = Log::Log4perl->get_logger("Foo");
my $tlogger = Test::Log::Log4perl->get_logger("Foo");
my $t2logger = Test::Log::Log4perl->get_logger("Bar");
########################################################
test_out("ok 1 - Log4perl test");
Test::Log::Log4perl->start();
$tlogger->error("my hair is on fire!");
$logger->error("my hair is on fire!");
Test::Log::Log4perl->end();
test_test("basic ok test");
########################################################
test_out("ok 1 - Log4perl test");
Test::Log::Log4perl->start();
$tlogger->error("my hair is on fire!");
$logger->error("my hair is on ", "fire!");
Test::Log::Log4perl->end();
test_test("basic ok test");
########################################################
test_out("ok 1 - Log4perl test");
Test::Log::Log4perl->start();
$tlogger->error("my hair is on ", "fire!");
$logger->error("my hair is on fire!");
Test::Log::Log4perl->end();
test_test("basic ok test");
########################################################
test_out("not ok 1 - Log4perl test");
test_fail(+6);
test_diag("Unexpected error of type 'Foo':");
test_diag(" 'my hair is on fire!'");
Test::Log::Log4perl->start();
$logger->error("my hair is on fire!");
Test::Log::Log4perl->end();
test_test("not expecting anything");
########################################################
test_out("not ok 1 - Log4perl test");
test_fail(+7);
test_diag("Ended logging run, but still expecting 1 more log(s)");
test_diag("Expecting error of type 'Foo' next:");
test_diag(" 'my hair is on fire!'");
Test::Log::Log4perl->start();
$tlogger->error("my hair is on fire!");
Test::Log::Log4perl->end();
test_test("expecting but not getting anything");
########################################################
test_out("not ok 1 - Log4perl test");
test_fail(+9);
test_diag("Message 1 logged wasn't what we expected:");
test_diag(" message was 'your hair is on fire!'");
test_diag(" not 'my hair is on fire!'");
test_diag(" (Offending log call from line ".(__LINE__+4)." in ".filename().")");
Test::Log::Log4perl->start();
$tlogger->error("my hair is on fire!");
$logger->error("your hair is on fire!");
Test::Log::Log4perl->end();
test_test("getting wrong message");
########################################################
test_out("not ok 1 - Log4perl test");
test_fail(+9);
test_diag("Message 1 logged wasn't what we expected:");
test_diag(" priority was 'warn'");
test_diag(" not 'error'");
test_diag(" (Offending log call from line ".(__LINE__+4)." in ".filename().")");
Test::Log::Log4perl->start();
$tlogger->error("my hair is on fire!");
$logger->warn("my hair is on fire!");
Test::Log::Log4perl->end();
test_test("getting wrong priority");
########################################################
test_out("not ok 1 - Log4perl test");
test_fail(+9);
test_diag("Message 1 logged wasn't what we expected:");
test_diag(" category was 'Foo'");
test_diag(" not 'Bar'");
test_diag(" (Offending log call from line ".(__LINE__+4)." in ".filename().")");
Test::Log::Log4perl->start();
$t2logger->error("my hair is on fire!");
$logger->error("my hair is on fire!");
Test::Log::Log4perl->end();
test_test("getting wrong category");
########################################################
test_out("not ok 1 - Log4perl test");
test_fail(+13);
test_diag("Message 1 logged wasn't what we expected:");
test_diag(" category was 'Foo'");
test_diag(" not 'Bar'");
test_diag(" priority was 'warn'");
test_diag(" not 'error'");
test_diag(" message was 'your hair is on fire!'");
test_diag(" not 'my hair is on fire!'");
test_diag(" (Offending log call from line ".(__LINE__+4)." in ".filename().")");
Test::Log::Log4perl->start();
$t2logger->error("my hair is on fire!");
$logger->warn("your hair is on fire!");
Test::Log::Log4perl->end();
test_test("getting it all wrong");
########################################################
Test::Log::Log4perl->start();
$tlogger->fatal("my hair is on fire!");
throws_ok {
$logger->logdie("my hair is on fire!");
} qr/my hair is on fire!/, "logdie dies";
test_out("ok 1 - Log4perl test");
Test::Log::Log4perl->end();
test_test("logdie");
##################################
##################################
sub filename
{
return (caller)[1];
}
|