Teach B::Deparse about in-place reverse
[p5sagit/p5-mst-13.2.git] / ext / B / t / concise-xs.t
CommitLineData
c0939cee 1#!./perl
2
3# 2 purpose file: 1-test 2-demonstrate (via args, -v -a options)
4
5b493bdf 5=head1 SYNOPSIS
c0939cee 6
d51cf0c9 7To verify that B::Concise properly reports whether functions are XS,
8perl, or optimized constant subs, we test against a few core packages
9which have a stable API, and which have functions of all 3 types.
10
11=head1 WHAT IS TESTED
12
135 core packages are tested; Digest::MD5, B, B::Deparse, Data::Dumper,
14and POSIX. These have a mix of the 3 expected implementation types;
15perl, XS, and constant (optimized constant subs).
16
17%$testpkgs specifies what packages are tested; each package is loaded,
18and the stash is scanned for the function-names in that package.
19
20Each value in %$testpkgs is a hash-of-lists (HoL) whose keys are
21implementation-types and values are lists of function-names of that type.
22
23To keep these HoLs smaller and more managable, they may carry an
24additional 'dflt' => $impl_Type, which means that unnamed functions
25are expected to be of that default implementation type. Those unnamed
26functions are known from the scan of the package stash.
27
28=head1 HOW THEY'RE TESTED
29
30Each function is 'rendered' by B::Concise, and result is matched
31against regexs for each possible implementation-type. For some
32packages, some functions may be unimplemented on some platforms.
33
34To slay this maintenance dragon, the regexs used in like() match
35against renderings which indicate that there is no implementation.
36
37If a function is implemented differently on different platforms, the
38test for that function will fail on one of those platforms. These
39specific functions can be skipped by a 'skip' => [ @list ] to the HoL
40mentioned previously. See usage for skip in B's HoL, which avoids
41testing a function which doesnt exist on non-threaded builds.
c0939cee 42
5b493bdf 43=head1 OPTIONS AND ARGUMENTS
44
45C<-v> and C<-V> trigger 2 levels of verbosity.
46
47C<-a> uses Module::CoreList to run all core packages through the test, which
48gives some interesting results.
49
50C<-c> causes the expected XS/non-XS results to be marked with
d51cf0c9 51corrections, which are then reported at program END, in a form that's
52readily cut-and-pastable into this file.
53
5b493bdf 54
55C<< -r <file> >> reads a file, as written by C<-c>, and adjusts the expected
56results accordingly. The file is 'required', so @INC settings apply.
57
c0939cee 58If module-names are given as args, those packages are run through the
59test harness; this is handy for collecting further items to test, and
60may be useful otherwise (ie just to see).
61
5b493bdf 62=head1 EXAMPLES
63
5b493bdf 64=over 4
65
66=item ./perl -Ilib -wS ext/B/t/concise-xs.t -c Storable
67
68Tests Storable.pm for XS/non-XS routines, writes findings (along with
69test results) to stdout. You could edit results to produce a test
70file, as in next example
71
72=item ./perl -Ilib -wS ext/B/t/concise-xs.t -r ./storable
c0939cee 73
5b493bdf 74Loads file, and uses it to set expectations, and run tests
75
76=item ./perl -Ilib -wS ext/B/t/concise-xs.t -avc > ../foo-avc 2> ../foo-avc2
77
78Gets module list from Module::Corelist, and runs them all through the
79test. Since -c is used, this generates corrections, which are saved
80in a file, which is edited down to produce ../all-xs
81
82=item ./perl -Ilib -wS ext/B/t/concise-xs.t -cr ../all-xs > ../foo 2> ../foo2
83
84This runs the tests specified in the file created in previous example.
85-c is used again, and stdout verifies that all the expected results
86given by -r ../all-xs are now seen.
87
88Looking at ../foo2, you'll see 34 occurrences of the following error:
89
90# err: Can't use an undefined value as a SCALAR reference at
91# lib/B/Concise.pm line 634, <DATA> line 1.
92
93=back
c0939cee 94
95=cut
96
97BEGIN {
74517a3a 98 unshift @INC, 't';
c0939cee 99 require Config;
100 if (($Config::Config{'extensions'} !~ /\bB\b/) ){
101 print "1..0 # Skip -- Perl configured without B module\n";
102 exit 0;
103 }
28380c63 104 unless ($Config::Config{useperlio}) {
105 print "1..0 # Skip -- Perl configured without perlio\n";
106 exit 0;
107 }
c0939cee 108}
109
110use Getopt::Std;
111use Carp;
3cd6a7dc 112use Test::More 'no_plan';
c0939cee 113
114require_ok("B::Concise");
115
d51cf0c9 116my %matchers =
117 ( constant => qr{ (?-x: is a constant sub, optimized to a \w+)
118 |(?-x: exists in stash, but has no START) }x,
2018a5c3 119 XS => qr/ is XS code/,
120 perl => qr/ (next|db)state/,
121 noSTART => qr/ exists in stash, but has no START/,
d51cf0c9 122);
5b493bdf 123
d51cf0c9 124my $testpkgs = {
125 # packages to test, with expected types for named funcs
126
127 Digest::MD5 => { perl => [qw/ import /],
128 dflt => 'XS' },
129
130 Data::Dumper => { XS => [qw/ bootstrap Dumpxs /],
131 dflt => 'perl' },
132 B => {
c737faaf 133 dflt => 'constant', # all but 47/297
d51cf0c9 134 skip => [ 'regex_padav' ], # threaded only
135 perl => [qw(
136 walksymtable walkoptree_slow walkoptree_exec
137 timing_info savesym peekop parents objsym debug
138 compile_stats clearsym class
139 )],
140 XS => [qw(
141 warnhook walkoptree_debug walkoptree threadsv_names
142 svref_2object sv_yes sv_undef sv_no save_BEGINs
143 regex_padav ppname perlstring opnumber minus_c
144 main_start main_root main_cv init_av inc_gv hash
145 formfeed end_av dowarn diehook defstash curstash
146 cstring comppadlist check_av cchar cast_I32 bootstrap
5ce57cc0 147 begin_av amagic_generation sub_generation address
e412117e 148 ), $] > 5.009 ? ('unitcheck_av') : ()],
d51cf0c9 149 },
150
867fa1e2 151 B::Deparse => { dflt => 'perl', # 236 functions
d51cf0c9 152
153 XS => [qw( svref_2object perlstring opnumber main_start
154 main_root main_cv )],
155
e95ab0c0 156 constant => [qw/ ASSIGN CVf_LVALUE
d51cf0c9 157 CVf_METHOD LIST_CONTEXT OP_CONST OP_LIST OP_RV2SV
158 OP_STRINGIFY OPf_KIDS OPf_MOD OPf_REF OPf_SPECIAL
159 OPf_STACKED OPf_WANT OPf_WANT_LIST OPf_WANT_SCALAR
160 OPf_WANT_VOID OPpCONST_ARYBASE OPpCONST_BARE
161 OPpENTERSUB_AMPER OPpEXISTS_SUB OPpITER_REVERSED
162 OPpLVAL_INTRO OPpOUR_INTRO OPpSLICE OPpSORT_DESCEND
163 OPpSORT_INPLACE OPpSORT_INTEGER OPpSORT_NUMERIC
689e417f 164 OPpSORT_REVERSE OPpREVERSE_INPLACE OPpTARGET_MY
165 OPpTRANS_COMPLEMENT OPpTRANS_DELETE OPpTRANS_SQUASH
166 PMf_CONTINUE PMf_EVAL PMf_EXTENDED PMf_FOLD PMf_GLOBAL
167 PMf_KEEP PMf_MULTILINE PMf_ONCE PMf_SINGLELINE
d51cf0c9 168 POSTFIX SVf_FAKE SVf_IOK SVf_NOK SVf_POK SVf_ROK
d449ddce 169 SVpad_OUR SVs_RMG SVs_SMG SWAP_CHILDREN OPpPAD_STATE
aa381260 170 /, $] > 5.009 ? ('RXf_SKIPWHITE') : ('PMf_SKIPWHITE'),
171 'CVf_LOCKED', # This ends up as a constant, pre or post 5.10
172 ],
d51cf0c9 173 },
174
f9f861ec 175 POSIX => { dflt => 'constant', # all but 252/589
9b68a132 176 skip => [qw/ _POSIX_JOB_CONTROL /, # platform varying
61699fd9 177 # Might be XS or imported from Fcntl, depending on your
9b68a132 178 # perl version:
e99d581a 179 qw / S_ISBLK S_ISCHR S_ISDIR S_ISFIFO S_ISREG /,
180 # Might be XS or AUTOLOADed, depending on your perl
181 # version:
182 qw /WEXITSTATUS WIFEXITED WIFSIGNALED WIFSTOPPED
183 WSTOPSIG WTERMSIG/,
184 'int_macro_int', # Removed in POSIX 1.16
185 ],
d51cf0c9 186 perl => [qw/ import croak AUTOLOAD /],
187
188 XS => [qw/ write wctomb wcstombs uname tzset tzname
189 ttyname tmpnam times tcsetpgrp tcsendbreak
190 tcgetpgrp tcflush tcflow tcdrain tanh tan
191 sysconf strxfrm strtoul strtol strtod
192 strftime strcoll sinh sigsuspend sigprocmask
193 sigpending sigaction setuid setsid setpgid
194 setlocale setgid read pipe pause pathconf
195 open nice modf mktime mkfifo mbtowc mbstowcs
196 mblen lseek log10 localeconv ldexp lchown
197 isxdigit isupper isspace ispunct isprint
198 islower isgraph isdigit iscntrl isalpha
e99d581a 199 isalnum getcwd frexp fpathconf
d51cf0c9 200 fmod floor dup2 dup difftime cuserid ctime
201 ctermid cosh constant close clock ceil
202 bootstrap atan asin asctime acos access abort
2018a5c3 203 _exit
d51cf0c9 204 /],
205 },
2018a5c3 206
f84b4b22 207 IO::Socket => { dflt => 'constant', # 157/190
2018a5c3 208
209 perl => [qw/ timeout socktype sockopt sockname
210 socketpair socket sockdomain sockaddr_un
211 sockaddr_in shutdown setsockopt send
212 register_domain recv protocol peername
213 new listen import getsockopt croak
214 connected connect configure confess close
e412117e 215 carp bind atmark accept
216 /, $] > 5.009 ? ('blocking') : () ],
2018a5c3 217
218 XS => [qw/ unpack_sockaddr_un unpack_sockaddr_in
219 sockatmark sockaddr_family pack_sockaddr_un
220 pack_sockaddr_in inet_ntoa inet_aton
37fa5116 221 inet_ntop inet_pton
2018a5c3 222 /],
223 },
c0939cee 224};
225
226############
227
228B::Concise::compile('-nobanner'); # set a silent default
5b493bdf 229getopts('vaVcr:', \my %opts) or
c0939cee 230 die <<EODIE;
231
232usage: PERL_CORE=1 ./perl ext/B/t/concise-xs.t [-av] [module-list]
233 tests ability to discern XS funcs using Digest::MD5 package
234 -v : runs verbosely
235 -V : more verbosity
236 -a : runs all modules in CoreList
5b493bdf 237 -c : writes test corrections as a Data::Dumper expression
238 -r <file> : reads file of tests, as written by -c
468aa647 239 <args> : additional modules are loaded and tested
d51cf0c9 240 (will report failures, since no XS funcs are known apriori)
c0939cee 241
242EODIE
243 ;
244
245if (%opts) {
246 require Data::Dumper;
247 Data::Dumper->import('Dumper');
248 $Data::Dumper::Sortkeys = 1;
249}
250my @argpkgs = @ARGV;
5b493bdf 251my %report;
252
253if ($opts{r}) {
254 my $refpkgs = require "$opts{r}";
255 $testpkgs->{$_} = $refpkgs->{$_} foreach keys %$refpkgs;
468aa647 256}
5b493bdf 257
258unless ($opts{a}) {
259 unless (@argpkgs) {
260 foreach $pkg (sort keys %$testpkgs) {
261 test_pkg($pkg, $testpkgs->{$pkg});
262 }
263 } else {
264 foreach $pkg (@argpkgs) {
265 test_pkg($pkg, $testpkgs->{$pkg});
266 }
267 }
268} else {
269 corecheck();
c0939cee 270}
c0939cee 271############
272
273sub test_pkg {
d51cf0c9 274 my ($pkg, $fntypes) = @_;
275 require_ok($pkg);
c0939cee 276
d51cf0c9 277 # build %stash: keys are func-names, vals filled in below
c0939cee 278 my (%stash) = map
d51cf0c9 279 ( ($_ => 0)
280 => ( grep exists &{"$pkg\::$_"} # grab CODE symbols
c0939cee 281 => grep !/__ANON__/ # but not anon subs
d51cf0c9 282 => keys %{$pkg.'::'} # from symbol table
c0939cee 283 ));
468aa647 284
d51cf0c9 285 for my $type (keys %matchers) {
286 foreach my $fn (@{$fntypes->{$type}}) {
287 carp "$fn can only be one of $type, $stash{$fn}\n"
288 if $stash{$fn};
289 $stash{$fn} = $type;
290 }
291 }
292 # set default type for un-named functions
293 my $dflt = $fntypes->{dflt} || 'perl';
294 for my $k (keys %stash) {
295 $stash{$k} = $dflt unless $stash{$k};
296 }
297 $stash{$_} = 'skip' foreach @{$fntypes->{skip}};
c0939cee 298
5b493bdf 299 if ($opts{v}) {
d51cf0c9 300 diag("fntypes: " => Dumper($fntypes));
301 diag("$pkg stash: " => Dumper(\%stash));
c0939cee 302 }
d51cf0c9 303 foreach my $fn (reverse sort keys %stash) {
304 next if $stash{$fn} eq 'skip';
305 my $res = checkXS("${pkg}::$fn", $stash{$fn});
306 if ($res ne '1') {
307 push @{$report{$pkg}{$res}}, $fn;
5b493bdf 308 }
c0939cee 309 }
310}
311
312sub checkXS {
d51cf0c9 313 my ($func_name, $want) = @_;
314
315 croak "unknown type $want: $func_name\n"
316 unless defined $matchers{$want};
c0939cee 317
318 my ($buf, $err) = render($func_name);
d51cf0c9 319 my $res = like($buf, $matchers{$want}, "$want sub:\t $func_name");
320
321 unless ($res) {
322 # test failed. return type that would give success
323 for my $m (keys %matchers) {
324 return $m if $buf =~ $matchers{$m};
325 }
c0939cee 326 }
d51cf0c9 327 $res;
c0939cee 328}
329
330sub render {
331 my ($func_name) = @_;
332
333 B::Concise::reset_sequence();
334 B::Concise::walk_output(\my $buf);
335
336 my $walker = B::Concise::compile($func_name);
337 eval { $walker->() };
338 diag("err: $@ $buf") if $@;
339 diag("verbose: $buf") if $opts{V};
340
341 return ($buf, $@);
342}
343
344sub corecheck {
345 eval { require Module::CoreList };
346 if ($@) {
347 warn "Module::CoreList not available on $]\n";
348 return;
349 }
5b493bdf 350 my $mods = $Module::CoreList::version{'5.009002'};
351 $mods = [ sort keys %$mods ];
c0939cee 352 print Dumper($mods);
353
5b493bdf 354 foreach my $pkgnm (@$mods) {
c0939cee 355 test_pkg($pkgnm);
356 }
357}
358
5b493bdf 359END {
360 if ($opts{c}) {
d51cf0c9 361 $Data::Dumper::Indent = 1;
362 print "Corrections: ", Dumper(\%report);
5b493bdf 363
364 foreach my $pkg (sort keys %report) {
d51cf0c9 365 for my $type (keys %matchers) {
366 print "$pkg: $type: @{$report{$pkg}{$type}}\n"
367 if @{$report{$pkg}{$type}};
368 }
5b493bdf 369 }
5b493bdf 370 }
371}
372
c0939cee 373__END__