Imported Upstream version 3.2.0
[debian/amanda] / installcheck / Amanda_Debug.pl
1 # Copyright (c) 2008, 2009, 2010 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 use warnings;
23
24 use lib "@amperldir@";
25 use Amanda::Debug qw( :logging );
26 use Amanda::Config;
27
28 ## most failures of the debug module will just kill the process, so
29 ## the main goal of this test script is just to make it to the end :)
30
31 my $fh;
32 my $debug_text;
33 my $pid;
34 my $kid;
35
36 # load default config
37 Amanda::Config::config_init(0, undef);
38
39 # set up debugging so debug output doesn't interfere with test results
40 Amanda::Debug::dbopen("installcheck");
41 Amanda::Debug::dbrename("TESTCONF", "installcheck");
42 # note: we don't bother using Installcheck::log_test_output here because
43 # sometimes the log files aren't open
44
45 # and disable Debug's die() and warn() overrides
46 Amanda::Debug::disable_die_override();
47
48 my $debug_fd = Amanda::Debug::dbfd();
49 ok($debug_fd, "dbfd() returns something nonzero");
50
51 my $debug_file = Amanda::Debug::dbfn();
52 ok(-f $debug_file, "dbfn() returns a filename that exists");
53
54 Amanda::Debug::debug('debug message');
55 Amanda::Debug::info('info message');
56 Amanda::Debug::message('message message');
57 Amanda::Debug::warning('warning message');
58
59 Amanda::Debug::dbclose();
60
61 open ($fh, "<", $debug_file);
62 $debug_text = do { local $/; <$fh> };
63 close($fh);
64
65 like($debug_text, qr/debug message/, "debug message is in debug log file");
66 like($debug_text, qr/info message/, "info message is in debug log file");
67 like($debug_text, qr/message message/, "message message is in debug log file");
68 like($debug_text, qr/warning message/, "warning message is in debug log file");
69
70 Amanda::Debug::dbreopen($debug_file, "oops, one more thing");
71 Amanda::Debug::dbclose();
72
73 open ($fh, "<", $debug_file);
74 $debug_text = do { local $/; <$fh> };
75 close($fh);
76
77 like($debug_text, qr/warning message/, "dbreopen doesn't erase existing contents");
78 like($debug_text, qr/oops, one more thing/, "dbreopen adds 'notation' to the debug log");
79
80 Amanda::Debug::dbreopen($debug_file, "I've still got more stuff to test");
81
82 # fork a child to call error()
83 $pid = open($kid, "-|");
84 die "Can't fork: $!" unless defined($pid);
85 if (!$pid) {
86     add_amanda_log_handler($amanda_log_null); # don't spew to stderr, too, please
87     Amanda::Debug::critical("morituri te salutamus");
88     exit 1; # just in case
89 }
90 close $kid;
91 waitpid $pid, 0;
92
93 # just hope this works -- Perl makes it very difficult to write to fd 2!
94 Amanda::Debug::debug_dup_stderr_to_debug();
95 Amanda::Debug::dbclose();
96
97 open ($fh, "<", $debug_file);
98 $debug_text = do { local $/; <$fh> };
99 close($fh);
100
101 like($debug_text, qr/morituri te salutamus/, "critical() writes its message to the debug log");