1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
|
#!/usr/bin/perl -wT
use strict;
use lib 't/lib';
use Test::More tests => 14;
use TAP::Parser;
use TAP::Parser::IteratorFactory;
sub tap_to_lines {
my $string = shift;
my @lines = ( $string =~ /.*\n/g );
return \@lines;
}
my $tap = <<'END_TAP';
1..4
ok 1 - input file opened
... this is junk
not ok first line of the input valid # todo some data
# this is a comment
ok 3 - read the rest of the file
not ok 4 - this is a real failure
Bail out! We ran out of foobar.
not ok 5
END_TAP
my $factory = TAP::Parser::IteratorFactory->new;
my $parser = TAP::Parser->new(
{ stream => $factory->make_iterator( tap_to_lines($tap) ),
}
);
# results() is sane?
# check the test plan
my $result = $parser->next();
# TEST
ok $result->is_plan, 'We should have a plan';
# a normal, passing test
my $test = $parser->next();
# TEST
ok $test->is_test, '... and a test';
# junk lines should be preserved
my $unknown = $parser->next();
# TEST
ok $unknown->is_unknown, '... and an unknown line';
# a failing test, which also happens to have a directive
my $failed = $parser->next();
# TEST
ok $failed->is_test, '... and another test';
# comments
my $comment = $parser->next();
# TEST
ok $comment->is_comment, '... and a comment';
# another normal, passing test
$test = $parser->next();
# TEST
ok $test->is_test, '... and another test';
# a failing test
$failed = $parser->next();
# TEST
ok $failed->is_test, '... and yet another test';
# ok 5 # skip we have no description
# skipped test
my $bailout = $parser->next();
# TEST
ok $bailout->is_bailout, 'And finally we should have a bailout';
# TEST
is $bailout->as_string, 'We ran out of foobar.',
'... and as_string() should return the explanation';
# TEST
is( $bailout->raw, 'Bail out! We ran out of foobar.',
'... and raw() should return the explanation'
);
# TEST
is( $bailout->explanation, 'We ran out of foobar.',
'... and it should have the correct explanation'
);
my $more_tap = "1..1\nok 1 - input file opened\n";
my $second_parser = TAP::Parser->new(
{ stream => $factory->make_iterator( [ split( /\n/, $more_tap ) ] ),
}
);
$result = $second_parser->next();
# TEST
ok $result->is_plan(), "Result is not the leftover line";
$result = $second_parser->next();
# TEST
ok $result->is_test(), "Result is a test";
# TEST
ok $result->is_ok(), "The event has passed";
|