4 # Tests derived from Japhs.
9 print "1..0 # Skip: EBCDIC\n"; # For now, until someone has time.
19 # ./test.pl does real evilness by jumping to a label.
20 # This function copies the skip from ./test, omitting the goto.
24 my $n = @_ ? shift : 1;
27 print STDOUT "ok $test # skip: $why\n";
34 # ./test.pl doesn't give use 'notok', so we make it here.
37 my ($pass, $name, @mess) = @_;
38 _ok(!$pass, _where(), $name, @mess);
41 my $JaPH = "Just another Perl Hacker";
42 my $JaPh = "Just another Perl hacker";
43 my $JaPH_n = "Just another Perl Hacker\n";
44 my $JaPh_n = "Just another Perl hacker\n";
45 my $JaPH_s = "Just another Perl Hacker ";
46 my $JaPh_s = "Just another Perl hacker ";
47 my $JaPH_c = "Just another Perl Hacker,";
48 my $JaPh_c = "Just another Perl hacker,";
53 my $out = sprintf "Just another Perl Hacker";
59 my @primes = (2, 3, 7, 13, 53, 101, 557, 1429);
60 my @composites = (4, 10, 25, 32, 75, 143, 1333, 1728);
62 my %primeness = ((map {$_ => 1} @primes),
63 (map {$_ => 0} @composites));
65 while (my ($num, $is_prime) = each %primeness) {
66 my $comment = "$num is " . ($is_prime ? "prime." : "composite.");
68 my $sub = $is_prime ? "ok" : "notok";
70 &$sub (( 1 x $num) !~ /^1?$|^(11+?)\1+$/, $comment);
71 &$sub (( 0 x $num) !~ m 0^\0?$|^(\0\0+?)\1+$0, $comment);
72 &$sub (("m" x $num) !~ m m^\m?$|^(\m\m+?)\1+$mm, $comment);
77 { # Some platforms use different quoting techniques.
78 # I do not have access to those platforms to test
79 # things out. So, we'll skip things....
80 if ($^O eq 'MSWin32' ||
83 skip "Your platform quotes differently.", 3;
88 $expected =~ s/ /\n/g;
90 is (runperl (switches => [qw /'-weprint<<EOT;' -eJust -eanother
91 -ePerl -eHacker -eEOT/],
93 $expected, "Multiple -e switches");
95 is (runperl (switches => [q !'-wle$_=<<EOT;y/\n/ /;print;'!,
96 qw ! -eJust -eanother -ePerl -eHacker -eEOT!],
98 $JaPH . " \n", "Multiple -e switches");
100 is (runperl (switches => [qw !-wl!],
101 progs => [qw !print qq-@{[ qw+ Just
102 another Perl Hacker +]}-!],
104 $JaPH_n, "Multiple -e switches");
108 if ($^O eq 'MSWin32' ||
111 skip "Your platform quotes differently.", 1;
114 is (runperl (switches => [qw /-sweprint --/,
115 "-_='Just another Perl Hacker'"],
118 $JaPH, 'setting $_ via -s');
122 my $datafile = "datatmp000";
123 1 while -f ++ $datafile;
124 END {unlink_all $datafile}
126 open MY_DATA, "> $datafile" or die "Failed to open $datafile: $!";
127 print MY_DATA << " --";
135 close MY_DATA or die "Failed to close $datafile: $!\n";
142 if (/^#{7}(?:\s+(.*))?/) {
143 push @progs => {COMMENT => $1 || '',
151 elsif (/^(COMMENT|CODE|ARGS|SWITCHES|EXPECT|SKIP|SKIP_OS)
154 $progs [-1] {$key} = '' unless exists $progs [-1] {$key};
155 next unless defined $2;
162 if (ref ($progs [-1] {$key})) {
163 push @{$progs [-1] {$key}} => $_;
166 $progs [-1] {$key} .= $_;
170 foreach my $program (@progs) {
171 if (exists $program -> {SKIP}) {
172 chomp $program -> {SKIP};
173 skip $program -> {SKIP}, 1;
177 chomp @{$program -> {SKIP_OS}};
178 if (@{$program -> {SKIP_OS}}) {
179 if (grep {$^O eq $_} @{$program -> {SKIP_OS}}) {
180 skip "Your OS uses different quoting.", 1;
185 map {s/\$datafile/$datafile/} @{$program -> {ARGS}};
186 $program -> {EXPECT} = $JaPH unless exists $program -> {EXPECT};
187 $program -> {EXPECT} =~ s/\$JaPH_s\b/$JaPH_s/g;
188 $program -> {EXPECT} =~ s/\$JaPh_c\b/$JaPh_c/g;
189 $program -> {EXPECT} =~ s/\$JaPh\b/$JaPh/g;
190 chomp ($program -> {EXPECT}, @{$program -> {SWITCHES}},
191 @{$program -> {ARGS}});
192 fresh_perl_is ($program -> {CODE},
193 $program -> {EXPECT},
194 {switches => $program -> {SWITCHES},
195 args => $program -> {ARGS},
197 $program -> {COMMENT});
202 my $progfile = "progtmp000";
203 1 while -f ++ $progfile;
204 END {unlink_all $progfile}
206 my @programs = (<< ' --', << ' --');
207 #!./perl -- # No trailing newline after the last line!
208 BEGIN{$|=$SIG{__WARN__}=sub{$_=$_[0];y-_- -;print/(.)"$/;seek _,-open(_
209 ,"+<$0"),2;truncate _,tell _;close _;exec$0}}//rekcaH_lreP_rehtona_tsuJ
211 #!./perl -- # Remove trailing newline!
212 BEGIN{$SIG{__WARN__}=sub{$_=pop;y-_- -;print/".*(.)"/;
213 truncate$0,-1+-s$0;exec$0;}}//rekcaH_lreP_rehtona_tsuJ
218 # VMS needs extensions for files to be executable,
219 # but the Japhs above rely on $0 being exactly the
220 # filename of the program.
221 skip "VMS", 2 * @programs;
226 unless (defined $Config {useperlio}) {
227 skip "Uuseperlio", 2 * @programs;
232 foreach my $program (@programs) {
233 open my $fh => "> $progfile" or die "Failed to open $progfile: $!\n";
235 close $fh or die "Failed to close $progfile: $!\n";
237 chmod 0755 => $progfile or die "Failed to chmod $progfile: $!\n";
238 my $command = "./$progfile";
239 $command .= ' 2>&1' unless $^O eq 'MacOS';
240 if ( $^O eq 'qnx' ) {
241 skip "#!./perl not supported in QNX4";
242 skip "#!./perl not supported in QNX4";
244 my $output = `$command`;
246 is ($output, $JaPH, "Self correcting code $i");
248 $output = `$command`;
249 is ($output, "", "Self corrected code $i");
256 ####### Funky loop 1.
257 $_ = q ;4a75737420616e6f74686572205065726c204861636b65720as;;
258 for (s;s;s;s;s;s;s;s;s;s;s;s)
259 {s;(..)s?;qq qprint chr 0x$1 and \161 ssq;excess;}
261 ####### Funky loop 2.
262 $_ = q *4a75737420616e6f74686572205065726c204861636b65720a*;
263 for ($*=******;$**=******;$**=******) {$**=*******s*..*qq}
268 ####### Funky loop 3.
269 $_ = q *4a75737420616e6f74686572205065726c204861636b65720a*;
270 for ($*=******;$**=******;$**=******) {$**=*******s*..*qq}
275 ####### Funky loop 4.
276 $_ = q ?4a75737420616e6f74686572205065726c204861636b65720as?;??;
278 {??;s;(..)s?;qq ?print chr 0x$1 and \161 ss?;excess;??}
279 SKIP: Abuses a fixed bug.
281 ####### Funky loop 5.
282 for (s??4a75737420616e6f74686572205065726c204861636b65720as?;??;??)
283 {s?(..)s\??qq \?print chr 0x$1 and q ss\??excess}
284 SKIP: Abuses a fixed bug.
286 ####### Funky loop 6.
287 $a = q 94a75737420616e6f74686572205065726c204861636b65720a9 and
288 ${qq$\x5F$} = q 97265646f9 and s g..g;
289 qq e\x63\x68\x72\x20\x30\x78$&eggee;
290 {eval if $a =~ s e..eqq qprint chr 0x$& and \x71\x20\x71\x71qeexcess}
293 @r=reverse(M=>(0)x99=>CM=>(0)x399=>D=>(0)x99=>CD=>(
294 0)x299=>C=>(0)x9=>XC=>(0)x39=>L=>(0)x9=>XL=>(0)x29=>X=>IX=>0=>0=>0=>V=>IV=>0=>0
295 =>I=>$==-2449231+gm_julian_day+time);do{until($=<$#r){$_.=$r[$#r];$=-=$#r}for(;
296 !$r[--$#r];){}}while$=;$,="\x20";print+$_=>September=>MCMXCIII=>=>=>=>=>=>=>=>
300 SKIP: Times::JulianDay not part of the main distribution.
303 sub _'_{$_'_=~s/$a/$_/}map{$$_=$Z++}Y,a..z,A..X;*{($_::_=sprintf+q=%X==>"$A$Y".
304 "$b$r$T$u")=~s~0~O~g;map+_::_,U=>T=>L=>$Z;$_::_}=*_;sub _{print+/.*::(.*)/s};;;
305 *{chr($b*$e)}=*_'_;*__=*{chr(1<<$e)}; # Perl 5.6.0 broke this...
306 _::_(r(e(k(c(a(H(__(l(r(e(P(__(r(e(h(t(o(n(a(__(t(us(J())))))))))))))))))))))))
307 EXPECT: Just__another__Perl__Hacker
310 $"=$,;*{;qq{@{[(A..Z)[qq[0020191411140003]=~m[..]g]]}}}=*_=sub{print/::(.*)/};
311 $\=$/;q<Just another Perl Hacker>->();
314 $"=$,;*{;qq{@{[(A..Z)[qq[0020191411140003]=~m[..]g]]}}}=*_;
315 sub _ {push @_ => /::(.*)/s and goto &{ shift}}
316 sub shift {print shift; @_ and goto &{+shift}}
317 Hack ("Just", "Perl ", " ano", "er\n", "ther "); # YYYYMMDD
320 $, = " "; sub AUTOLOAD {($AUTOLOAD =~ /::(.*)/) [0];}
321 print+Just (), another (), Perl (), Hacker ();
323 ####### Look ma! No letters!
324 $@="\145\143\150\157\040\042\112\165\163\164\040\141\156\157\164".
325 "\150\145\162\040\120\145\162\154\040\110\141\143\153\145\162".
326 "\042\040\076\040\057\144\145\166\057\164\164\171";`$@`
329 ####### sprintf fun 1.
330 sub f{sprintf$_[0],$_[1],$_[2]}print f('%c%s',74,f('%c%s',117,f('%c%s',115,f(
331 '%c%s',116,f('%c%s',32,f('%c%s',97,f('%c%s',0x6e,f('%c%s',111,f('%c%s',116,f(
332 '%c%s',104,f('%c%s',0x65,f('%c%s',114,f('%c%s',32,f('%c%s',80,f('%c%s',101,f(
333 '%c%s',114,f('%c%s',0x6c,f('%c%s',32,f('%c%s',0x48,f('%c%s',97,f('%c%s',99,f(
334 '%c%s',107,f('%c%s',101,f('%c%s',114,f('%c%s',10,)))))))))))))))))))))))))
336 ####### sprintf fun 2.
337 sub f{sprintf'%c%s',$_[0],$_[1]}print f(74,f(117,f(115,f(116,f(32,f(97,
338 f(110,f(111,f(116,f(104,f(0x65,f(114,f(32,f(80,f(101,f(114,f(0x6c,f(32,
339 f(0x48,f(97,f(99,f(107,f(101,f(114,f(10,q ff)))))))))))))))))))))))))
342 %0=map{local$_=$_;reverse+chop,$_}ABC,ACB,BAC,BCA,CAB,CBA;$_=3 .AC;1while+
343 s/(\d+)((.)(.))/($0=$1-1)?"$0$3$0{$2}1$2$0$0{$2}$4":"$3 => $4\n"/xeg;print
398 -Mstrict='}); print "Just another Perl Hacker"; ({'
405 srand 123456;$-=rand$_--=>@[[$-,$_]=@[[$_,$-]for(reverse+1..(@[=split
406 //=>"IGrACVGQ\x02GJCWVhP\x02PL\x02jNMP"));print+(map{$_^q^"^}@[),"\n"
407 SKIP: Solaris specific.
409 ####### print and __PACKAGE__
410 package Just_another_Perl_Hacker; sub print {($_=$_[0])=~ s/_/ /g;
411 print } sub __PACKAGE__ { &
412 print ( __PACKAGE__)} &
417 * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * *
418 / / / / / / / / / / / / / / / / / / / / / / / / / / / / / / / / /
419 % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % %;
420 BEGIN {% % = ($ _ = " " => print "Just another Perl Hacker\n")}
423 sub J::FETCH{Just }$_.='print+"@{[map';sub J::TIESCALAR{bless\my$J,J}
424 sub A::FETCH{another}$_.='{tie my($x),$';sub A::TIESCALAR{bless\my$A,A}
425 sub P::FETCH{Perl }$_.='_;$x}qw/J A P';sub P::TIESCALAR{bless\my$P,P}
426 sub H::FETCH{Hacker }$_.=' H/]}\n"';eval;sub H::TIESCALAR{bless\my$H,H}
429 package Z;use overload'""'=>sub{$b++?Hacker:another};
430 sub TIESCALAR{bless\my$y=>Z}sub FETCH{$a++?Perl:Just}
431 $,=$";my$x=tie+my$y=>Z;print$y,$x,$y,$x,"\n";#Abigail
435 sub A::TIESCALAR{bless\my$x=>A};package B;@q[0..3]=qw/Hacker Perl
436 another Just/;use overload'""'=>sub{pop @q};sub A::FETCH{bless\my
437 $y=>B}; tie my $shoe => qq 'A';print "$shoe $shoe $shoe $shoe\n";
440 sub A::TIESCALAR{bless\my$x=>'A'};package B;@q=qw/Hacker Perl
441 another Just/;use overload'""',sub{pop @q};sub A::FETCH{bless
442 \my $y=>B};tie my$shoe=>'A';print"$shoe $shoe $shoe $shoe\n";
445 tie $" => A; $, = " "; $\ = "\n"; @a = ("") x 2; print map {"@a"} 1 .. 4;
446 sub A::TIESCALAR {bless \my $A => A} # Yet Another silly JAPH by Abigail
447 sub A::FETCH {@q = qw /Just Another Perl Hacker/ unless @q; shift @q}
448 SKIP: Pending a bug fix.
450 ####### Prototype fun 1
451 sub camel (^#87=i@J&&&#]u'^^s]#'#={123{#}7890t[0.9]9@+*`"'***}A&&&}n2o}00}t324i;
452 h[{e **###{r{+P={**{e^^^#'#i@{r'^=^{l+{#}H***i[0.9]&@a5`"':&^;&^,*&^$43##@@####;
453 c}^^^&&&k}&&&}#=e*****[]}'r####'`=437*{#};::'1[0.9]2@43`"'*#==[[.{{],,,1278@#@);
454 print+((($llama=prototype'camel')=~y|+{#}$=^*&[0-9]i@:;`"',.| |d)&&$llama."\n");
455 SKIP: Abuses a fixed bug.
457 ####### Prototype fun 2
458 print prototype sub "Just another Perl Hacker" {};
460 ####### Prototype fun 3
461 sub _ "Just another Perl Hacker"; print prototype \&_
465 ${"@_"} = "/"; split // => eval join "+" => 1 .. 7;
466 *{"@_"} = sub {foreach (sort keys %_) {print "$_ $_{$_} "}};
467 %{"@_"} = %_ = (Just => another => Perl => Hacker); &{%{%_}};
471 $" = "/"; split // => eval join "+" => 1 .. 7;
472 *{"@_"} = sub {foreach (sort keys %_) {print "$_ $_{$_} "}};
473 %_ = (Just => another => Perl => Hacker); &{%_};
477 $" = "/"; split $, => eval join "+" => 1 .. 7;
478 *{"@_"} = sub {foreach (sort keys %_) {print "$_ $_{$_} "}};
479 %{"@_"} = %_ = (Just => another => Perl => Hacker); &{%{%_}};
482 ####### Here documents 1
483 $_ = "\x3C\x3C\x45\x4F\x54"; s/<<EOT/<<EOT/e; print;
484 Just another Perl Hacker
487 ####### Here documents 2
488 $_ = "\x3C\x3C\x45\x4F\x54";
489 print if s/<<EOT/<<EOT/e;
490 Just another Perl Hacker
493 ####### Here documents 3
494 $_ = "\x3C\x3C\x45\x4F\x54" and s/<<EOT/<<EOT/e and print;
495 Just another Perl Hacker
498 ####### Here documents 4
499 $_ = "\x3C\x3C\x45\x4F\x54\n" and s/<<EOT/<<EOT/ee and print;
500 "Just another Perl Hacker"
503 ####### Self modifying code 1
504 $_ = "goto F.print chop;\n=rekcaH lreP rehtona tsuJ";F1:eval
507 ####### Overloaded constants 1
508 BEGIN {$^H {q} = sub {pop and pop and print pop}; $^H = 2**4.2**12}
509 "Just "; "another "; "Perl "; "Hacker";
512 ####### Overloaded constants 2
513 BEGIN {$^H {q} = sub {$_ [1] =~ y/S-ZA-IK-O/q-tc-fe-m/d; $_ [1]}; $^H = 0x28100}
514 print "Just another PYTHON hacker\n";
517 ####### Overloaded constants 3
518 BEGIN {$^H {join "" => ("a" .. "z") [8, 13, 19, 4, 6, 4, 17]} = sub
519 {["", "Just ", "another ", "Perl ", "Hacker\n"] -> [shift]};
520 $^H = hex join "" => reverse map {int ($_ / 2)} 0 .. 4}
523 ####### Overloaded constants 4
524 BEGIN {$^H {join "" => ("a" .. "z") [8, 13, 19, 4, 6, 4, 17]} = sub
525 {["", "Just ", "another ", "Perl ", "Hacker"] -> [shift]};
526 $^H = hex join "" => reverse map {int ($_ / 2)} 0 .. 4}
527 print 1, 2, 3, 4, "\n";
529 ####### Overloaded constants 5
530 BEGIN {my $x = "Knuth heals rare project\n";
531 $^H {integer} = sub {my $y = shift; $_ = substr $x => $y & 0x1F, 1;
532 $y > 32 ? uc : lc}; $^H = hex join "" => 2, 1, 1, 0, 0}
533 print 52,2,10,23,16,8,1,19,3,6,15,12,5,49,21,14,9,11,36,13,22,32,7,18,24;
536 print v74.117.115.116.32;
537 print v97.110.111.116.104.101.114.32;
538 print v80.101.114.108.32;
539 print v72.97.99.107.101.114.10;
542 print 74.117.115.116.32;
543 print 97.110.111.116.104.101.114.32;
544 print 80.101.114.108.32;
545 print 72.97.99.107.101.114.10;
548 print v74.117.115.116.32, v97.110.111.116.104.101.114.32,
549 v80.101.114.108.32, v72.97.99.107.101.114.10;
552 print 74.117.115.116.32, 97.110.111.116.104.101.114.32,
553 80.101.114.108.32, 72.97.99.107.101.114.10;
556 print v74.117.115.116.32.97.110.111.116.104.101.114.
557 v32.80.101.114.108.32.72.97.99.107.101.114.10;
560 print 74.117.115.116.32.97.110.111.116.104.101.114.
561 32.80.101.114.108.32.72.97.99.107.101.114.10;
563 ####### Symbolic references.
564 map{${+chr}=chr}map{$_=>$_^ord$"}$=+$]..3*$=/2;
565 print "$J$u$s$t $a$n$o$t$h$e$r $P$e$r$l $H$a$c$k$e$r\n";
570 $; # The return of the lone dollar?
571 {Just=>another=>Perl=>Hacker=>} # Bare block?
573 print%; # No right operand for %?
576 @;=split//=>"Joel, Preach sartre knuth\n";$;=chr 65;%;=map{$;++=>$_}
577 0,22,13,16,5,14,21,1,23,11,2,7,12,6,8,15,3,19,24,14,10,20,18,17,4,25
582 $;=$";$;{Just=>another=>Perl=>Hacker=>}=$/;print%;
585 $_ = "\112\165\163\1648\141\156\157\164\150\145\1628\120\145"
586 . "\162\1548\110\141\143\153\145\162\0128\177" and &japh;
587 sub japh {print "@_" and return if pop; split /\d/ and &japh}
590 sub _ {$_ = shift and y/b-yB-Y/a-yB-Y/ xor !@ _?
592 print and push @_ => shift and goto &{(caller (0)) [3]}}
593 split // => "KsvQtbuf fbsodpmu\ni flsI " xor & _
596 :$:=~s:$":Just$&another$&:;$:=~s:
597 :Perl$"Hacker$&:;chop$:;print$:#:
601 -:;another Perl Hacker
609 -:;another Perl Hacker
611 $:;$:=~y:;::d;print+Just.$:
614 s[$,][join$,,(split$,,($!=85))[(q[0006143730380126152532042307].
615 q[41342211132019313505])=~m[..]g]]e and y[yIbp][HJkP] and print;
616 SKIP: Platform dependent.
619 eval {die ["Just another Perl Hacker"]}; print ${$@}[$#{@${@}}]
622 eval {die ["Just another Perl Hacker\n"]}; print ${$@}[$#{@${@}}]
625 eval {die ["Just another Perl Hacker"]}; print ${${@}}[$#{@{${@}}}]
628 eval {die ["Just another Perl Hacker\n"]}; print ${${@}}[$#{@{${@}}}]
631 eval {die [[qq [Just another Perl Hacker]]]};; print
632 ${${${@}}[$#{@{${@}}}]}[$#{${@{${@}}}[$#{@{${@}}}]}]
634 ####### Closure returning itself.
635 $_ = "\nrekcaH lreP rehtona tsuJ"; my $chop; $chop = sub {print chop; $chop};
636 $chop -> () -> () -> () -> () -> () -> () -> () -> () -> () -> () -> () -> ()
637 -> () -> () -> () -> () -> () -> () -> () -> () -> () -> () -> () -> () -> ()
639 ####### Special blocks 1
640 BEGIN {print "Just " }
641 CHECK {print "another "}
642 INIT {print "Perl " }
643 END {print "Hacker\n"}
645 ####### Special blocks 2
646 END {print "Hacker\n"}
647 INIT {print "Perl " }
648 CHECK {print "another "}
649 BEGIN {print "Just " }
651 ####### Recursive regex.
652 my $qr = qr/^.+?(;).+?\1|;Just another Perl Hacker;|;.+$/;
656 ####### use lib 'coderef'
657 use lib sub {($\) = split /\./ => pop; print $"};
658 eval "use Just" || eval "use another" || eval "use Perl" || eval "use Hacker";
660 Just another Perl Hacker