summaryrefslogtreecommitdiff
path: root/ext
diff options
context:
space:
mode:
authorNicholas Clark <nick@ccl4.org>2010-11-04 15:32:26 +0000
committerNicholas Clark <nick@ccl4.org>2010-11-04 15:32:26 +0000
commitffc7a570f934ace596cb7858d1243e5ba4a850df (patch)
treea9f5cecbc477c4361870ebaf189c2b0e92b5a8c7 /ext
parent0e4a84deaa95967a479c4ba292f52f944552cb1f (diff)
downloadperl-ffc7a570f934ace596cb7858d1243e5ba4a850df.tar.gz
Some tests for B::walkoptree.
Quite likely coverage isn't that good, but some tests are better than none. More tests welcome.
Diffstat (limited to 'ext')
-rw-r--r--ext/B/t/walkoptree.t60
1 files changed, 60 insertions, 0 deletions
diff --git a/ext/B/t/walkoptree.t b/ext/B/t/walkoptree.t
new file mode 100644
index 0000000000..9757f88071
--- /dev/null
+++ b/ext/B/t/walkoptree.t
@@ -0,0 +1,60 @@
+#!./perl
+
+BEGIN {
+ unshift @INC, 't';
+ require Config;
+ if (($Config::Config{'extensions'} !~ /\bB\b/) ){
+ print "1..0 # Skip -- Perl configured without B module\n";
+ exit 0;
+ }
+}
+
+use warnings;
+use strict;
+use Test::More;
+
+BEGIN { use_ok( 'B' ); }
+
+# Somewhat minimal tests.
+
+my %seen;
+
+sub B::OP::pie {
+ my $self = shift;
+ return ++$seen{$self->name};
+}
+
+my %debug;
+sub B::OP::walkoptree_debug {
+ my $self = shift;
+ return ++$debug{$self->name};
+}
+
+my $victim = sub {
+ # This gives us a substcont, which gets to the second recursive call
+ # point (in the if statement in the XS code)
+ $_[0] =~ s/(a)/$1/;
+ # PMOP_pmreplroot(cPMOPo) is NULL for this
+ $_[0] =~ s/(b)//;
+ # This gives an OP_PUSHRE
+ split /c/;
+};
+
+is (B::walkoptree_debug, 0, 'walkoptree_debug() is 0');
+B::walkoptree(B::svref_2object($victim)->ROOT, "pie");
+foreach (qw(substcont pushre split leavesub)) {
+ is ($seen{$_}, 1, "Our victim had a $_ OP");
+}
+is_deeply ([keys %debug], [], 'walkoptree_debug was not called');
+
+B::walkoptree_debug(2);
+is (B::walkoptree_debug, 1, 'walkoptree_debug() is 1');
+%seen = ();
+
+B::walkoptree(B::svref_2object($victim)->ROOT, "pie");
+foreach (qw(substcont pushre split leavesub)) {
+ is ($seen{$_}, 1, "Our victim had a $_ OP");
+}
+is_deeply (\%debug, \%seen, 'walkoptree_debug was called correctly');
+
+done_testing();