File: import.t

package info (click to toggle)
libtest-exports-perl 1-2
  • links: PTS, VCS
  • area: main
  • in suites: bookworm, forky, sid, trixie
  • size: 104 kB
  • sloc: perl: 354; makefile: 2
file content (184 lines) | stat: -rw-r--r-- 4,653 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
#!/usr/bin/perl

use strict;
use warnings;

use Test::Tester;
use Test::More;

use Test::Exports;

{
    package t::Import::OK;
    sub import { 1 }
}
{
    package t::Import::False;
    sub import { return }
}
{
    package t::Import::Die;
    # include \n to avoid matching 'at...line...'
    sub import { die "Bad import\n" }
}

check_test
    sub { import_ok "t::Import::OK", [], "import OK" },
    { ok => 1, name => "import OK" },
    "import_ok successful import";

check_test
    sub { import_ok "t::Import::False", [], "import false" },
    { ok => 1, name => "import false" },
    "import_ok false import";

my $finished_eval;
check_test
    sub {
        eval {
            import_ok "t::Import::Die", [], "import die";
            $finished_eval = 1;
        };
    },
    # extra depth for the eval{}
    { ok => 0, name => "import die", depth => 2, diag => <<DIAG },
t::Import::Die->import() failed:
Bad import

DIAG
    "import_ok dying import";

ok $finished_eval, "import_ok caught exception";

check_test
    sub { import_nok "t::Import::OK", [], "import OK" },
    { ok => 0, name => "import OK", diag => <<DIAG },
t::Import::OK->import() succeeded where it should have failed.
DIAG
    "import_nok successful import";

check_test
    sub { import_nok "t::Import::False", [], "import false" },
    { ok => 0, name => "import false", diag => <<DIAG },
t::Import::False->import() succeeded where it should have failed.
DIAG
    "import_nok false import";

$finished_eval = 0;
check_test
    sub { 
        eval {
            import_nok "t::Import::Die", [], "import die";
            $finished_eval = 1;
        };
    },
    { ok => 1, name => "import die", depth => 2 },
    "import_nok dying import";

ok $finished_eval, "import_nok caught exception";

my @import;
{
    package t::Import::Args;
    sub import { @import = @_ }
}
{
    package t::Import::ArgsFail;
    sub import { @import = @_; die "argsfail\n" }
}

@import = ();
check_test
    sub { import_ok "t::Import::Args", [1, 2, 3], "import args" },
    { ok => 1, name => "import args" },
    "import_ok with args";
is_deeply \@import, ["t::Import::Args", 1, 2, 3], 
    "with correct args";

@import = ();
check_test
    sub { import_ok "t::Import::ArgsFail", [1, 2, 3], "import args" },
    { ok => 0, name => "import args", diag => <<DIAG },
t::Import::ArgsFail->import(1, 2, 3) failed:
argsfail

DIAG
    "bad import_ok with args";
is_deeply \@import, ["t::Import::ArgsFail", 1, 2, 3], 
    "correct args anyway";

@import = ();
check_test
    sub { import_nok "t::Import::Args", [1, 2, 3], "import args" },
    { ok => 0, name => "import args", diag => <<DIAG },
t::Import::Args->import(1, 2, 3) succeeded where it should have failed.
DIAG
    "import_nok with args";
is_deeply \@import, ["t::Import::Args", 1, 2, 3], 
    "correct args";

@import = ();
check_test
    sub { import_nok "t::Import::ArgsFail", [1, 2, 3], "import args" },
    { ok => 1, name => "import args" },
    "bad import_nok with args";
is_deeply \@import, ["t::Import::ArgsFail", 1, 2, 3], 
    "correct args";

@import = ();
check_test
    sub { import_ok "t::Import::Args", [4, 5] },
    { ok => 1, name => "t::Import::Args->import(4, 5) succeeds" },
    "import_ok with default name";
is_deeply \@import, ["t::Import::Args", 4, 5],
    "correct args";

@import = ();
check_test
    sub { import_ok "t::Import::Args" },
    { ok => 1, name => "t::Import::Args->import() succeeds" },
    "import_ok with default args";
is_deeply \@import, ["t::Import::Args"],
    "correct args";

@import = ();
check_test
    sub { import_nok "t::Import::ArgsFail", [5, 6] },
    { ok => 1, name => "t::Import::ArgsFail->import(5, 6) fails" },
    "import_nok with default name";
is_deeply \@import, ["t::Import::ArgsFail", 5, 6],
    "correct args";

@import = ();
check_test
    sub { import_nok "t::Import::ArgsFail" },
    { ok => 1, name => "t::Import::ArgsFail->import() fails" },
    "import_nok with default args";
is_deeply \@import, ["t::Import::ArgsFail"],
    "correct args";

my $caller;
{
    package t::Import::Pkg;
    sub import { $caller = caller }
}

$caller = "???";
my $pkg = new_import_pkg;
check_test
    sub { import_ok "t::Import::Pkg", [], "pkg" },
    { ok => 1, name => "pkg" },
    "import_ok with package";
is $caller, $pkg, "import_ok uses correct package";

$caller = "???";
$pkg = new_import_pkg;
check_test
    sub { import_nok "t::Import::Pkg", [], "pkg" },
    { ok => 0, name => "pkg", diag => <<DIAG },
t::Import::Pkg->import() succeeded where it should have failed.
DIAG
    "import_nok with package";
is $caller, $pkg, "import_nok uses correct package";

done_testing;