Imported Upstream version 3.2.0
[debian/amanda] / installcheck / amlabel.pl
1 # Copyright (c) 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 => 19;
20 use strict;
21 use warnings;
22
23 use lib "@amperldir@";
24 use Installcheck::Config;
25 use Installcheck::Run qw(run run_err run_get load_vtape vtape_dir);
26 use Amanda::Device qw( :constants );
27 use Amanda::Config qw( :init :getconf );
28 use Amanda::Paths;
29 use Amanda::Debug;
30 use Amanda::Constants;
31 use Amanda::Tapelist;
32
33 my $testconf;
34
35 Amanda::Debug::dbopen("installcheck");
36 Installcheck::log_test_output();
37
38 $testconf = Installcheck::Run::setup();
39 $testconf->write();
40
41 config_init($CONFIG_INIT_EXPLICIT_NAME, "TESTCONF");
42 my ($cfgerr_level, @cfgerr_errors) = config_errors();
43 if ($cfgerr_level >= $CFGERR_WARNINGS) {
44     config_print_errors();
45     BAIL_OUT("config errors");
46 }
47
48 # label slot 2 with "MyTape", slot 3 with "TESTCONF13", and add
49 # the latter to the tapelist
50 my ($devdir, $dev);
51
52 $devdir = load_vtape(2);
53 $dev = Amanda::Device->new("file:$devdir");
54 ($dev && $dev->status == $DEVICE_STATUS_SUCCESS)
55     or BAIL_OUT("device error");
56
57 $dev->start($ACCESS_WRITE, "MyTape", undef)
58     or BAIL_OUT("device error");
59 $dev->finish()
60     or BAIL_OUT("device error");
61
62 my $tlf = Amanda::Config::config_dir_relative(getconf($CNF_TAPELIST));
63 my $tl = Amanda::Tapelist->new($tlf, 1);
64 $tl->add_tapelabel("0", "TESTCONF13", "test tape");
65 $tl->write($tlf);
66
67 like(run_err('amlabel'),
68     qr/^Usage:/,
69     "bare 'amlabel' gives usage message");
70
71 like(run_get('amlabel', '--version'),
72     qr/^amlabel-\Q$Amanda::Constants::VERSION\E/,
73     "'amlabel --version' gives version");
74
75 like(run_get('amlabel', 'TESTCONF', 'TESTCONF92'),
76     qr/Writing label 'TESTCONF92'/,
77     "amlabel labels the current slot by default");
78
79 $tl->reload();
80 is_deeply($tl->{'tles'}->[0], {
81        'reuse' => 1,
82        'comment' => undef,
83        'position' => 1,
84        'label' => 'TESTCONF92',
85        'datestamp' => '0'
86      },
87     "tapelist correctly updated");
88
89 $devdir = load_vtape(1);
90 $dev = Amanda::Device->new("file:$devdir");
91 die "read_label failed" unless $dev->read_label() == $DEVICE_STATUS_SUCCESS;
92 is($dev->volume_label, "TESTCONF92", "volume is actually labeled");
93
94 ok(!run('amlabel', 'TESTCONF', 'TESTCONF93'),
95     "amlabel refuses to re-label a labeled volume");
96 like($Installcheck::Run::stdout,
97     qr/Volume with label 'TESTCONF92' is active and contains data from this configuration/,
98     "with correct message");
99
100 ok(!run('amlabel', 'TESTCONF', 'SomeTape'),
101     "amlabel refuses to write a non-matching label");
102 like($Installcheck::Run::stderr,
103     qr/Label 'SomeTape' doesn't match labelstr '.*'/,
104     "with correct message on stderr");
105
106 ok(!run('amlabel', '-f', 'TESTCONF', 'SomeTape'),
107     "amlabel will not write a non-matching label even with -f");
108
109 ok(!run('amlabel', 'TESTCONF', 'TESTCONF13', 'slot', '3'),
110     "amlabel refuses to write a label already in the tapelist (and recognizes 'slot xx')");
111 like($Installcheck::Run::stderr,
112     qr/Label 'TESTCONF13' already on a volume/,
113     "with correct message on stderr");
114
115 ok(run('amlabel', '-f', 'TESTCONF', 'TESTCONF13', 'slot', '3'),
116     "amlabel will write a label already in the tapelist with -f");
117 like($Installcheck::Run::stdout,
118     qr/Writing label 'TESTCONF13'/,
119     "with correct message on stdout");
120
121 ok(!run('amlabel', 'TESTCONF', 'TESTCONF88', 'slot', '2'),
122     "amlabel refuses to overwrite a non-matching label");
123 like($Installcheck::Run::stdout,
124     qr/Found label 'MyTape', but it is not from configuration 'TESTCONF'\./,
125     "with correct message on stdout");
126
127 ok(run('amlabel', '-f', 'TESTCONF', 'TESTCONF88', 'slot', '2'),
128     "amlabel will overwrite a non-matching label with -f");
129 like($Installcheck::Run::stdout,
130     qr/Found label 'MyTape', but it is not from configuration 'TESTCONF'\.
131 Writing label 'TESTCONF88'/,
132     "with correct message on stdout");
133
134 ok(run('amlabel', 'TESTCONF', 'TESTCONF88', '-f', 'slot', '2'),
135     "-f option doesn't have to follow 'amlabel'");