This is a live mirror of the Perl 5 development currently hosted at https://github.com/perl/perl5
skip failing leak test under -Dmad
[perl5.git] / t / op / join.t
CommitLineData
8d063cd8
LW
1#!./perl
2
2d7bc9fa
CK
3BEGIN {
4 chdir 't' if -d 't';
5 @INC = '../lib';
6 require './test.pl';
7}
8d063cd8 8
5e61c969
DM
9plan tests => 22;
10
8d063cd8 11@x = (1, 2, 3);
2d7bc9fa 12is( join(':',@x), '1:2:3', 'join an array with character');
8d063cd8 13
2d7bc9fa 14is( join('',1,2,3), '123', 'join list with no separator');
8d063cd8 15
2d7bc9fa 16is( join(':',split(/ /,"1 2 3")), '1:2:3', 'join implicit array with character');
c212fd85
IZ
17
18my $f = 'a';
19$f = join ',', 'b', $f, 'e';
2d7bc9fa 20is( $f, 'b,a,e', 'join list back to self, middle of list');
c212fd85
IZ
21
22$f = 'a';
23$f = join ',', $f, 'b', 'e';
2d7bc9fa 24is( $f, 'a,b,e', 'join list back to self, beginning of list');
c212fd85
IZ
25
26$f = 'a';
27$f = join $f, 'b', 'e', 'k';
2d7bc9fa 28is( $f, 'baeak', 'join back to self, self is join character');
1426bbf4
MG
29
30# 7,8 check for multiple read of tied objects
31{ package X;
32 sub TIESCALAR { my $x = 7; bless \$x };
33 sub FETCH { my $y = shift; $$y += 5 };
34 tie my $t, 'X';
35 my $r = join ':', $t, 99, $t, 99;
2d7bc9fa 36 main::is($r, '12:99:17:99', 'check for multiple read of tied objects, with separator');
1426bbf4 37 $r = join '', $t, 99, $t, 99;
2d7bc9fa 38 main::is($r, '22992799', 'check for multiple read of tied objects, w/o separator, and magic');
1426bbf4
MG
39};
40
41# 9,10 and for multiple read of undef
42{ my $s = 5;
43 local ($^W, $SIG{__WARN__}) = ( 1, sub { $s+=4 } );
44 my $r = join ':', 'a', undef, $s, 'b', undef, $s, 'c';
2d7bc9fa 45 is( $r, 'a::9:b::13:c', 'multiple read of undef, with separator');
1426bbf4 46 my $r = join '', 'a', undef, $s, 'b', undef, $s, 'c';
2d7bc9fa 47 is( $r, 'a17b21c', '... and without separator');
1426bbf4 48};
13e8c8e3
JH
49
50{ my $s = join("", chr(0x1234), chr(0xff));
2d7bc9fa 51 is( $s, "\x{1234}\x{ff}", 'join two characters with multiple bytes, get two characters');
13e8c8e3
JH
52}
53
54{ my $s = join(chr(0xff), chr(0x1234), "");
2d7bc9fa 55 is( $s, "\x{1234}\x{ff}", 'high byte character as separator, 1 multi-byte character in front');
13e8c8e3
JH
56}
57
58{ my $s = join(chr(0x1234), chr(0xff), chr(0x2345));
2d7bc9fa 59 is( $s, "\x{ff}\x{1234}\x{2345}", 'multibyte character as separator');
13e8c8e3
JH
60}
61
62{ my $s = join(chr(0xff), chr(0x1234), chr(0xfe));
2d7bc9fa 63 is( $s, "\x{1234}\x{ff}\x{fe}", 'high byte as separator, multi-byte and high byte list');
13e8c8e3
JH
64}
65
e4803c42
TS
66{ # [perl #24846] $jb2 should be in bytes, not in utf8.
67 my $b = "abc\304";
68 my $u = "abc\x{0100}";
69
70 sub join_into_my_variable {
71 my $r = join("", @_);
72 return $r;
73 }
74
2d7bc9fa
CK
75 sub byte_is {
76 use bytes;
77 return $_[0] eq $_[1] ? pass($_[2]) : fail($_[2]);
78 }
79
e4803c42
TS
80 my $jb1 = join_into_my_variable("", $b);
81 my $ju1 = join_into_my_variable("", $u);
82 my $jb2 = join_into_my_variable("", $b);
83 my $ju2 = join_into_my_variable("", $u);
84
2d7bc9fa 85 note( 'utf8 and byte checks, perl #24846' );
e4803c42 86
2d7bc9fa
CK
87 byte_is($jb1, $b);
88 is( $jb1, $b );
21703f85 89
2d7bc9fa
CK
90 byte_is($ju1, $u);
91 is( $ju1, $u );
21703f85 92
2d7bc9fa
CK
93 byte_is($jb2, $b);
94 is( $jb2, $b );
95
96 byte_is($ju2, $u);
97 is( $ju2, $u );
e4803c42 98}
2d7bc9fa 99