80da868e38ca9f63d0e17263af0a0948659a3427
[debian/amanda] / installcheck / Amanda_Changer_single.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 => 6;
20 use File::Path;
21 use strict;
22
23 use lib "@amperldir@";
24 use Installcheck::Config;
25 use Installcheck::Changer;
26 use Amanda::Paths;
27 use Amanda::Device;
28 use Amanda::Debug;
29 use Amanda::MainLoop;
30 use Amanda::Config qw( :init :getconf config_dir_relative );
31 use Amanda::Changer;
32
33 # set up debugging so debug output doesn't interfere with test results
34 Amanda::Debug::dbopen("installcheck");
35 Installcheck::log_test_output();
36
37 # and disable Debug's die() and warn() overrides
38 Amanda::Debug::disable_die_override();
39
40 my $testconf = Installcheck::Config->new();
41 $testconf->write();
42
43 my $cfg_result = config_init($CONFIG_INIT_EXPLICIT_NAME, 'TESTCONF');
44 if ($cfg_result != $CFGERR_OK) {
45     my ($level, @errors) = Amanda::Config::config_errors();
46     die(join "\n", @errors);
47 }
48
49 my $chg = Amanda::Changer->new("chg-single:tape:/foo");
50
51 {
52     my ($held_res);
53     my ($get_info, $get_res, $got_res, $got_second_res);
54
55     $get_info = make_cb('get_info' => sub {
56         $chg->info(info_cb => $get_res, info => [ 'num_slots', 'fast_search' ]);
57     });
58
59     $get_res = make_cb('get_res' => sub {
60         my $err = shift;
61         my %results = @_;
62         die($err) if defined($err);
63
64         is($results{'num_slots'}, 1, "info() returns the correct num_slots");
65         is($results{'fast_search'}, 0, "info() returns the correct fast_slots");
66
67         $chg->load(relative_slot => "current",
68                    res_cb => $got_res);
69     });
70
71     $got_res = make_cb('got_res' => sub {
72         my ($err, $res) = @_;
73         ok(!$err, "no error loading relative slot 'current'")
74             or diag($err);
75         is($res->{'device'}->device_name(), 'tape:/foo',
76             "returns correct device name");
77
78         $held_res = $res; # hang onto it while loading another slot
79
80         $chg->load(label => "FOO!",
81                    res_cb => $got_second_res);
82     });
83
84     $got_second_res = make_cb('got_second_res' => sub {
85         my ($err, $res) = @_;
86         chg_err_like($err,
87             { message => qr{'tape:/foo' is already reserved},
88               type => 'failed',
89               reason => 'volinuse' },
90             "second simultaneous reservation rejected");
91
92         # release the first reservation
93         $held_res->release(finished_cb => sub {
94             my ($err) = @_;
95             die $err if $err;
96
97             Amanda::MainLoop::quit();
98         });
99     });
100
101     # start the loop
102     $get_info->();
103     Amanda::MainLoop::run();
104 }
105
106 $chg = Amanda::Changer->new("chg-single:bogus:device");
107 is("$chg",
108     "chg-single: error opening device 'bogus:device': Device type bogus is not known.",
109     "bogus device name detected early");