This is a live mirror of the Perl 5 development currently hosted at https://github.com/perl/perl5
Uncomment and fix up tests at the end of Storable's blessed.t
[perl5.git] / dist / Storable / t / utf8.t
CommitLineData
fa523c3a 1
e16e2ff8 2#!./perl -w
dd19458b 3#
e16e2ff8
NC
4# Copyright (c) 1995-2000, Raphael Manfredi
5#
6# You may redistribute only under the same terms as Perl 5, as specified
7# in the README file that comes with the distribution.
dd19458b 8#
dd19458b
JH
9
10sub BEGIN {
11 if ($] < 5.006) {
12 print "1..0 # Skip: no utf8 support\n";
13 exit 0;
14 }
48c887dd 15 unshift @INC, 't';
dd19458b 16 require Config; import Config;
0c384302 17 if ($ENV{PERL_CORE} and $Config{'extensions'} !~ /\bStorable\b/) {
dd19458b
JH
18 print "1..0 # Skip: Storable was not built\n";
19 exit 0;
20 }
372cb964 21 require 'st-dump.pl';
dd19458b
JH
22}
23
e16e2ff8 24use strict;
dd19458b
JH
25sub ok;
26
27use Storable qw(thaw freeze);
28
fa523c3a 29print "1..6\n";
dd19458b 30
e16e2ff8 31my $x = chr(1234);
dd19458b
JH
32ok 1, $x eq ${thaw freeze \$x};
33
e16e2ff8
NC
34# Long scalar
35$x = join '', map {chr $_} (0..1023);
36ok 2, $x eq ${thaw freeze \$x};
37
38# Char in the range 127-255 (probably) in utf8
39$x = chr (175) . chr (256);
40chop $x;
41ok 3, $x eq ${thaw freeze \$x};
fa523c3a
NC
42
43# Storable needs to cope if a frozen string happens to be internall utf8
44# encoded
45
46$x = chr 256;
47my $data = freeze \$x;
48ok 4, $x eq ${thaw $data};
49
50$data .= chr 256;
51chop $data;
52ok 5, $x eq ${thaw $data};
53
54
55$data .= chr 256;
56# This definately isn't valid
57eval {thaw $data};
58ok 6, $@ =~ /corrupt.*characters outside/;