3c9f8b1f5997c090bace32a227b4f35633689700
[debian/amanda] / installcheck / amcheck-device.pl
1 # Copyright (c) 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 => 3;
20
21 use lib "@amperldir@";
22 use Installcheck::Run qw(run run_get);
23 use Amanda::Config qw( :init :getconf );
24 use Amanda::Paths;
25 use Amanda::Debug;
26
27 my $testconf;
28
29 Amanda::Debug::dbopen("installcheck");
30 Installcheck::log_test_output();
31
32 $testconf = Installcheck::Run::setup();
33 $testconf->add_param("autolabel", "\"TESTCONF%%\" empty volume_error");
34 $testconf->write();
35
36 like(run_get("$amlibexecdir/amcheck-device", "TESTCONF"),
37     qr/Will write label 'TESTCONF01' to new volume/,
38     "a run of amcheck-device on a new config succeeds");
39
40 ok(!run("$amlibexecdir/amcheck-device", "TESTCONF", "-o", "label_new_tapes="),
41     "accepts config_overrides, returns exit status on failure");
42
43 like(run_get("$amlibexecdir/amcheck-device", "TESTCONF", "-w"),
44     qr/Volume 'TESTCONF01' is writeable/,
45     "tests for writeability with -w");