Imported Upstream version 2.6.1
[debian/amanda] / installcheck / pp-scripts.pl
diff --git a/installcheck/pp-scripts.pl b/installcheck/pp-scripts.pl
new file mode 100644 (file)
index 0000000..c38550a
--- /dev/null
@@ -0,0 +1,167 @@
+# Copyright (c) 2005-2008 Zmanda Inc.  All Rights Reserved.
+#
+# This program is free software; you can redistribute it and/or modify it
+# under the terms of the GNU General Public License version 2 as published
+# by the Free Software Foundation.
+#
+# This program is distributed in the hope that it will be useful, but
+# WITHOUT ANY WARRANTY; without even the implied warranty of MERCHANTABILITY
+# or FITNESS FOR A PARTICULAR PURPOSE.  See the GNU General Public License
+# for more details.
+#
+# You should have received a copy of the GNU General Public License along
+# with this program; if not, write to the Free Software Foundation, Inc.,
+# 59 Temple Place, Suite 330, Boston, MA  02111-1307 USA
+#
+# Contact information: Zmanda Inc, 465 S Mathlida Ave, Suite 300
+# Sunnyvale, CA 94086, USA, or: http://www.zmanda.com
+
+use Test::More tests => 8;
+
+use lib "@amperldir@";
+use Cwd qw(abs_path getcwd);
+use Installcheck::Config;
+use Installcheck::Run qw(run run_err $diskname amdump_diag);
+use Amanda::Config qw( :init );
+use Amanda::Paths;
+use warnings;
+use strict;
+
+my $testconf;
+
+# Run amdump with client- and server-side scripts
+
+my $templog = $Amanda::Paths::AMANDA_TMPDIR . "/check-script." . $$;
+
+sub verify_log {
+    my $msg = shift;
+    my @exp = @_;
+    my ($exp, $got);
+    my $logfile;
+
+    if (!open($logfile, "<", $templog)) {
+       fail($msg);
+       diag("Logfile '$templog' does not exist.");
+       return;
+    }
+
+    my $linenum = 1;
+    foreach $exp (@exp) {
+       $got = <$logfile>;
+       if (!$got) {
+           fail($msg);
+           diag("    Line: $linenum");
+           diag("Expected: '$exp'");
+           diag("     Got: EOF");
+           diag($exp);
+           return;
+       }
+       chomp $got;
+       if ($got ne $exp) {
+           fail($msg);
+           diag("    Line: $linenum");
+           diag("Expected: '$exp'");
+           diag("     Got: '$got'");
+           return;
+       }
+       $linenum++;
+    }
+    $got = <$logfile>;
+    if ($got) {
+       fail($msg);
+       diag("    Line: $linenum");
+       diag("Expected: EOF");
+       diag("     Got: '$got'");
+       diag($got);
+       return;
+    }
+    pass($msg);
+};
+
+# check script on client
+
+$testconf = Installcheck::Run::setup();
+$testconf->add_param('label_new_tapes', '"TESTCONF%%"');
+
+$testconf->add_dle(<<EODLE);
+localhost diskname1 $diskname {
+    installcheck-test
+    program "APPLICATION"
+    application {
+       plugin "amgtar"
+       property "atime_preserve" "no" # note underscore
+    }
+    script {
+       plugin "amlog-script"
+       execute-where client
+       execute-on pre-dle-amcheck, post-dle-amcheck, pre-dle-estimate, post-dle-estimate, pre-dle-backup, post-dle-backup
+       property "logfile" "$templog"
+    }
+}
+EODLE
+$testconf->write();
+
+unlink $templog;
+ok(run('amcheck', '-c', 'TESTCONF'), "amcheck runs successfully for client scripts.");
+
+verify_log("amcheck invokes correct script commands",
+    "TESTCONF pre-dle-amcheck client localhost diskname1 $diskname ",
+    "TESTCONF post-dle-amcheck client localhost diskname1 $diskname ",
+);
+
+unlink $templog;
+ok(run('amdump', 'TESTCONF'), "amdump runs successfully for client scripts.")
+    or amdump_diag();
+
+verify_log("amdump invokes correct script commands",
+    "TESTCONF pre-dle-estimate client localhost diskname1 $diskname 0",
+    "TESTCONF post-dle-estimate client localhost diskname1 $diskname 0",
+    "TESTCONF pre-dle-backup client localhost diskname1 $diskname 0",
+    "TESTCONF post-dle-backup client localhost diskname1 $diskname 0",
+);
+
+Installcheck::Run::cleanup();
+
+#check script on server
+$testconf = Installcheck::Run::setup();
+$testconf->add_param('label_new_tapes', '"TESTCONF%%"');
+
+$testconf->add_dle(<<EODLE);
+localhost diskname2 $diskname {
+    installcheck-test
+    program "APPLICATION"
+    application {
+       plugin "amgtar"
+       property "atime-preserve" "no"
+    }
+    script {
+       plugin "amlog-script"
+       execute-where server
+       execute-on pre-host-amcheck, post-host-amcheck, pre-host-estimate, post-host-estimate, pre-host-backup, post-host-backup
+       property "logfile" "$templog"
+    }
+}
+EODLE
+$testconf->write();
+
+unlink $templog;
+ok(run('amcheck', '-c', 'TESTCONF'), "amcheck runs successfully for server scripts.");
+
+verify_log("amcheck invokes correct script commands",
+    "TESTCONF pre-host-amcheck server localhost diskname2 $diskname ",
+    "TESTCONF post-host-amcheck server localhost diskname2 $diskname ",
+);
+
+unlink $templog;
+ok(run('amdump', 'TESTCONF'), "amdump runs successfully for server scripts.")
+    or amdump_diag();
+
+verify_log("amdump invokes correct script commands",
+    "TESTCONF pre-host-estimate server localhost diskname2 $diskname 0",
+    "TESTCONF post-host-estimate server localhost diskname2 $diskname 0",
+    "TESTCONF pre-host-backup server localhost diskname2 $diskname ",
+    "TESTCONF post-host-backup server localhost diskname2 $diskname ",
+);
+
+unlink $templog;
+Installcheck::Run::cleanup();