1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 52 53 54 55 56 57 58 59 60 61 62 63 64 65 66 67 68 69 70 71 72 73 74 75 76 77 78 79 80 81 82 83 84 85 86 87 88 89 90 91 92 93 94 95 96 97 98 99 100 101 102 103 104 105 106 107 108 109 110 111 112 113 114 115 116 117 118 119 120 121 122 123 124 125 126 127 128 129 130 131 132 133 134 135 136 137 138 139 140 141 142 143 144 145 146 147 148 149 150 151 152 153 154 155 156 157 158 159 160 161 162 163 164 165 166 167 168 169 170 171 172 173 174 175 176 177 178 179 180 181 182 183 184 185 186 187 188 189 190 191 192 193 194 195 196 197 198 199 200 201 202 203 204 205 206 207 208 209 210 211 212 213 214 215 216 217
|
#!./perl
BEGIN {
chdir 't' if -d 't';
require './test.pl';
set_up_inc('../lib');
}
plan tests => 43;
@x = (1, 2, 3);
is( join(':',@x), '1:2:3', 'join an array with character');
is( join('',1,2,3), '123', 'join list with no separator');
is( join(':',split(/ /,"1 2 3")), '1:2:3', 'join implicit array with character');
my $f = 'a';
$f = join ',', 'b', $f, 'e';
is( $f, 'b,a,e', 'join list back to self, middle of list');
$f = 'a';
$f = join ',', $f, 'b', 'e';
is( $f, 'a,b,e', 'join list back to self, beginning of list');
$f = 'a';
$f = join $f, 'b', 'e', 'k';
is( $f, 'baeak', 'join back to self, self is join character');
# 7,8 check for multiple read of tied objects
{ package X;
sub TIESCALAR { my $x = 7; bless \$x };
sub FETCH { my $y = shift; $$y += 5 };
tie my $t, 'X';
my $r = join ':', $t, 99, $t, 99;
main::is($r, '12:99:17:99', 'check for multiple read of tied objects, with separator');
$r = join '', $t, 99, $t, 99;
main::is($r, '22992799', 'check for multiple read of tied objects, w/o separator, and magic');
};
# 9,10 and for multiple read of undef
{ my $s = 5;
local ($^W, $SIG{__WARN__}) = ( 1, sub { $s+=4 } );
my $r = join ':', 'a', undef, $s, 'b', undef, $s, 'c';
is( $r, 'a::9:b::13:c', 'multiple read of undef, with separator');
my $r = join '', 'a', undef, $s, 'b', undef, $s, 'c';
is( $r, 'a17b21c', '... and without separator');
};
{ my $s = join("", chr(0x1234), chr(0xff));
is( $s, "\x{1234}\x{ff}", 'join two characters with multiple bytes, get two characters');
}
{ my $s = join(chr(0xff), chr(0x1234), "");
is( $s, "\x{1234}\x{ff}", 'high byte character as separator, 1 multi-byte character in front');
}
{ my $s = join(chr(0x1234), chr(0xff), chr(0x2345));
is( $s, "\x{ff}\x{1234}\x{2345}", 'multibyte character as separator');
}
{ my $s = join(chr(0xff), chr(0x1234), chr(0xfe));
is( $s, "\x{1234}\x{ff}\x{fe}", 'high byte as separator, multi-byte and high byte list');
}
{ my $s = join('x', ());
is( $s, '', 'join should return empty string for empty list');
}
{ my $s = join('', ());
is( $s, '', 'join should return empty string for empty list and empty separator as well');
}
{ my $w;
local $SIG{__WARN__} = sub { $w = shift };
use warnings "uninitialized";
my $s = join(undef, ());
is( $s, '', 'join should return empty string for empty list, when separator is undef');
# this warning isn't normative, the implementation may choose to
# not evaluate the separator as a string if the list has fewer than
# two elements
like $w, qr/^Use of uninitialized value in join/, "should warn if separator is undef";
}
{ # [perl #24846] $jb2 should be in bytes, not in utf8.
my $b = "abc\304";
my $u = "abc\x{0100}";
sub join_into_my_variable {
my $r = join("", @_);
return $r;
}
sub byte_is {
use bytes;
return $_[0] eq $_[1] ? pass($_[2]) : fail($_[2]);
}
my $jb1 = join_into_my_variable("", $b);
my $ju1 = join_into_my_variable("", $u);
my $jb2 = join_into_my_variable("", $b);
my $ju2 = join_into_my_variable("", $u);
note( 'utf8 and byte checks, perl #24846' );
byte_is($jb1, $b);
is( $jb1, $b );
byte_is($ju1, $u);
is( $ju1, $u );
byte_is($jb2, $b);
is( $jb2, $b );
byte_is($ju2, $u);
is( $ju2, $u );
}
package o { use overload q|""| => sub { ${$_[0]}++ } }
{
my $o = bless \(my $dummy = "a"), o::;
$_ = join $o, 1..10;
is $_, "1a2a3a4a5a6a7a8a9a10", 'join, $overloaded, LIST';
is $$o, "b", 'overloading was called once on overloaded separator';
}
for(1,2) { push @_, \join "x", 1 }
isnt $_[1], $_[0],
'join(const, const) still returns a new scalar each time';
# tests from GH #21458
# simple tied variable
{
package S;
our $fetched;
sub TIESCALAR { my $x = '-'; $fetched = 0; bless \$x }
sub FETCH { my $y = shift; $fetched++; $$y }
package main;
my $t;
tie $t, 'S';
is( join( $t, a .. c ), 'a-b-c', 'tied separator' );
is( $S::fetched, 1, 'FETCH called once' );
tie $t, 'S';
is( join( $t, 'a' ), 'a', 'tied separator on single item join' );
is( $S::fetched, 0, 'FETCH not called' );
tie $t, 'S';
is( join( $t, 'a', $t, 'b', $t, 'c' ),
'a---b---c', 'tied separator also in the join arguments' );
is( $S::fetched, 3, 'FETCH called 1 + 2 times' );
}
# self-modifying tied variable
{
package SM;
our $fetched;
sub TIESCALAR { my $x = "1"; $fetched = 0; bless \$x }
sub FETCH { my $y = shift; $fetched++; $$y += 3 }
package main;
my $t;
tie $t, "SM";
is( join( $t, a .. c ), 'a4b4c', 'tied separator' );
is( $SM::fetched, 1, 'FETCH called once' );
tie $t, "SM";
is( join( $t, 'a' ), 'a', 'tied separator on single item join' );
is( $SM::fetched, 0, 'FETCH not called' );
tie $t, "SM";
is( join( $t, "a", $t, "b", $t, "c" ),
'a474b4104c', 'tied separator also in the join arguments' );
is( $SM::fetched, 3, 'FETCH called 1 + 2 times' );
}
{
# see GH #21484
my $expect = "a\x{100}\x{100}x\x{100}\x{100}b\n";
utf8::encode($expect);
fresh_perl_is(<<'CODE', $expect, {}, "modifications delim from magic should be ignored");
# The x $n here is to ensure the PV of $sep isn't a COW of some other SV
# so the PV of $sep is unlikely to change when the overload assigns to $sep.
my $n = 2;
my $sep = "\x{100}" x $n;
package MyOver {
use overload '""' => sub { $sep = "\xFF" x $n; "x" };
}
my $x = bless {}, "MyOver";
binmode STDOUT, ":utf8";
print join($sep, "a", $x, "b"), "\n";
CODE
}
{
# see GH #21484
my $expect = "x\x{100}\x{100}a\n";
utf8::encode($expect); # fresh_perl() does bytes
fresh_perl_is(<<'CODE', $expect, {}, "modifications to delim PVX shouldn't crash");
# the x $n here is to ensure $sep has it's own PV rather than sharing it
# in a COW sense, This means that when the expanded version ($n+20) is assigned
# the origin PV has been released and valgrind or ASAN can pick up the use
# of the freed buffer.
my $n = 2;
my $sep = "\x{100}" x $n;
package MyOver {
use overload '""' => sub { $sep = "\xFF" x ($n+20); "x" };
}
my $x = bless {}, "MyOver";
binmode STDOUT, ":utf8";
print join($sep, $x, "a"), "\n";
CODE
}
|