Upgrade to Tie::File 0.20.
[p5sagit/p5-mst-13.2.git] / t / op / local.t
index 513e063..9f977b2 100755 (executable)
@@ -1,8 +1,6 @@
 #!./perl
 
-# $RCSfile: local.t,v $$Revision: 4.1 $$Date: 92/08/07 18:28:04 $
-
-print "1..47\n";
+print "1..71\n";
 
 sub foo {
     local($a, $b) = @_;
@@ -118,9 +116,9 @@ tie @a, 'TA';
 @a = ('a', 'b', 'c');
 {
     local($a[1]) = 'foo';
-    local($a[2]) = $a[1];  # XXX LHS == RHS doesn't work yet
+    local($a[2]) = $a[2];
     print +($a[1] eq 'foo') ? "" : "not ", "ok 37\n";
-    print +($a[2] eq 'foo') ? "" : "not ", "ok 38\n";
+    print +($a[2] eq 'c') ? "" : "not ", "ok 38\n";
     @a = ();
 }
 print +($a[1] eq 'b') ? "" : "not ", "ok 39\n";
@@ -142,9 +140,9 @@ tie %h, 'TH';
 
 {
     local($h{'a'}) = 'foo';
-    local($h{'b'}) = $h{'a'};  # XXX LHS == RHS doesn't work yet
+    local($h{'b'}) = $h{'b'};
     print +($h{'a'} eq 'foo') ? "" : "not ", "ok 42\n";
-    print +($h{'b'} eq 'foo') ? "" : "not ", "ok 43\n";
+    print +($h{'b'} == 2) ? "" : "not ", "ok 43\n";
     local($h{'c'});
     delete $h{'c'};
 }
@@ -159,3 +157,89 @@ print +($h{'c'} == 3) ? "" : "not ", "ok 46\n";
 }
 print +($a[0].$a[1] eq "Xb") ? "" : "not ", "ok 47\n";
 
+# now try the same for %SIG
+
+$SIG{TERM} = 'foo';
+$SIG{INT} = \&foo;
+$SIG{__WARN__} = $SIG{INT};
+{
+    local($SIG{TERM}) = $SIG{TERM};
+    local($SIG{INT}) = $SIG{INT};
+    local($SIG{__WARN__}) = $SIG{__WARN__};
+    print +($SIG{TERM}         eq 'main::foo') ? "" : "not ", "ok 48\n";
+    print +($SIG{INT}          eq \&foo) ? "" : "not ", "ok 49\n";
+    print +($SIG{__WARN__}     eq \&foo) ? "" : "not ", "ok 50\n";
+    local($SIG{INT});
+    delete $SIG{__WARN__};
+}
+print +($SIG{TERM}     eq 'main::foo') ? "" : "not ", "ok 51\n";
+print +($SIG{INT}      eq \&foo) ? "" : "not ", "ok 52\n";
+print +($SIG{__WARN__} eq \&foo) ? "" : "not ", "ok 53\n";
+
+# and for %ENV
+
+$ENV{_X_} = 'a';
+$ENV{_Y_} = 'b';
+$ENV{_Z_} = 'c';
+{
+    local($ENV{_X_}) = 'foo';
+    local($ENV{_Y_}) = $ENV{_Y_};
+    print +($ENV{_X_} eq 'foo') ? "" : "not ", "ok 54\n";
+    print +($ENV{_Y_} eq 'b') ? "" : "not ", "ok 55\n";
+    local($ENV{_Z_});
+    delete $ENV{_Z_};
+}
+print +($ENV{_X_} eq 'a') ? "" : "not ", "ok 56\n";
+print +($ENV{_Y_} eq 'b') ? "" : "not ", "ok 57\n";
+print +($ENV{_Z_} eq 'c') ? "" : "not ", "ok 58\n";
+
+# does implicit localization in foreach skip magic?
+
+$_ = "ok 59,ok 60,";
+my $iter = 0;
+while (/(o.+?),/gc) {
+    print "$1\n";
+    foreach (1..1) { $iter++ }
+    if ($iter > 2) { print "not ok 60\n"; last; }
+}
+
+{
+    package UnderScore;
+    sub TIESCALAR { bless \my $self, shift }
+    sub FETCH { die "read  \$_ forbidden" }
+    sub STORE { die "write \$_ forbidden" }
+    tie $_, __PACKAGE__;
+    my $t = 61;
+    my @tests = (
+       "Nesting"     => sub { print '#'; for (1..3) { print }
+                              print "\n" },                    1,
+       "Reading"     => sub { print },                         0,
+       "Matching"    => sub { $x = /badness/ },                0,
+       "Concat"      => sub { $_ .= "a" },                     0,
+       "Chop"        => sub { chop },                          0,
+       "Filetest"    => sub { -x },                            0,
+       "Assignment"  => sub { $_ = "Bad" },                    0,
+       # XXX whether next one should fail is debatable
+       "Local \$_"   => sub { local $_  = 'ok?'; print },      0,
+       "for local"   => sub { for("#ok?\n"){ print } },        1,
+    );
+    while ( ($name, $code, $ok) = splice(@tests, 0, 3) ) {
+       print "# Testing $name\n";
+       eval { &$code };
+       print(($ok xor $@) ? "ok $t\n" : "not ok $t\n");
+       ++$t;
+    }
+    untie $_;
+}
+
+{
+    # BUG 20001205.22
+    my %x;
+    $x{a} = 1;
+    { local $x{b} = 1; }
+    print "not " if exists $x{b};
+    print "ok 70\n";
+    { local @x{c,d,e}; }
+    print "not " if exists $x{c};
+    print "ok 71\n"; 
+}