File: assert_keys_are.t

package info (click to toggle)
libcarp-assert-more-perl 2.9.0-1
  • links: PTS, VCS
  • area: main
  • in suites: forky, sid, trixie
  • size: 376 kB
  • sloc: perl: 2,482; makefile: 2
file content (91 lines) | stat: -rw-r--r-- 2,455 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
#!perl

use warnings;
use strict;

use Test::More tests => 15;

use Carp::Assert::More;

use Test::Exception;

my $af = qr/Assertion failed!\n/;
my $failed = qr/${af}Failed:/;

BASICS: {
    my $monolith = {
        depth  => 1,
        width  => 4,
        height => 9,
    };
    my $shaq = {
        firstname => 'Shaquille',
        lastname  => 'O\'Neal',
        height    => 85,
    };

    my @object_keys = qw( height width depth );
    my @person_keys = qw( firstname lastname height );

    lives_ok( sub { assert_keys_are( $monolith, \@object_keys ) }, 'Monolith object has valid keys' );
    lives_ok( sub { assert_keys_are( $shaq,     \@person_keys ) }, 'Shaq object has valid keys' );
    lives_ok( sub { assert_keys_are( {}, [] ) }, 'Empty hash + empty keys works fine' );

    throws_ok(
        sub { assert_keys_are( $monolith, \@person_keys ) },
        qr/$af/,
        'Monolith fails on person keys'
    );

    throws_ok(
        sub { assert_keys_are( $monolith, [@object_keys[0..1]] ) },
        qr/$af/,
        'Hash has too many keys'
    );
    throws_ok(
        sub { assert_keys_are( $monolith, [@object_keys, 'wavelength'] ) },
        qr/$af/,
        'Hash has one key too many'
    );
    throws_ok(
        sub { assert_keys_are( $monolith, [] ) },
        qr/${af}Key "(depth|height|width)" is not a valid key\./sm,
        'Empty key list fails for non-empty object'
    );
    throws_ok(
        sub { assert_keys_are( {}, \@object_keys ) },
        qr/${af}Key "(depth|height|width)" is not in the hash\./sm,
        'Empty hash fails for non-empty key list'
    );

    throws_ok(
        sub { assert_keys_are( $monolith, {} ) },
        qr/${af}Argument for array of keys is not an arrayref\./sm,
        'Fails on a non-array list of keys'
    );

    throws_ok(
        sub { assert_keys_are( [], \@object_keys ) },
        qr/${af}Argument for hash is not a hashref\./sm,
        'Fails on a non-hashref hash'
    );

    my @keys = qw( a b c height );
    my @expected = (
        qr/Key "depth" is not a valid key/,
        qr/Key "width" is not a valid key/,
        qr/Key "a" is not in the hash/,
        qr/Key "b" is not in the hash/,
        qr/Key "c" is not in the hash/,
    );
    for my $expected ( @expected ) {
        throws_ok(
            sub { assert_keys_are( $monolith, \@keys ) },
            qr/${af}.*$expected/sm,
            "Message found: $expected"
        );
    }
}


exit 0;