This is a live mirror of the Perl 5 development currently hosted at https://github.com/perl/perl5
Upgrade to Unicode::Normalize 0.23.
[perl5.git] / t / op / magic.t
CommitLineData
8d063cd8
LW
1#!./perl
2
90ce63d5 3BEGIN {
90ce63d5
RS
4 $| = 1;
5 chdir 't' if -d 't';
20822f61 6 @INC = '../lib';
774d564b 7 $SIG{__WARN__} = sub { die "Dying on warning: ", @_ };
90ce63d5 8}
8d063cd8 9
9f1b1f2d 10use warnings;
04fee9b5 11use Config;
9f1b1f2d 12
0bee926d 13my $test = 1;
90ce63d5 14sub ok {
0bee926d
MS
15 my($ok, $info, $todo) = @_;
16
17 # You have to do it this way or VMS will get confused.
18 printf "%s $test%s\n", $ok ? "ok" : "not ok",
19 $todo ? " # TODO $todo" : '';
20
21 unless( $ok ) {
22 printf "# Failed test at line %d\n", (caller)[2];
09fdc078 23 print "# $info\n" if defined $info;
90ce63d5 24 }
0bee926d
MS
25
26 $test++;
27 return $ok;
28}
29
30sub skip {
31 my($reason) = @_;
32
33 printf "ok $test # skipped%s\n", defined $reason ? ": $reason" : '';
34
35 $test++;
36 return 1;
90ce63d5
RS
37}
38
ecce83c2 39print "1..53\n";
0bee926d 40
3e3baf6d 41$Is_MSWin32 = $^O eq 'MSWin32';
2986a63f 42$Is_NetWare = $^O eq 'NetWare';
3e3baf6d 43$Is_VMS = $^O eq 'VMS';
be708cc0
JH
44$Is_Dos = $^O eq 'dos';
45$Is_os2 = $^O eq 'os2';
46$Is_Cygwin = $^O eq 'cygwin';
47$Is_MacOS = $^O eq 'MacOS';
dc22e1c4 48$Is_MPE = $^O eq 'mpeix';
be708cc0 49
c363d00c
CB
50$PERL = ($Is_NetWare ? 'perl' :
51 ($Is_MacOS || $Is_VMS) ? $^X :
52 $Is_MSWin32 ? '.\perl' :
be708cc0 53 './perl');
68dc0745 54
39e571d4 55eval '$ENV{"FOO"} = "hi there";'; # check that ENV is inited inside eval
26f6e342
NK
56# cmd.exe will echo 'variable=value' but 4nt will echo just the value
57# -- Nikola Knezevic
8efe09f7 58if ($Is_MSWin32) { ok `set FOO` =~ /^(?:FOO=)?hi there$/; }
be708cc0 59elsif ($Is_MacOS) { ok "1 # skipped", 1; }
c363d00c 60elsif ($Is_VMS) { ok `write sys\$output f\$trnlnm("FOO")` eq "hi there\n"; }
be708cc0 61else { ok `echo \$FOO` eq "hi there\n"; }
8d063cd8 62
bf38876a 63unlink 'ajslkdfpqjsjfk';
8d063cd8 64$! = 0;
90ce63d5 65open(FOO,'ajslkdfpqjsjfk');
0bee926d 66ok $!, $!;
90ce63d5 67close FOO; # just mention it, squelch used-only-once
8d063cd8 68
be708cc0 69if ($Is_MSWin32 || $Is_NetWare || $Is_Dos || $Is_MPE || $Is_MacOS) {
2d4fcd5e 70 skip('SIGINT not safe on this platform') for 1..4;
68dc0745 71}
72else {
c363d00c
CB
73 # the next tests are done in a subprocess because sh spits out a
74 # newline onto stderr when a child process kills itself with SIGINT.
04fee9b5 75 # We use a pipe rather than system() because the VMS command buffer
c363d00c
CB
76 # would overflow with a command that long.
77
78 open( CMDPIPE, "| $PERL");
79
80 print CMDPIPE <<'END';
378cc40b 81
79072805 82 $| = 1; # command buffering
378cc40b 83
b715f106
MB
84 $SIG{"INT"} = "ok3"; kill "INT",$$; sleep 1;
85 $SIG{"INT"} = "IGNORE"; kill "INT",$$; sleep 1; print "ok 4\n";
0bee926d 86 $SIG{"INT"} = "DEFAULT"; kill "INT",$$; sleep 1; print "not ok 4\n";
79072805
LW
87
88 sub ok3 {
89 if (($x = pop(@_)) eq "INT") {
90 print "ok 3\n";
91 }
92 else {
652ed9f8 93 print "not ok 3 ($x @_)\n";
79072805
LW
94 }
95 }
96
97END
c363d00c
CB
98
99 close CMDPIPE;
100
2d4fcd5e
AJ
101 open( CMDPIPE, "| $PERL");
102 print CMDPIPE <<'END';
103
104 { package X;
105 sub DESTROY {
106 kill "INT",$$;
107 }
108 }
109 sub x {
110 my $x=bless [], 'X';
111 return sub { $x };
112 }
113 $| = 1; # command buffering
114 $SIG{"INT"} = "ok5";
115 {
116 local $SIG{"INT"}=x();
117 print ""; # Needed to expose failure in 5.8.0 (why?)
118 }
119 sleep 1;
120 delete $SIG{"INT"};
121 kill "INT",$$; sleep 1;
122 sub ok5 {
123 print "ok 5\n";
124 }
125END
126 close CMDPIPE;
bb4e15c8 127 $? >>= 8 if $^O eq 'VMS'; # POSIX status hiding in 2nd byte
2d4fcd5e
AJ
128 print $? & 0xFF ? "ok 6\n" : "not ok 6\n";
129
130 $test += 4;
68dc0745 131}
a687059c 132
68dc0745 133# can we slice ENV?
134@val1 = @ENV{keys(%ENV)};
a687059c 135@val2 = values(%ENV);
0bee926d
MS
136ok join(':',@val1) eq join(':',@val2);
137ok @val1 > 1;
90ce63d5
RS
138
139# regex vars
140'foobarbaz' =~ /b(a)r/;
0bee926d
MS
141ok $` eq 'foo', $`;
142ok $& eq 'bar', $&;
143ok $' eq 'baz', $';
144ok $+ eq 'a', $+;
90ce63d5
RS
145
146# $"
147@a = qw(foo bar baz);
0bee926d 148ok "@a" eq "foo bar baz", "@a";
90ce63d5
RS
149{
150 local $" = ',';
0bee926d 151 ok "@a" eq "foo,bar,baz", "@a";
90ce63d5 152}
a687059c 153
90ce63d5
RS
154# $;
155%h = ();
156$h{'foo', 'bar'} = 1;
0bee926d 157ok((keys %h)[0] eq "foo\034bar", (keys %h)[0]);
90ce63d5
RS
158{
159 local $; = 'x';
160 %h = ();
161 $h{'foo', 'bar'} = 1;
0bee926d 162 ok((keys %h)[0] eq 'fooxbar', (keys %h)[0]);
90ce63d5 163}
ed6116ce 164
90ce63d5 165# $?, $@, $$
dc459aad
JH
166if ($Is_MacOS) {
167 skip('$? + system are broken on MacPerl') for 1..2;
168}
169else {
170 system qq[$PERL "-I../lib" -e "use vmsish qw(hushed); exit(0)"];
171 ok $? == 0, $?;
172 system qq[$PERL "-I../lib" -e "use vmsish qw(hushed); exit(1)"];
173 ok $? != 0, $?;
174}
90ce63d5
RS
175
176eval { die "foo\n" };
0bee926d 177ok $@ eq "foo\n", $@;
90ce63d5 178
0bee926d 179ok $$ > 0, $$;
306196c3
MS
180eval { $$++ };
181ok $@ =~ /^Modification of a read-only value attempted/;
90ce63d5
RS
182
183# $^X and $0
ed37317b 184{
3e3baf6d 185 if ($^O eq 'qnx') {
7fbf1995 186 chomp($wd = `/usr/bin/fullpath -t`);
68dc0745 187 }
04fee9b5 188 elsif($Is_Cygwin || $Config{'d_procselfexe'}) {
1cab015a
EF
189 # Cygwin turns the symlink into the real file
190 chomp($wd = `pwd`);
191 $wd =~ s#/t$##;
192 }
ed344e4f
IZ
193 elsif($Is_os2) {
194 $wd = Cwd::sys_cwd();
195 }
be708cc0
JH
196 elsif($Is_MacOS) {
197 $wd = ':';
198 }
68dc0745 199 else {
200 $wd = '.';
201 }
c363d00c 202 my $perl = ($Is_MacOS || $Is_VMS) ? $^X : "$wd/perl";
ed37317b
TB
203 my $headmaybe = '';
204 my $tailmaybe = '';
68dc0745 205 $script = "$wd/show-shebang";
ed37317b
TB
206 if ($Is_MSWin32) {
207 chomp($wd = `cd`);
8ac9c18d
GS
208 $wd =~ s|\\|/|g;
209 $perl = "$wd/perl.exe";
210 $script = "$wd/show-shebang.bat";
ed37317b
TB
211 $headmaybe = <<EOH ;
212\@rem ='
213\@echo off
214$perl -x \%0
215goto endofperl
216\@rem ';
217EOH
218 $tailmaybe = <<EOT ;
219
220__END__
221:endofperl
222EOT
223 }
ed344e4f
IZ
224 elsif ($Is_os2) {
225 $script = "./show-shebang";
226 }
be708cc0
JH
227 elsif ($Is_MacOS) {
228 $script = ":show-shebang";
229 }
c363d00c
CB
230 elsif ($Is_VMS) {
231 $script = "[]show-shebang";
be708cc0 232 }
a1a0e61e 233 if ($^O eq 'os390' or $^O eq 'posix-bc' or $^O eq 'vmesa') { # no shebang
9d116dd7
JH
234 $headmaybe = <<EOH ;
235 eval 'exec ./perl -S \$0 \${1+"\$\@"}'
236 if 0;
237EOH
238 }
2eecd615 239 $s1 = "\$^X is $perl, \$0 is $script\n";
0bee926d
MS
240 ok open(SCRIPT, ">$script"), $!;
241 ok print(SCRIPT $headmaybe . <<EOB . <<'EOF' . $tailmaybe), $!;
774d564b 242#!$wd/perl
243EOB
90ce63d5
RS
244print "\$^X is $^X, \$0 is $0\n";
245EOF
0bee926d
MS
246 ok close(SCRIPT), $!;
247 ok chmod(0755, $script), $!;
c363d00c 248 $_ = ($Is_MacOS || $Is_VMS) ? `$perl $script` : `$script`;
ed344e4f 249 s/\.exe//i if $Is_Dos or $Is_Cygwin or $Is_os2;
68dc0745 250 s{\bminiperl\b}{perl}; # so that test doesn't fail with miniperl
ed37317b 251 s{is perl}{is $perl}; # for systems where $^X is only a basename
a6c40364 252 s{\\}{/}g;
0bee926d 253 ok((($Is_MSWin32 || $Is_os2) ? uc($_) eq uc($s1) : $_ eq $s1), " :$_:!=:$s1:");
ed37317b 254 $_ = `$perl $script`;
ed344e4f 255 s/\.exe//i if $Is_Dos or $Is_os2;
a6c40364 256 s{\\}{/}g;
0bee926d 257 ok((($Is_MSWin32 || $Is_os2) ? uc($_) eq uc($s1) : $_ eq $s1), " :$_:!=:$s1: after `$perl $script`");
22fc9b38 258 ok unlink($script), $!;
68dc0745 259}
ed6116ce 260
90ce63d5 261# $], $^O, $^T
0bee926d
MS
262ok $] >= 5.00319, $];
263ok $^O;
264ok $^T > 850000000, $^T;
66b1d557 265
be708cc0 266if ($Is_VMS || $Is_Dos || $Is_MacOS) {
09fdc078 267 skip("%ENV manipulations fail or aren't safe on $^O") for 1..3;
66b1d557
HM
268}
269else {
3e3baf6d 270 $PATH = $ENV{PATH};
7ddf2a0a 271 $PDL = $ENV{PERL_DESTRUCT_LEVEL} || 0;
3e3baf6d
TB
272 $ENV{foo} = "bar";
273 %ENV = ();
274 $ENV{PATH} = $PATH;
7ddf2a0a 275 $ENV{PERL_DESTRUCT_LEVEL} = $PDL || 0;
0bee926d 276 ok ($Is_MSWin32 ? (`set foo 2>NUL` eq "")
3e3baf6d
TB
277 : (`echo \$foo` eq "\n") );
278
ec00bdd8 279 $ENV{__NoNeSuCh} = "foo";
3e3baf6d 280 $0 = "bar";
26f6e342
NK
281# cmd.exe will echo 'variable=value' but 4nt will echo just the value
282# -- Nikola Knezevic
8efe09f7 283 ok ($Is_MSWin32 ? (`set __NoNeSuCh` =~ /^(?:__NoNeSuCh=)?foo$/)
ec00bdd8 284 : (`echo \$__NoNeSuCh` eq "foo\n") );
09fdc078
SR
285 if ($^O =~ /^(linux|freebsd)$/ &&
286 open CMDLINE, "/proc/$$/cmdline") {
287 chomp(my $line = scalar <CMDLINE>);
288 my $me = (split /\0/, $line)[0];
ecce83c2 289 ok($me eq $0, 'altering $0 is effective (testing with /proc/)');
09fdc078 290 close CMDLINE;
ecce83c2
JH
291 # perlbug #22811
292 my $mydollarzero = sub {
293 my($arg) = shift;
294 $0 = $arg if defined $arg;
295 my $ps = `ps -o command= -p $$`;
296 return if $?;
297 chomp $ps;
298 printf "# 0[%s]ps[%s]\n", $0, $ps;
299 $ps;
300 };
301 my $ps = $mydollarzero->("x");
302 ok(!$ps || # we allow that something goes wrong with the ps command
303 $ps eq "x", 'altering $0 is effective (testing with `ps`)');
09fdc078 304 } else {
ecce83c2 305 skip("\$0 check only on Linux and FreeBSD") for 0,1;
09fdc078 306 }
66b1d557 307}
3e3baf6d 308
c7213721 309{
a45269de
MS
310 my $ok = 1;
311 my $warn = '';
312 local $SIG{'__WARN__'} = sub { $ok = 0; $warn = join '', @_; };
78987ded 313 $! = undef;
a45269de 314 ok($ok, $warn, $Is_VMS ? "'\$!=undef' does throw a warning" : '');
78987ded
HS
315}
316
902173a3
GS
317# test case-insignificance of %ENV (these tests must be enabled only
318# when perl is compiled with -DENV_IS_CASELESS)
2986a63f 319if ($Is_MSWin32 || $Is_NetWare) {
902173a3
GS
320 %ENV = ();
321 $ENV{'Foo'} = 'bar';
322 $ENV{'fOo'} = 'baz';
0bee926d
MS
323 ok (scalar(keys(%ENV)) == 1);
324 ok exists($ENV{'FOo'});
325 ok (delete($ENV{'foO'}) eq 'baz');
326 ok (scalar(keys(%ENV)) == 0);
902173a3
GS
327}
328else {
0bee926d 329 skip('no caseless %ENV support') for 1..4;
902173a3 330}
d2c93421 331
126c71c8
YST
332{
333 no warnings 'void';
334
d2c93421
RH
335# Make sure Errno hasn't been prematurely autoloaded
336
126c71c8 337 ok !defined %Errno::;
d2c93421
RH
338
339# Test auto-loading of Errno when %! is used
340
126c71c8
YST
341 ok scalar eval q{
342 %!;
343 defined %Errno::;
344 }, $@;
345}
d2c93421
RH
346
347
348# Make sure that Errno loading doesn't clobber $!
349
350undef %Errno::;
351delete $INC{"Errno.pm"};
352
353open(FOO, "nonesuch"); # Generate ENOENT
354my %errs = %{"!"}; # Cause Errno.pm to be loaded at run-time
0bee926d 355ok ${"!"}{ENOENT};
a4268c0a 356
b0e6f864 357ok $^S == 0 && defined $^S;
0bee926d 358eval { ok $^S == 1 };
b0e6f864
RGS
359eval " BEGIN { ok ! defined \$^S } ";
360ok $^S == 0 && defined $^S;
7c36658b
MS
361
362ok ${^TAINT} == 0;
363eval { ${^TAINT} = 1 };
364ok ${^TAINT} == 0;
9aa702ec
MJD
365
366# 5.6.1 had a bug: @+ and @- were not properly interpolated
367# into double-quoted strings
368# 20020414 mjd-perl-patch+@plover.com
b64ebf53
JH
369"I like pie" =~ /(I) (like) (pie)/;
370ok "@-" eq "0 0 2 7";
371ok "@+" eq "10 1 6 10";
9aa702ec 372
f28098ff
RGS
373# Tests for the magic get of $\
374{
375 my $ok = 0;
376 # [perl #19330]
377 {
378 local $\ = undef;
379 $\++; $\++;
380 $ok = $\ eq 2;
381 }
382 ok $ok;
383 $ok = 0;
384 {
385 local $\ = "a\0b";
386 $ok = "a$\b" eq "aa\0bb";
387 }
388 ok $ok;
389}