File: TestCaseSet.pm

package info (click to toggle)
zonemaster-cli 8.0.1-1
  • links: PTS, VCS
  • area: main
  • in suites: forky, sid
  • size: 512 kB
  • sloc: perl: 3,288; makefile: 17
file content (271 lines) | stat: -rw-r--r-- 6,409 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
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
259
260
261
262
263
264
265
266
267
268
269
270
271
package Zonemaster::CLI::TestCaseSet;
use 5.014;
use warnings;
use utf8;

use Carp qw( croak );

=head1 NAME

    Zonemaster::CLI::TestCaseSet - Manage and modify Zonemaster test case selections

=head1 SYNOPSIS

    use Zonemaster::CLI::TestCaseSet;

    # Define the names of the available test modules and their test cases
    my $schema = {
        alpha => [qw( alpha01 alpha02 alpha03 )],
        beta  => [qw( beta01 beta02 )],
    };

    # Construct an initial selection of test cases
    my $selection = Zonemaster::CLI::TestCaseSet->new(
        [qw( alpha01 alpha02 alpha03 beta01 )],
        $schema,
    );

    # Parse and apply a modifier expression
    my @modifiers = Zonemaster::CLI::TestCaseSet->parse_modifier_expr( '-alpha+alpha02' );
    while ( @modifiers ) {
        my ( $op, $term ) = splice @modifiers, 0, 2;
        $selection->apply_modifier( $op, $term )
          or die "Error: Unrecognized term '$term'.\n";
    }

    # Output final test case selection
    print join( ' ', $selection->to_list );    # alpha02 beta01

=head1 DESCRIPTION

Zonemaster::CLI::TestCaseSet represents a mutable selection of test cases,
together with an immutable schema defining available test modules and their
associated test cases.

The schema is defined as a mapping of test module names to their associated test
case names.

The selection can be adjusted using modifier expressions.

=head2 MODIFIER EXPRESSIONS

A modifier expression describes a change to the current selection.
Expressions combine terms using operators, e.g., C<'-alpha+alpha02'>.

These operators are supported:

=over 4

=item C<'+'> (union)

Add test cases to the current selection.
The set of test cases to add is the expansion of C<$term>.

=item C<'-'> (difference)

Remove test cases from the current selection.
The set of test cases to remove is the expansion of C<$term>.

=item C<''> (replace)

Replace the current selection.
The new selection is the set of test cases expanded from C<$term>.

=back

Terms expand into sets of test cases in one of three ways:

=over 4

=item C<all>

Expands to all available test cases defined by the schema.

=item Test module name

Expands to all test cases associated with the test module.

=item Test case name

Expands directly to the specified test case itself.
Test cases may be specified plainly (e.g., C<Case10>) or fully qualified
(module/testcase, e.g., C<Case/Case10>).

=back

Term matching is case-insensitive.

=cut

=head1 CONSTRUCTORS

=head2 new( $selection, $schema )

Construct a new TestCaseSet object.

=over 4

=item C<$selection> (arrayref)

Initial selection of test case names.

=item C<$schema> (hashref)

A hash mapping test module names to arrays of their associated test case names.

=back

Dies if:
- Any test case name in C<$schema> is repeated.
- C<$selection> contains names not found in C<$schema>.

=cut

sub new {
    my ( $class, $selection, $schema ) = @_;

    my %cases = map { lc $_ => 1 } map { @{$_} } values %$schema;
    for my $case ( @$selection ) {
        if ( !exists $cases{ lc $case } ) {
            croak "Unrecognized initial test case '$case'";
        }
    }

    my $obj = {
        _selection => { map { lc $_ => 1 } @$selection },
        _terms     => _get_schema_terms( $schema ),
    };

    bless $obj, $class;

    return $obj;
}

=head1 CLASS METHODS

parse_modifier_expr( $modifier_expr )

Parse a string containing a modifier expression and returns a list of
alternating operators and terms.

The returned list always starts with an operator.

For example, parsing C<'-alpha+beta02'> returns:

    ('-', 'alpha', '+', 'beta02')

=cut

sub parse_modifier_expr {
    my ( $class, $modifier_expr ) = @_;

    my @modifiers;
    for my $op_and_term ( split /(?=[+-])/, $modifier_expr ) {
        $op_and_term =~ /([+-]?)(.*)/;
        my ( $op, $term ) = ( $1, $2 );

        push @modifiers, ( $op, $term );
    }

    return @modifiers;
}

=head1 INSTANCE METHODS

=head2 apply_modifier( $operator, $term )

Update the selection using the given operator and term.

Returns true if successful, or false if the term could not be expanded based on
the schema.

Dies if the operator is invalid.

=head3 Example:

    $selection->apply_modifier('+', 'beta') 
        or die "Unrecognized term";

=cut

sub apply_modifier {
    my ( $self, $op, $term ) = @_;

    my $cases_ref = $self->{_terms}{ lc $term };

    if ( !defined $cases_ref ) {
        return 0;
    }

    if ( $op eq '' ) {
        $self->{_selection} = {};
        $op = '+';
    }

    if ( $op eq '-' ) {
        for my $case ( @$cases_ref ) {
            delete $self->{_selection}{$case};
        }
    }
    elsif ( $op eq '+' ) {
        for my $case ( @$cases_ref ) {
            $self->{_selection}{$case} = 1;
        }
    }
    else {
        croak "Unrecognized operator '$op'";
    }

    return 1;
} ## end sub apply_modifier

=head2 to_list

Return a lowercase list of the currently selected test case names.

=cut

sub to_list {
    my ( $self ) = @_;

    return sort keys %{ $self->{_selection} };
}

sub _get_schema_terms {
    my ( $schema ) = @_;

    my $terms = {};
    $terms->{all} = [];

    for my $module ( keys %$schema ) {
        if ( lc $module eq 'all' ) {
            croak "test module name must not be 'all'";
        }
        if ( $module =~ qr{/} ) {
            croak "test module name contains forbidden character '/': '$module'";
        }
        if ( exists $terms->{ lc $module } ) {
            croak "found test module with same name as another test case or test module: '$module'";
        }
        $terms->{ lc $module } = [];
        for my $case ( @{ $schema->{$module} } ) {
            if ( lc $case eq 'all' ) {
                croak "test case name must not be 'all'";
            }
            if ( $case =~ qr{/} ) {
                croak "test case name contains forbidden character '/': '$case'";
            }
            if ( exists $terms->{ lc $case } ) {
                croak "found test case with same name as another test case or test module: '$case'";
            }
            $terms->{ lc $case } = [$case];
            $terms->{ lc "$module/$case" } = [$case];
            push @{ $terms->{ lc $module } }, $case;
            push @{ $terms->{all} },          $case;
        }
    } ## end for my $module ( keys %$schema)

    return $terms;
} ## end sub _get_schema_terms

1;