Imported Upstream version 3.1.0
[debian/amanda] / installcheck / Amanda_NDMP.pl
diff --git a/installcheck/Amanda_NDMP.pl b/installcheck/Amanda_NDMP.pl
new file mode 100644 (file)
index 0000000..2383b3d
--- /dev/null
@@ -0,0 +1,69 @@
+# Copyright (c) 2009 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. Mathilda Ave., Suite 300
+# Sunnyvale, CA 94086, USA, or: http://www.zmanda.com
+
+use Test::More tests => 11;
+use IO::Socket;
+use strict;
+
+use lib "@amperldir@";
+use Installcheck;
+use Installcheck::Mock;
+use Amanda::NDMP qw( :constants );
+
+my $ndmp = Installcheck::Mock::NdmpServer->new();
+my $nc;
+
+Amanda::Debug::dbopen("installcheck");
+
+$nc = Amanda::NDMP::NDMPConnection->new("127.0.0.1", $ndmp->{'port'},
+                                   "ndmp", "ndmp", "md5");
+ok($nc, "constructor creates an object");
+is($nc->err_code(), 0, "and no error is set");
+
+$nc->set_verbose(1);
+
+# can't test the scsi_* methods in the general case, because we have nothing to talk
+# to -- but they were tested once, never fear!
+
+ok($nc->tape_open($ndmp->{'drive'}, $NDMP9_TAPE_RDWR_MODE),
+    "tape_open");
+
+# the stringification maps here are for old perls, which don't do well
+# with Math::BigInt and is_deeply.
+
+is_deeply([ map { "$_" } $nc->tape_write("ab"x8) ], ['1', '16'],
+    "tape_write");
+
+is_deeply([ map { "$_" } $nc->tape_write("cd"x8) ], ['1', '16'],
+    "tape_write");
+
+is_deeply([ map { "$_" } $nc->tape_mtio($NDMP9_MTIO_EOF, 1) ], ['1', '0'],
+    "tape_mtio (eof)");
+
+is_deeply([ map { "$_" } $nc->tape_mtio($NDMP9_MTIO_REW, 1) ], ['1', '0'],
+    "tape_mtio (rewind)");
+
+is_deeply([ map { "$_" } $nc->tape_read(32) ], ['1', "ab"x8], "tape_read");
+is_deeply([ map { "$_" } $nc->tape_read(32) ], ['1', "cd"x8], "tape_read");
+
+is_deeply([ map { "$_" } $nc->tape_get_state() ], ['1', '0', '0', '2'], "tape_get_state");
+
+ok($nc->tape_close(),
+    "tape_close");
+
+$ndmp->cleanup();