File: random.combinations.t

package info (click to toggle)
libemail-address-list-perl 0.06-1
  • links: PTS, VCS
  • area: main
  • in suites: bullseye, buster
  • size: 228 kB
  • sloc: perl: 1,601; makefile: 2
file content (60 lines) | stat: -rw-r--r-- 1,548 bytes parent folder | download | duplicates (5)
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
use strict;
use warnings;

use Test::More;
use JSON ();

use_ok('Email::Address::List');

my @data;
foreach my $file (qw(t/data/RFC5233.single.valid.json t/data/RFC5233.single.obs.json)) {
    my $obsolete = $file =~ /\bobs\b/? 1 : 0;

    open my $fh, '<', $file;
    push @data, @{ JSON->new->decode( do { local $/; <$fh> } ) };
    close $fh;
}

diag "srand is ". (my $seed = int rand( 2**16-1 ));
srand($seed);

for (1..100) {
    my @list;
    push @list, $data[ rand @data ] for 1..3;

    my $line = join ', ', map $_->{'mailbox'}, @list;
    note $line;

    my @res = Email::Address::List->parse( $line );
    is scalar @res, scalar @list;

    for (my $i = 0; $i < @list; $i++) {
        my $test = $list[$i];
        my $v = $res[$i]{'value'};
        is $v->phrase, $test->{'display-name'}, 'correct value';
        is $v->address, $test->{'address'}, 'correct value';
        is $v->comment, join( ' ', @{$test->{'comments'}} ), 'correct value';
    }
}

for (1..100) {
    my @list;
    push @list, $data[ rand @data ] for 1..3;

    my $line = join ",\n ,", '', (map $_->{'mailbox'}, @list), '';
    note $line;

    my @res = Email::Address::List->parse( $line );
    is scalar @res, scalar @list;

    for (my $i = 0; $i < @list; $i++) {
        my $test = $list[$i];
        my $v = $res[$i]{'value'};
        is $v->phrase, $test->{'display-name'}, 'correct value';
        is $v->address, $test->{'address'}, 'correct value';
        is $v->comment, join( ' ', @{$test->{'comments'}} ), 'correct value';
    }
}

done_testing;