Imported Upstream version 3.3.3
[debian/amanda] / installcheck / Amanda_Changer_null.pl
1 # Copyright (c) 2009-2012 Zmanda, Inc.  All Rights Reserved.
2 #
3 # This program is free software; you can redistribute it and/or
4 # modify it under the terms of the GNU General Public License
5 # as published by the Free Software Foundation; either version 2
6 # of the License, or (at your option) any later version.
7 #
8 # This program is distributed in the hope that it will be useful, but
9 # WITHOUT ANY WARRANTY; without even the implied warranty of MERCHANTABILITY
10 # or FITNESS FOR A PARTICULAR PURPOSE.  See the GNU General Public License
11 # for more details.
12 #
13 # You should have received a copy of the GNU General Public License along
14 # with this program; if not, write to the Free Software Foundation, Inc.,
15 # 59 Temple Place, Suite 330, Boston, MA  02111-1307 USA
16 #
17 # Contact information: Zmanda Inc, 465 S. Mathilda Ave., Suite 300
18 # Sunnyvale, CA 94086, USA, or: http://www.zmanda.com
19
20 use Test::More tests => 5;
21 use File::Path;
22 use strict;
23 use warnings;
24
25 use lib "@amperldir@";
26 use Installcheck::Config;
27 use Installcheck::Changer;
28 use Amanda::Paths;
29 use Amanda::Device;
30 use Amanda::Debug;
31 use Amanda::MainLoop;
32 use Amanda::Config qw( :init :getconf config_dir_relative );
33 use Amanda::Changer;
34
35 # set up debugging so debug output doesn't interfere with test results
36 Amanda::Debug::dbopen("installcheck");
37 Installcheck::log_test_output();
38
39 # and disable Debug's die() and warn() overrides
40 Amanda::Debug::disable_die_override();
41
42 my $testconf = Installcheck::Config->new();
43 $testconf->write();
44
45 my $cfg_result = config_init($CONFIG_INIT_EXPLICIT_NAME, 'TESTCONF');
46 if ($cfg_result != $CFGERR_OK) {
47     my ($level, @errors) = Amanda::Config::config_errors();
48     die(join "\n", @errors);
49 }
50
51 my $chg = Amanda::Changer->new("chg-null:");
52 is($chg->have_inventory(), '', "changer have inventory");
53 {
54     my ($get_info, $check_info, $do_load, $got_res);
55
56     $get_info = make_cb('get_info' => sub {
57         $chg->info(info_cb => $check_info, info => [ 'num_slots', 'fast_search' ]);
58     });
59
60     $check_info = make_cb('check_info' => sub {
61         my $err = shift;
62         my %results = @_;
63         die($err) if defined($err);
64
65         is_deeply({ %results },
66             { num_slots => 1, fast_search => 1 },
67             "info() returns the correct num_slots and fast_search");
68
69         $do_load->();
70     });
71
72     $do_load = make_cb('do_load' => sub {
73         $chg->load(relative_slot => "current",
74                    res_cb => $got_res);
75     });
76
77     $got_res = make_cb('got_res' => sub {
78         my ($err, $res) = @_;
79         ok(!$err, "no error loading relative slot 'current'")
80             or diag($err);
81         is($res->{'device'}->device_name, 'null:',
82             "returns correct device name");
83
84         $res->release(finished_cb => sub {
85             Amanda::MainLoop::quit();
86         });
87     });
88
89     # start the loop
90     $get_info->();
91     Amanda::MainLoop::run();
92 }
93
94 # eject is not implemented
95 {
96     my $try_eject = make_cb('try_eject' => sub {
97         $chg->eject(finished_cb => sub {
98             my ($err, $res) = @_;
99             chg_err_like($err,
100                 { type => 'failed', reason => 'notimpl' },
101                 "eject returns a failed/notimpl error");
102
103             Amanda::MainLoop::quit();
104         });
105     });
106
107     $try_eject->();
108     Amanda::MainLoop::run();
109 }
110
111 $chg->quit();