Imported Upstream version 3.1.0
[debian/amanda] / installcheck / Amanda_Debug.pl
1 # Copyright (c) 2008,2009 Zmanda, Inc.  All Rights Reserved.
2 #
3 # This program is free software; you can redistribute it and/or modify it
4 # under the terms of the GNU General Public License version 2 as published
5 # by the Free Software Foundation.
6 #
7 # This program is distributed in the hope that it will be useful, but
8 # WITHOUT ANY WARRANTY; without even the implied warranty of MERCHANTABILITY
9 # or FITNESS FOR A PARTICULAR PURPOSE.  See the GNU General Public License
10 # for more details.
11 #
12 # You should have received a copy of the GNU General Public License along
13 # with this program; if not, write to the Free Software Foundation, Inc.,
14 # 59 Temple Place, Suite 330, Boston, MA  02111-1307 USA
15 #
16 # Contact information: Zmanda Inc, 465 S. Mathilda Ave., Suite 300
17 # Sunnyvale, CA 94086, USA, or: http://www.zmanda.com
18
19 use Test::More tests => 9;
20 use File::Path;
21 use strict;
22
23 use lib "@amperldir@";
24 use Amanda::Debug qw( :logging );
25 use Amanda::Config;
26
27 ## most failures of the debug module will just kill the process, so
28 ## the main goal of this test script is just to make it to the end :)
29
30 my $fh;
31 my $debug_text;
32 my $pid;
33 my $kid;
34
35 # load default config
36 Amanda::Config::config_init(0, undef);
37
38 # set up debugging so debug output doesn't interfere with test results
39 Amanda::Debug::dbopen("installcheck");
40 Amanda::Debug::dbrename("TESTCONF", "installcheck");
41 # note: we don't bother using Installcheck::log_test_output here because
42 # sometimes the log files aren't open
43
44 # and disable Debug's die() and warn() overrides
45 Amanda::Debug::disable_die_override();
46
47 my $debug_fd = Amanda::Debug::dbfd();
48 ok($debug_fd, "dbfd() returns something nonzero");
49
50 my $debug_file = Amanda::Debug::dbfn();
51 ok(-f $debug_file, "dbfn() returns a filename that exists");
52
53 Amanda::Debug::debug('debug message');
54 Amanda::Debug::info('info message');
55 Amanda::Debug::message('message message');
56 Amanda::Debug::warning('warning message');
57
58 Amanda::Debug::dbclose();
59
60 open ($fh, "<", $debug_file);
61 $debug_text = do { local $/; <$fh> };
62 close($fh);
63
64 like($debug_text, qr/debug message/, "debug message is in debug log file");
65 like($debug_text, qr/info message/, "info message is in debug log file");
66 like($debug_text, qr/message message/, "message message is in debug log file");
67 like($debug_text, qr/warning message/, "warning message is in debug log file");
68
69 Amanda::Debug::dbreopen($debug_file, "oops, one more thing");
70 Amanda::Debug::dbclose();
71
72 open ($fh, "<", $debug_file);
73 $debug_text = do { local $/; <$fh> };
74 close($fh);
75
76 like($debug_text, qr/warning message/, "dbreopen doesn't erase existing contents");
77 like($debug_text, qr/oops, one more thing/, "dbreopen adds 'notation' to the debug log");
78
79 Amanda::Debug::dbreopen($debug_file, "I've still got more stuff to test");
80
81 # fork a child to call error()
82 $pid = open($kid, "-|");
83 die "Can't fork: $!" unless defined($pid);
84 if (!$pid) {
85     add_amanda_log_handler($amanda_log_null); # don't spew to stderr, too, please
86     Amanda::Debug::critical("morituri te salutamus");
87     exit 1; # just in case
88 }
89 close $kid;
90 waitpid $pid, 0;
91
92 # just hope this works -- Perl makes it very difficult to write to fd 2!
93 Amanda::Debug::debug_dup_stderr_to_debug();
94 Amanda::Debug::dbclose();
95
96 open ($fh, "<", $debug_file);
97 $debug_text = do { local $/; <$fh> };
98 close($fh);
99
100 like($debug_text, qr/morituri te salutamus/, "critical() writes its message to the debug log");