use v6-alpha;
use Test;
# test that packages work. Note that the correspondance between type
# objects as obtained via the ::() syntax and packages is only hinted
# at in L
plan 23;
# 4 different ways to be imported
# L
{
package Test1 {
sub ns { "Test1" }
sub pkg { $?PACKAGE }
sub test1_export is export { "export yourself!" }
}
package Test2 {
sub ns { "Test2" }
sub pkg { $?PACKAGE }
our $scalar = 42;
}
package Test3 {
sub pkg { $?PACKAGE }
}
}
use t::packages::Test;
# test that all the functions are in the right place
# sanity test
# L
is($?PACKAGE, "Main", 'The Main $?PACKAGE was not broken by any declarations');
# block level
is(Test1::ns, "Test1", "block-level package declarations");
cmp_ok(Test1::pkg, &infix:<===>, ::Test1::, 'block-level $?PACKAGE var');
dies_ok { test1_export() }, "export was not imported implicitly";
# declared packages
is(Test2::ns, "Test2", "declared package");
cmp_ok(Test2::pkg, &infix:<===>, ::Test2::, 'declared package $?PACKAGE');
# string eval'ed packages
is(Test3::pkg, ::Test3::, 'eval\'ed package $?PACKAGE');
cmp_ok(Test3::pkg, &infix:<===>, ::Test3::, 'eval\'ed package type object');
# this one came from t/packages/Test.pm
is(t::packages::Test::ns, "t::packages::Test", "loaded package");
cmp_ok(t::packages::Test::pkg, &infix:<===>, ::t::packages::Test::, 'loaded package $?PACKAGE object');
my $x;
lives_ok { $x = test_export() }, "export was imported successfully";
is($x, "party island", "exported OK");
# exports
dies_ok { ns() }, "no ns() leaked";
# now the lexical / file level packages...
my $pkg;
dies_ok { $pkg = Our::Package::pkg },
"Can't see `our' packages out of scope", :todo;
lives_ok { $pkg = t::packages::Test::get_our_pkg() },
"Package in scope can see `our' package declarations";
is($pkg, Our::Package, 'correct $?PACKAGE');
ok(!($pkg === ::Our::Package),
'not the same as global type object', :todo);
# oh no, how do we get to that object, then?
# perhaps %t::packages::Test:: ?
dies_ok { $pkg = t::packages::Test::cant_see_pkg() },
"can't see package declared out of scope", :todo;
lives_ok { $pkg = t::packages::Test::my_pkg() },
"can see package declared in same scope";
is($pkg, ::My::Package::, 'correct $?PACKAGE');
ok($pkg !=== ::*My::Package::, 'not the same as global type object');
# Check temporization of variables in external packages
{
{
ok(eval('temp $Test2::scalar; 1'), "parse for temp package vars", :todo);
$Test2::scalar++;
}
is($Test2::scalar, 42, 'temporization of external package variables', :todo);
}