Tests for having multiple pipes open simultaneously.
[p5sagit/p5-mst-13.2.git] / t / op / incfilter.t
CommitLineData
bde61959 1#!./perl -w
2
3# Tests for the source filters in coderef-in-@INC
4
5BEGIN {
6 chdir 't' if -d 't';
7 @INC = qw(. ../lib);
8 unless (find PerlIO::Layer 'perlio') {
9 print "1..0 # Skip: not perlio\n";
10 exit 0;
11 }
12 require "test.pl";
13}
14use strict;
5675696b 15use Filter::Util::Call;
bde61959 16
5675696b 17plan(tests => 19);
bde61959 18
19unshift @INC, sub {
20 no warnings 'uninitialized';
21 ref $_[1] eq 'ARRAY' ? @{$_[1]} : $_[1];
22};
23
24my $fh;
25
26open $fh, "<", \'pass("Can return file handles from \@INC");';
5675696b 27do $fh or die;
bde61959 28
29my @origlines = ("# This is a blank line\n",
30 "pass('Can return generators from \@INC');\n",
31 "pass('Which return multiple lines');\n",
32 "1",
33 );
34my @lines = @origlines;
35sub generator {
36 $_ = shift @lines;
37 # Return of 0 marks EOF
38 return defined $_ ? 1 : 0;
39};
40
5675696b 41do \&generator or die;
bde61959 42
43@lines = @origlines;
44# Check that the array dereferencing works ready for the more complex tests:
5675696b 45do [\&generator] or die;
bde61959 46
47do [sub {
48 my $param = $_[1];
49 is (ref $param, 'ARRAY', "Got our parameter");
50 $_ = shift @$param;
51 return defined $_ ? 1 : 0;
52 }, ["pass('Can return generators which take state');\n",
53 "pass('And return multiple lines');\n",
5675696b 54 ]] or die;
bde61959 55
56
57open $fh, "<", \'fail("File handles and filters work from \@INC");';
58
5675696b 59do [$fh, sub {s/fail/pass/}] or die;
bde61959 60
61open $fh, "<", \'fail("File handles and filters with state work from \@INC");';
62
5675696b 63do [$fh, sub {s/$_[1]/pass/}, 'fail'] or die;
64
65print "# 2 tests with pipes from subprocesses.\n";
66
67open $fh, 'echo pass|' or die $!;
68
69do $fh or die;
70
71open $fh, 'echo fail|' or die $!;
72
73do [$fh, sub {s/$_[1]/pass/}, 'fail'] or die;
74
75sub rot13_filter {
76 filter_add(sub {
77 my $status = filter_read();
78 tr/A-Za-z/N-ZA-Mn-za-m/;
79 $status;
80 })
81}
82
83open $fh, "<", \<<'EOC';
84BEGIN {rot13_filter};
85cnff("This will rot13'ed prepend");
86EOC
87
88do $fh or die;
89
90open $fh, "<", \<<'EOC';
91ORTVA {ebg13_svygre};
92pass("This will rot13'ed twice");
93EOC
94
95do [$fh, sub {tr/A-Za-z/N-ZA-Mn-za-m/;}] or die;
96
97my $count = 32;
98sub prepend_rot13_filter {
99 filter_add(sub {
100 my $previous = defined $_ ? $_ : '';
101 # Filters should append to any existing data in $_
102 # But (logically) shouldn't filter it twice.
103 my $test = "fzrt!";
104 $_ = $test;
105 my $status = filter_read();
106 # Sadly, doing this inside the source filter causes an
107 # infinte loop
108 my $got = substr $_, 0, length $test, '';
109 is $got, $test, "Upstream didn't alter existing data";
110 tr/A-Za-z/N-ZA-Mn-za-m/;
111 $_ = $previous . $_;
112 die "Looping infinitely" unless $count--;
113 $status;
114 })
115}
116
117open $fh, "<", \<<'EOC';
118ORTVA {cercraq_ebg13_svygre};
119pass("This will rot13'ed twice");
120EOC
121
122do [$fh, sub {tr/A-Za-z/N-ZA-Mn-za-m/;}] or die;