This is a live mirror of the Perl 5 development currently hosted at https://github.com/perl/perl5
Remove more cruft from IO.
[perl5.git] / t / op / numconvert.t
CommitLineData
25da4f38
IZ
1#!./perl
2
3#
4# test the conversion operators
5#
6# Notations:
7#
8# "N p i N vs N N": Apply op-N, then op-p, then op-i, then reporter-N
9# Compare with application of op-N, then reporter-N
10# Right below are descriptions of different ops and reporters.
11
12# We do not use these subroutines any more, sub overhead makes a "switch"
13# solution better:
14
15# obviously, 0, 1 and 2, 3 are destructive. (XXXX 64-bit? 4 destructive too)
16
17# *0 = sub {--$_[0]}; # -
18# *1 = sub {++$_[0]}; # +
19
20# # Converters
21# *2 = sub { $_[0] = $max_uv & $_[0]}; # U
22# *3 = sub { use integer; $_[0] += $zero}; # I
23# *4 = sub { $_[0] += $zero}; # N
24# *5 = sub { $_[0] = "$_[0]" }; # P
25
26# # Side effects
27# *6 = sub { $max_uv & $_[0]}; # u
28# *7 = sub { use integer; $_[0] + $zero}; # i
29# *8 = sub { $_[0] + $zero}; # n
30# *9 = sub { $_[0] . "" }; # p
31
32# # Reporters
33# sub a2 { sprintf "%u", $_[0] } # U
34# sub a3 { sprintf "%d", $_[0] } # I
35# sub a4 { sprintf "%g", $_[0] } # N
36# sub a5 { "$_[0]" } # P
37
38BEGIN {
39 chdir 't' if -d 't';
40 @INC = '../lib';
41}
42
43use strict 'vars';
44
45c0de28 45my $max_chain = $ENV{PERL_TEST_NUMCONVERTS} || 2;
25da4f38
IZ
46
47# Bulk out if unsigned type is hopelessly wrong:
48my $max_uv1 = ~0;
49my $max_uv2 = sprintf "%u", $max_uv1 ** 6; # 6 is an arbitrary number here
50my $big_iv = do {use integer; $max_uv1 * 16}; # 16 is an arbitrary number here
51
52if ($max_uv1 ne $max_uv2 or $big_iv > $max_uv1) {
53 print "1..0\n# Unsigned arithmetic is not sane\n";
54 exit 0;
55}
56
57my $st_t = 4*4; # We try 4 initializers and 4 reporters
58
59my $num = 0;
60$num += 10**$_ - 4**$_ for 1.. $max_chain;
61$num *= $st_t;
62print "1..$num\n"; # In fact 15 times more subsubtests...
63
64my $max_uv = ~0;
65my $max_iv = int($max_uv/2);
66my $zero = 0;
67
68my $l_uv = length $max_uv;
69my $l_iv = length $max_iv;
70
71# Hope: the first digits are good
72my $larger_than_uv = substr 97 x 100, 0, $l_uv;
73my $smaller_than_iv = substr 12 x 100, 0, $l_iv;
74my $yet_smaller_than_iv = substr 97 x 100, 0, ($l_iv - 1);
75
76my @list = (1, $yet_smaller_than_iv, $smaller_than_iv, $max_iv, $max_iv + 1,
77 $max_uv, $max_uv + 1);
78unshift @list, (reverse map -$_, @list), 0; # 15 elts
79@list = map "$_", @list; # Normalize
80
81# print "@list\n";
82
83
84my @opnames = split //, "-+UINPuinp";
85
86# @list = map { 2->($_), 3->($_), 4->($_), 5->($_), } @list; # Prepare input
87
88#print "@list\n";
89#print "'@ops'\n";
90
91my $test = 1;
92my $nok;
93for my $num_chain (1..$max_chain) {
94 my @ops = map [split //], grep /[4-9]/,
95 map { sprintf "%0${num_chain}d", $_ } 0 .. 10**$num_chain - 1;
96
97 #@ops = ([]) unless $num_chain;
98 #@ops = ([6, 4]);
99
100 # print "'@ops'\n";
101 for my $op (@ops) {
102 for my $first (2..5) {
103 for my $last (2..5) {
104 $nok = 0;
105 my @otherops = grep $_ <= 3, @$op;
106 my @curops = ($op,\@otherops);
107
108 for my $num (@list) {
109 my $inpt;
110 my @ans;
111
112 for my $short (0, 1) {
113 # undef $inpt; # Forget all we had - some bugs were masked
114
115 $inpt = $num; # Try to not contaminate $num...
116 $inpt = "$inpt";
117 if ($first == 2) {
118 $inpt = $max_uv & $inpt; # U 2
119 } elsif ($first == 3) {
120 use integer; $inpt += $zero; # I 3
121 } elsif ($first == 4) {
122 $inpt += $zero; # N 4
123 } else {
124 $inpt = "$inpt"; # P 5
125 }
126
127 # Saves 20% of time - not with this logic:
128 #my $tmp = $inpt;
129 #my $tmp1 = $num;
130 #next if $num_chain > 1
131 # and "$tmp" ne "$tmp1"; # Already the coercion gives problems...
132
133 for my $curop (@{$curops[$short]}) {
134 if ($curop < 5) {
135 if ($curop < 3) {
136 if ($curop == 0) {
137 --$inpt; # - 0
138 } elsif ($curop == 1) {
139 ++$inpt; # + 1
140 } else {
141 $inpt = $max_uv & $inpt; # U 2
142 }
143 } elsif ($curop == 3) {
144 use integer; $inpt += $zero;
145 } else {
146 $inpt += $zero; # N 4
147 }
148 } elsif ($curop < 8) {
149 if ($curop == 5) {
150 $inpt = "$inpt"; # P 5
151 } elsif ($curop == 6) {
152 $max_uv & $inpt; # u 6
153 } else {
154 use integer; $inpt + $zero;
155 }
156 } elsif ($curop == 8) {
157 $inpt + $zero; # n 8
158 } else {
159 $inpt . ""; # p 9
160 }
161 }
162
163 if ($last == 2) {
164 $inpt = sprintf "%u", $inpt; # U 2
165 } elsif ($last == 3) {
166 $inpt = sprintf "%d", $inpt; # I 3
167 } elsif ($last == 4) {
168 $inpt = sprintf "%g", $inpt; # N 4
169 } else {
170 $inpt = "$inpt"; # P 5
171 }
172 push @ans, $inpt;
173 }
174 $nok++,
175 print "# '$ans[0]' ne '$ans[1]',\t$num\t=> @opnames[$first,@{$curops[0]},$last] vs @opnames[$first,@{$curops[1]},$last]\n"
176 if $ans[0] ne $ans[1];
177 }
178 print "not " if $nok;
179 print "ok $test\n";
180 #print $txt if $nok;
181 $test++;
182 }
183 }
184 }
185}