This is a live mirror of the Perl 5 development currently hosted at https://github.com/perl/perl5
In taint.t, add violates_taint(), to replace a repeated is()/like() pair.
[perl5.git] / t / op / push.t
1 #!./perl
2
3 @tests = split(/\n/, <<EOF);
4 0 3,                    0 1 2,          3 4 5 6 7
5 0 0 a b c,              ,               a b c 0 1 2 3 4 5 6 7
6 8 0 a b c,              ,               0 1 2 3 4 5 6 7 a b c
7 7 0 6.5,                ,               0 1 2 3 4 5 6 6.5 7
8 1 0 a b c d e f g h i j,,               0 a b c d e f g h i j 1 2 3 4 5 6 7
9 0 1 a,                  0,              a 1 2 3 4 5 6 7
10 1 6 x y z,              1 2 3 4 5 6,    0 x y z 7
11 0 7 x y z,              0 1 2 3 4 5 6,  x y z 7
12 1 7 x y z,              1 2 3 4 5 6 7,  0 x y z
13 4,                      4 5 6 7,        0 1 2 3
14 -4,                     4 5 6 7,        0 1 2 3
15 EOF
16
17 print "1..", 13 + 2*@tests, "\n";
18 die "blech" unless @tests;
19
20 @x = (1,2,3);
21 push(@x,@x);
22 if (join(':',@x) eq '1:2:3:1:2:3') {print "ok 1\n";} else {print "not ok 1\n";}
23 push(@x,4);
24 if (join(':',@x) eq '1:2:3:1:2:3:4') {print "ok 2\n";} else {print "not ok 2\n";}
25
26 # test for push/pop intuiting @ on array
27 {
28     no warnings 'deprecated';
29     push(x,3);
30 }
31 if (join(':',@x) eq '1:2:3:1:2:3:4:3') {print "ok 3\n";} else {print "not ok 3\n";}
32 {
33     no warnings 'deprecated';
34     pop(x);
35 }
36 if (join(':',@x) eq '1:2:3:1:2:3:4') {print "ok 4\n";} else {print "not ok 4\n";}
37
38 # test for push/pop on arrayref
39 push(\@x,5);
40 if (join(':',@x) eq '1:2:3:1:2:3:4:5') {print "ok 5\n";} else {print "not ok 5\n";}
41 pop(\@x);
42 if (join(':',@x) eq '1:2:3:1:2:3:4') {print "ok 6\n";} else {print "not ok 6\n";}
43
44 # test autovivification
45 push @$undef1, 1, 2, 3;
46 if (join(':',@$undef1) eq '1:2:3') {print "ok 7\n";} else {print "not ok 7\n";}
47 push $undef2, 1, 2, 3;
48 if (join(':',@$undef2) eq '1:2:3') {print "ok 8\n";} else {print "not ok 8\n";}
49
50 # test constant
51 use constant CONST_ARRAYREF => [qw/a b c/];
52 push CONST_ARRAYREF(), qw/d e f/;
53 if (join(':',@{CONST_ARRAYREF()}) eq 'a:b:c:d:e:f') {print "ok 9\n";} else {print "not ok 9\n";}
54
55 # test implicit dereference errors
56 eval "push 42, 0, 1, 2, 3";
57 if ( $@ && $@ =~ /must be array/ ) {print "ok 10\n"} else {print "not ok 10 # \$\@ = $@\n"}
58
59 $hashref = { };
60 eval { push $hashref, 0, 1, 2, 3 };
61 if ( $@ && $@ =~ /Not an ARRAY reference/ ) {print "ok 11\n"} else {print "not ok 11 # \$\@ = $@\n"}
62
63 $test = 12;
64
65 # test context
66 {
67     my($first, $second) = ([1], [2]);
68     sub two_things { return +($first, $second) }
69     push two_things(), 3;
70     if (join(':',@$first) eq '1' &&
71         join(':',@$second) eq '2:3') {
72         print "ok ",$test++,"\n";
73     }
74     else {
75         print "not ok ",$test++," got: \$first = [ @$first ]; \$second = [ @$second ];\n";
76     }
77
78     push @{ two_things() }, 4;
79     if (join(':',@$first) eq '1' &&
80         join(':',@$second) eq '2:3:4') {
81         print "ok ",$test++,"\n";
82     }
83     else {
84         print "not ok ",$test++," got: \$first = [ @$first ]; \$second = [ @$second ];\n";
85     }
86 }
87
88 foreach $line (@tests) {
89     ($list,$get,$leave) = split(/,\t*/,$line);
90     ($pos, $len, @list) = split(' ',$list);
91     @get = split(' ',$get);
92     @leave = split(' ',$leave);
93     @x = (0,1,2,3,4,5,6,7);
94     $y = [0,1,2,3,4,5,6,7];
95     if (defined $len) {
96         @got = splice(@x, $pos, $len, @list);
97         @got2 = splice($y, $pos, $len, @list);
98     }
99     else {
100         @got = splice(@x, $pos);
101         @got2 = splice($y, $pos);
102     }
103     if (join(':',@got) eq join(':',@get) &&
104         join(':',@x) eq join(':',@leave)) {
105         print "ok ",$test++,"\n";
106     }
107     else {
108         print "not ok ",$test++," got: @got == @get left: @x == @leave\n";
109     }
110     if (join(':',@got2) eq join(':',@get) &&
111         join(':',@$y) eq join(':',@leave)) {
112         print "ok ",$test++,"\n";
113     }
114     else {
115         print "not ok ",$test++," got (arrayref): @got2 == @get left: @$y == @leave\n";
116     }
117 }
118
119 1;  # this file is require'd by lib/tie-stdpush.t