summaryrefslogtreecommitdiff
path: root/lib/filetest.t
diff options
context:
space:
mode:
authorchromatic <chromatic@wgz.org>2001-09-23 06:07:25 -0600
committerAbhijit Menon-Sen <ams@wiw.org>2001-09-23 17:40:02 +0000
commit033093593b6c100ab1090ed4361e4f7a7ac01f7a (patch)
tree50606773dde7a0b61f2d311f5995c63ef4c314e5 /lib/filetest.t
parentb4ad75f09b5fc5e6ccb03319ee0b8db133c8ce04 (diff)
downloadperl-033093593b6c100ab1090ed4361e4f7a7ac01f7a.tar.gz
Add Tests for
filetest Pragma Message-Id: <20010923181223.32427.qmail@onion.perl.org> p4raw-id: //depot/perl@12161
Diffstat (limited to 'lib/filetest.t')
-rw-r--r--lib/filetest.t51
1 files changed, 51 insertions, 0 deletions
diff --git a/lib/filetest.t b/lib/filetest.t
new file mode 100644
index 0000000000..096031c63d
--- /dev/null
+++ b/lib/filetest.t
@@ -0,0 +1,51 @@
+#!./perl
+
+BEGIN {
+ chdir 't' if -d 't';
+ @INC = '../lib';
+}
+
+use Test::More tests => 11;
+
+# these two should be kept in sync with the pragma itself
+# if hint bits are changed there, other things *will* break
+my $hint_bits = 0x00400000;
+my $error = "filetest: the only implemented subpragma is 'access'.\n";
+
+# can't use it yet, because of the import death
+ok( require filetest, 'required pragma successfully' );
+
+# and here's one culprit, right here
+eval { filetest->import('bad subpragma') };
+is( $@, $error, 'filetest dies with bad subpragma on import' );
+
+is( $^H & $hint_bits, 0, 'hint bits not set without pragma in place' );
+
+# now try the normal usage
+# can't check $^H here; it's lexically magic (see perlvar)
+# the test harness unintentionally hoards the goodies for itself
+use_ok( 'filetest', 'access' );
+
+# and import again, to see it here
+filetest->import('access');
+ok( $^H & $hint_bits, 'hint bits set with pragma loaded' );
+
+# and now get rid of it
+filetest->unimport('access');
+is( $^H & $hint_bits, 0, 'hint bits not set with pragma unimported' );
+
+eval { filetest->unimport() };
+is( $@, $error, 'filetest dies without subpragma on unimport' );
+
+# there'll be a compilation aborted failure here, with the eval string
+eval "no filetest 'fake pragma'";
+like( $@, qr/^$error/, 'filetest dies with bad subpragma on unuse' );
+
+eval "use filetest 'bad subpragma'";
+like( $@, qr/^$error/, 'filetest dies with bad subpragma on use' );
+
+eval "use filetest";
+like( $@, qr/^$error/, 'filetest dies with missing subpragma on use' );
+
+eval "no filetest";
+like( $@, qr/^$error/, 'filetest dies with missing subpragma on unuse' );