This is a live mirror of the Perl 5 development currently hosted at https://github.com/perl/perl5
warnings.pm - Clarify scoping of $^W examples
[perl5.git] / lib / sort.t
CommitLineData
84d4ea48
JH
1#!./perl
2
be6228f7
RGS
3# This tests the behavior of sort() under the different 'use sort' forms.
4# Algorithm by John P. Linderman.
5
be6228f7
RGS
6my ($BigWidth, $BigEnough, $RootWidth, $ItemFormat, @TestSizes, $WellSoaked);
7
84d4ea48
JH
8BEGIN {
9 chdir 't' if -d 't';
be6228f7
RGS
10 @INC = qw(../lib);
11 $BigWidth = 6; # Digits in $BigEnough-1
12 $BigEnough = 10**$BigWidth; # Largest array we'll attempt
13 $RootWidth = int(($BigWidth+1)/2); # Digits in sqrt($BigEnough-1)
14 $ItemFormat = "%0${RootWidth}d%0${BigWidth}d"; # Array item format
15 @TestSizes = (0, 1, 2); # Small special cases
16 # Testing all the way up to $BigEnough takes too long
17 # for casual testing. There are some cutoffs (~256)
18 # in pp_sort that should be tested, but 10_000 is ample.
19 $WellSoaked = 10_000; # <= $BigEnough
20 for (my $ts = 3; $ts < $WellSoaked; $ts *= 10**(1/3)) {
21 push(@TestSizes, int($ts)); # about 3 per decade
22 }
84d4ea48
JH
23}
24
be6bd645
AD
25use strict;
26use warnings;
27
be6228f7 28use Test::More tests => @TestSizes * 2 # sort() tests
e2091bb6
Z
29 * 3 # number of pragmas to test
30 + 2; # tests for sort::current
84d4ea48 31
be6228f7
RGS
32# Generate array of specified size for testing sort.
33#
34# We ensure repeated items, where possible, by drawing the $size items
35# from a pool of size sqrt($size). Each randomly chosen item is
36# tagged with the item index, so we can detect original input order,
37# and reconstruct the original array order.
38
39sub genarray {
40 my $size = int(shift); # fractions not welcome
41 my ($items, $i);
42 my @a;
43
44 if ($size < 0) { $size = 0; } # avoid complexity with sqrt
45 elsif ($size > $BigEnough) { $size = $BigEnough; }
46 $#a = $size - 1; # preallocate array
47 $items = int(sqrt($size)); # number of distinct items
48 for ($i = 0; $i < $size; ++$i) {
49 $a[$i] = sprintf($ItemFormat, int($items * rand()), $i);
50 }
51 return \@a;
52}
53
54
55# Check for correct order (including stability)
56
57sub checkorder {
58 my $aref = shift;
59 my $status = ''; # so far, so good
28e9118f 60 my ($i, $disorder);
be6228f7
RGS
61
62 for ($i = 0; $i < $#$aref; ++$i) {
28e9118f
JL
63 # Equality shouldn't happen, but catch it in the contents check
64 next if ($aref->[$i] le $aref->[$i+1]);
65 $disorder = (substr($aref->[$i], 0, $RootWidth) eq
66 substr($aref->[$i+1], 0, $RootWidth)) ?
67 "Instability" : "Disorder";
68 # Keep checking if merely unstable... disorder is much worse.
69 $status =
70 "$disorder at element $i between $aref->[$i] and $aref->[$i+1]";
71 last unless ($disorder eq "Instability");
be6228f7
RGS
72 }
73 return $status;
74}
75
76
77# Verify that the two array refs reference identical arrays
78
79sub checkequal {
80 my ($aref, $bref) = @_;
81 my $status = '';
82 my $i;
83
84 if (@$aref != @$bref) {
85 $status = "Sizes differ: " . @$aref . " vs " . @$bref;
86 } else {
87 for ($i = 0; $i < @$aref; ++$i) {
88 next if ($aref->[$i] eq $bref->[$i]);
89 $status = "Element $i differs: $aref->[$i] vs $bref->[$i]";
90 last;
91 }
92 }
93 return $status;
94}
95
96
97# Test sort on arrays of various sizes (set up in @TestSizes)
98
99sub main {
7b9ef140 100 my ($dothesort, $expect_unstable) = @_;
be6228f7
RGS
101 my ($ts, $unsorted, @sorted, $status);
102 my $unstable_num = 0;
103
104 foreach $ts (@TestSizes) {
105 $unsorted = genarray($ts);
106 # Sort only on item portion of each element.
107 # There will typically be many repeated items,
108 # and their order had better be preserved.
7b9ef140 109 @sorted = $dothesort->(sub { substr($a, 0, $RootWidth)
be6228f7 110 cmp
7b9ef140 111 substr($b, 0, $RootWidth) }, $unsorted);
be6228f7
RGS
112 $status = checkorder(\@sorted);
113 # Put the items back into the original order.
114 # The contents of the arrays had better be identical.
115 if ($expect_unstable && $status =~ /^Instability/) {
116 $status = '';
117 ++$unstable_num;
118 }
119 is($status, '', "order ok for size $ts");
7b9ef140 120 @sorted = $dothesort->(sub { substr($a, $RootWidth)
be6228f7 121 cmp
7b9ef140 122 substr($b, $RootWidth) }, \@sorted);
be6228f7
RGS
123 $status = checkequal(\@sorted, $unsorted);
124 is($status, '', "contents ok for size $ts");
125 }
126 if ($expect_unstable) {
127 ok($unstable_num > 0, 'Instability ok');
128 }
84d4ea48
JH
129}
130
0e1d050c 131# Test with no pragma yet loaded. Stability is expected from default sort.
7b9ef140 132main(sub { sort {&{$_[0]}} @{$_[1]} }, 0);
be6228f7 133
0e1d050c
JL
134# Verify that we have eliminated the segfault that could be triggered
135# by invoking a sort as part of a comparison routine.
136# No need for an explicit test. If we don't segfault, we're good.
137
138{
139 sub dumbsort {
140 my ($a, $b) = @_;
141 use sort qw( defaults stable );
142 my @ignore = sort (5,4,3,2,1);
143 return $a <=> $b;
144 }
e2091bb6 145 use sort qw( defaults stable );
0e1d050c
JL
146 my @nested = sort { dumbsort($a,$b) } (3,2,2,1);
147}
148
7b9ef140 149{
e2091bb6 150 use sort qw(stable);
7b9ef140 151 my $sort_current; BEGIN { $sort_current = sort::current(); }
e2091bb6 152 is($sort_current, 'stable', 'sort::current for stable');
7b9ef140
RH
153 main(sub { sort {&{$_[0]}} @{$_[1]} }, 0);
154}
7a8ff2dd
JL
155
156# Tests added to check "defaults" subpragma, and "no sort"
157
7b9ef140 158{
7a8ff2dd 159 use sort qw(defaults stable);
7b9ef140
RH
160 my $sort_current; BEGIN { $sort_current = sort::current(); }
161 is($sort_current, 'stable', 'sort::current after defaults stable');
f4f44d65 162 main(sub { sort {&{$_[0]}} @{$_[1]} }, 0);
7b9ef140 163}