File: 08-todo-tests.t

package info (click to toggle)
libtest-json-schema-acceptance-perl 1.029-1
  • links: PTS, VCS
  • area: main
  • in suites: forky, sid, trixie
  • size: 4,500 kB
  • sloc: perl: 831; makefile: 10
file content (161 lines) | stat: -rw-r--r-- 5,776 bytes parent folder | download
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
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
# vim: set ts=8 sts=2 sw=2 tw=100 et :
use strict;
use warnings;
use 5.020;
use stable 0.031 'postderef';
use experimental 'signatures';
no if "$]" >= 5.031009, feature => 'indirect';
no if "$]" >= 5.033001, feature => 'multidimensional';
no if "$]" >= 5.033006, feature => 'bareword_filehandles';

use Test2::API 'intercept';
use Test::More 0.88;
use Test::Deep;
use if $ENV{AUTHOR_TESTING}, 'Test::Warnings';
use Test::JSON::Schema::Acceptance;
use Test::File::ShareDir -share => { -dist => { 'Test-JSON-Schema-Acceptance' => 'share' } };

use lib 't/lib';
use SchemaParser;

my $accepter = Test::JSON::Schema::Acceptance->new(test_dir => 't/tests/subset');
my $parser = SchemaParser->new;

# bar contains only failing tests (3x3)
# baz contains only passing tests (3)
# foo contains only passing tests (3x3)

foreach my $test (
  # match tests in this file
  { todo_count => 9, todo_tests => [ { file => 'foo.json' } ],
    results => [
      { file => str('bar.json'), pass => 0, todo_fail => 0, fail => 9 },
      { file => str('baz.json'), pass => 3, todo_fail => 0, fail => 0 },
      { file => str('foo.json'), pass => 9, todo_fail => 0, fail => 0 },
    ],
  },

  # match tests in these files
  { todo_count => 9+3, todo_tests => [ { file => [ 'foo.json', 'baz.json' ] } ],
    results => [
      { file => str('bar.json'), pass => 0, todo_fail => 0, fail => 9 },
      { file => str('baz.json'), pass => 3, todo_fail => 0, fail => 0 },
      { file => str('foo.json'), pass => 9, todo_fail => 0, fail => 0 },
    ],
  },

  # match tests in any file, with this group description
  { todo_count => 3+3, todo_tests => [ { group_description => 'false schema' } ],
    results => [
      { file => str('bar.json'), pass => 0, todo_fail => 3, fail => 6 },
      { file => str('baz.json'), pass => 3, todo_fail => 0, fail => 0 },
      { file => str('foo.json'), pass => 9, todo_fail => 0, fail => 0 },
    ],
  },

  # match tests in this file with this group description
  { todo_count => 3, todo_tests => [ { file => 'foo.json', group_description => 'false schema' } ],
    results => [
      { file => str('bar.json'), pass => 0, todo_fail => 0, fail => 9 },
      { file => str('baz.json'), pass => 3, todo_fail => 0, fail => 0 },
      { file => str('foo.json'), pass => 9, todo_fail => 0, fail => 0 },
    ],
  },

  # match tests in this file with these group descriptions
  {
    todo_count => 3+3,
    todo_tests => [ { file => 'foo.json', group_description => [ 'true schema', 'false schema' ] } ],
    results => [
      { file => str('bar.json'), pass => 0, todo_fail => 0, fail => 9 },
      { file => str('baz.json'), pass => 3, todo_fail => 0, fail => 0 },
      { file => str('foo.json'), pass => 9, todo_fail => 0, fail => 0 },
    ],
  },

  # match tests in this file with this group description and test description
  { todo_count => 1, todo_tests => [ {
      file => 'foo.json',
      group_description => 'true schema',
      test_description => 'boolean false',
    } ],
    results => [
      { file => str('bar.json'), pass => 0, todo_fail => 0, fail => 9 },
      { file => str('baz.json'), pass => 3, todo_fail => 0, fail => 0 },
      { file => str('foo.json'), pass => 9, todo_fail => 0, fail => 0 },
    ],
  },

  # match tests in this file with this group description and these test descriptions
  { todo_count => 2, todo_tests => [ {
      file => 'bar.json',
      group_description => 'false schema',
      test_description => [ 'boolean true', 'boolean false' ],
    } ],
    results => [
      { file => str('bar.json'), pass => 0, todo_fail => 2, fail => 7 },
      { file => str('baz.json'), pass => 3, todo_fail => 0, fail => 0 },
      { file => str('foo.json'), pass => 9, todo_fail => 0, fail => 0 },
    ],
  },

  # match tests in any file with this group description and this test description
  { todo_count => 1+1+1, todo_tests => [ {
      group_description => 'empty schema',
      test_description => [ 'boolean true' ],
    } ],
    results => [
      { file => str('bar.json'), pass => 0, todo_fail => 1, fail => 8 },
      { file => str('baz.json'), pass => 3, todo_fail => 0, fail => 0 },
      { file => str('foo.json'), pass => 9, todo_fail => 0, fail => 0 },
    ],
  },

  # match tests in any file with any group description with this test description
  { todo_count => 3+3+1, todo_tests => [ { test_description => [ 'boolean true' ] } ],
    results => [
      { file => str('bar.json'), pass => 0, todo_fail => 3, fail => 6 },
      { file => str('baz.json'), pass => 3, todo_fail => 0, fail => 0 },
      { file => str('foo.json'), pass => 9, todo_fail => 0, fail => 0 },
    ],
  },

  # match tests with multiple specifications at once
  { todo_count => 9+3, todo_tests => [ { file => 'foo.json' }, { group_description => 'true schema' } ],
    results => [
      { file => str('bar.json'), pass => 0, todo_fail => 3, fail => 6 },
      { file => str('baz.json'), pass => 3, todo_fail => 0, fail => 0 },
      { file => str('foo.json'), pass => 9, todo_fail => 0, fail => 0 },
    ],
  },
) {
  my $todo_count = delete $test->{todo_count};
  my $events = intercept(
    sub {
      $accepter->acceptance(
        validate_data => sub ($schema, $data) {
          return $parser->validate_data($data, $schema);
        },
        %$test,
      );
    }
  );

  is(scalar(grep $_->isa('Test2::Event::Skip'), @$events), 0, 'skipped and todo_skipped no tests');
  is(
    scalar(
      grep exists $_->{assert} && (grep $_->{tag} eq 'TODO', @{$_->{amnesty} // []}),
      map $_->facet_data, @$events
    ),
    $todo_count,
    'right number of tests are marked TODO ('.$todo_count.')',
  );

  cmp_deeply(
    $accepter->results,
    $test->{results},
    'result data was populated',
  );
}

done_testing;