summaryrefslogtreecommitdiff
path: root/t
diff options
context:
space:
mode:
authorIlmari Karonen <iltzu@sci.fi>2001-05-24 04:51:48 +0300
committerJarkko Hietaniemi <jhi@iki.fi>2001-05-25 01:07:00 +0000
commitaf09ea45cb052770572c0a2caa4e487853f703c8 (patch)
tree32a34991b19afaec1a03b33c617cd37dc434571f /t
parent83f0ef606d0dfc3c0df7c715e0461b6469dee131 (diff)
downloadperl-af09ea45cb052770572c0a2caa4e487853f703c8.tar.gz
stash autovivification and method call error messages
Message-ID: <Pine.SOL.3.96.1010524013737.18819D-100000@simpukka> p4raw-id: //depot/perl@10205
Diffstat (limited to 't')
-rwxr-xr-xt/op/method.t70
1 files changed, 59 insertions, 11 deletions
diff --git a/t/op/method.t b/t/op/method.t
index ceb39be7da..4e4ac97c19 100755
--- a/t/op/method.t
+++ b/t/op/method.t
@@ -9,7 +9,7 @@ BEGIN {
@INC = '../lib';
}
-print "1..56\n";
+print "1..72\n";
@A::ISA = 'B';
@B::ISA = 'C';
@@ -176,20 +176,68 @@ test(defined(@{"unknown_package::ISA"}) ? "defined" : "undefined", "undefined");
test(A2->foo(), "foo");
}
-{
- test(do { use Config; eval 'Config->foo()';
- $@ =~ /^\QCan't locate object method "foo" via package "Config" at/ ? 1 : $@}, 1);
- test(do { use Config; eval '$d = bless {}, "Config"; $d->foo()';
- $@ =~ /^\QCan't locate object method "foo" via package "Config" at/ ? 1 : $@}, 1);
-}
+## This test was totally misguided. It passed before only because the
+## code to determine if a package was loaded used to look for the hash
+## %Foo::Bar instead of the package Foo::Bar:: -- and Config.pm just
+## happens to export %Config.
+# {
+# test(do { use Config; eval 'Config->foo()';
+# $@ =~ /^\QCan't locate object method "foo" via package "Config" at/ ? 1 : $@}, 1);
+# test(do { use Config; eval '$d = bless {}, "Config"; $d->foo()';
+# $@ =~ /^\QCan't locate object method "foo" via package "Config" at/ ? 1 : $@}, 1);
+# }
+
+
+# test error messages if method loading fails
+test(do { eval '$e = bless {}, "E::A"; E::A->foo()';
+ $@ =~ /^\QCan't locate object method "foo" via package "E::A" at/ ? 1 : $@}, 1);
+test(do { eval '$e = bless {}, "E::B"; $e->foo()';
+ $@ =~ /^\QCan't locate object method "foo" via package "E::B" at/ ? 1 : $@}, 1);
+test(do { eval 'E::C->foo()';
+ $@ =~ /^\QCan't locate object method "foo" via package "E::C" (perhaps / ? 1 : $@}, 1);
+
+test(do { eval 'UNIVERSAL->E::D::foo()';
+ $@ =~ /^\QCan't locate object method "foo" via package "E::D" (perhaps / ? 1 : $@}, 1);
+test(do { eval '$e = bless {}, "UNIVERSAL"; $e->E::E::foo()';
+ $@ =~ /^\QCan't locate object method "foo" via package "E::E" (perhaps / ? 1 : $@}, 1);
+
+$e = bless {}, "E::F"; # force package to exist
+test(do { eval 'UNIVERSAL->E::F::foo()';
+ $@ =~ /^\QCan't locate object method "foo" via package "E::F" at/ ? 1 : $@}, 1);
+test(do { eval '$e = bless {}, "UNIVERSAL"; $e->E::F::foo()';
+ $@ =~ /^\QCan't locate object method "foo" via package "E::F" at/ ? 1 : $@}, 1);
+
+# TODO: we need some tests for the SUPER:: pseudoclass
+
+# failed method call or UNIVERSAL::can() should not autovivify packages
+test( $::{"Foo::"} || "none", "none"); # sanity check 1
+test( $::{"Foo::"} || "none", "none"); # sanity check 2
-test(do { eval 'E->foo()';
- $@ =~ /^\QCan't locate object method "foo" via package "E" (perhaps / ? 1 : $@}, 1);
-test(do { eval '$e = bless {}, "E"; $e->foo()';
- $@ =~ /^\QCan't locate object method "foo" via package "E" (perhaps / ? 1 : $@}, 1);
+test( UNIVERSAL::can("Foo", "boogie") ? "yes":"no", "no" );
+test( $::{"Foo::"} || "none", "none"); # still missing?
+
+test( Foo->UNIVERSAL::can("boogie") ? "yes":"no", "no" );
+test( $::{"Foo::"} || "none", "none"); # still missing?
+
+test( Foo->can("boogie") ? "yes":"no", "no" );
+test( $::{"Foo::"} || "none", "none"); # still missing?
+
+test( eval 'Foo->boogie(); 1' ? "yes":"no", "no" );
+test( $::{"Foo::"} || "none", "none"); # still missing?
+
+test(do { eval 'Foo->boogie()';
+ $@ =~ /^\QCan't locate object method "boogie" via package "Foo" (perhaps / ? 1 : $@}, 1);
+
+eval 'sub Foo::boogie { "yes, sir!" }';
+test( $::{"Foo::"} ? "ok" : "none", "ok"); # should exist now
+test( Foo->boogie(), "yes, sir!");
+
+# TODO: universal.t should test NoSuchPackage->isa()/can()
# This is actually testing parsing of indirect objects and undefined subs
# print foo("bar") where foo does not exist is not an indirect object.
# print foo "bar" where foo does not exist is an indirect object.
eval { sub AUTOLOAD { "ok ", shift, "\n"; } };
print nonsuch(++$cnt);
+
+print "# $cnt tests completed\n";