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
272
273
274
275
276
277
278
279
280
281
282
283
284
285
286
287
288
289
290
291
292
293
|
use strict;
use warnings;
use Test::More;
use Test::Fatal;
use Moose::Util::TypeConstraints;
# tests for type/subtype name contain invalid characters
{
my $exception = exception {
subtype 'Foo-Baz' => as 'Item'
};
like(
$exception,
qr/contains invalid characters/,
"Type names cannot contain a dash (via subtype sugar)");
isa_ok(
$exception,
"Moose::Exception::InvalidNameForType",
"Type names cannot contain a dash (via subtype sugar)");
}
{
my $exception = exception {
Moose::Util::TypeConstraints::create_type_constraint_union();
};
like(
$exception,
qr/You must pass in at least 2 type names to make a union/,
"Moose::Util::TypeConstraints::create_type_constraint_union takes atleast two arguments");
isa_ok(
$exception,
"Moose::Exception::UnionTakesAtleastTwoTypeNames",
"Moose::Util::TypeConstraints::create_type_constraint_union takes atleast two arguments");
}
{
my $exception = exception {
Moose::Util::TypeConstraints::create_type_constraint_union('foo','bar');
};
like(
$exception,
qr/\QCould not locate type constraint (foo) for the union/,
"invalid typeconstraint given to Moose::Util::TypeConstraints::create_type_constraint_union");
isa_ok(
$exception,
"Moose::Exception::CouldNotLocateTypeConstraintForUnion",
"invalid typeconstraint given to Moose::Util::TypeConstraints::create_type_constraint_union");
is(
$exception->type_name,
'foo',
"invalid typeconstraint given to Moose::Util::TypeConstraints::create_type_constraint_union");
}
{
my $exception = exception {
Moose::Util::TypeConstraints::create_parameterized_type_constraint("Foo");
};
like(
$exception,
qr/\QCould not parse type name (Foo) correctly/,
"'Foo' is not a valid type constraint name");
isa_ok(
$exception,
"Moose::Exception::InvalidTypeGivenToCreateParameterizedTypeConstraint",
"'Foo' is not a valid type constraint name");
}
{
my $exception = exception {
Moose::Util::TypeConstraints::create_parameterized_type_constraint("Foo[Int]");
};
like(
$exception,
qr/\QCould not locate the base type (Foo)/,
"'Foo' is not a valid base type constraint name");
isa_ok(
$exception,
"Moose::Exception::InvalidBaseTypeGivenToCreateParameterizedTypeConstraint",
"'Foo' is not a valid base type constraint name");
}
{
{
package Foo1;
use Moose::Role;
}
my $exception = exception {
Moose::Util::TypeConstraints::class_type("Foo1");
};
like(
$exception,
qr/\QThe type constraint 'Foo1' has already been created in Moose::Role and cannot be created again in main/,
"there is an already defined role of name 'Foo1'");
isa_ok(
$exception,
"Moose::Exception::TypeConstraintIsAlreadyCreated",
"there is an already defined role of name 'Foo1'");
is(
$exception->type_name,
'Foo1',
"there is an already defined role of name 'Foo1'");
is(
(find_type_constraint($exception->type_name))->_package_defined_in,
'Moose::Role',
"there is an already defined role of name 'Foo1'");
is(
$exception->package_defined_in,
'main',
"there is an already defined role of name 'Foo1'");
}
{
{
package Foo2;
use Moose;
}
my $exception = exception {
Moose::Util::TypeConstraints::role_type("Foo2");
};
like(
$exception,
qr/\QThe type constraint 'Foo2' has already been created in Moose and cannot be created again in main/,
"there is an already defined class of name 'Foo2'");
isa_ok(
$exception,
"Moose::Exception::TypeConstraintIsAlreadyCreated",
"there is an already defined class of name 'Foo2'");
is(
$exception->type_name,
'Foo2',
"there is an already defined class of name 'Foo2'");
is(
(find_type_constraint($exception->type_name))->_package_defined_in,
'Moose',
"there is an already defined class of name 'Foo2'");
is(
$exception->package_defined_in,
'main',
"there is an already defined class of name 'Foo2'");
}
{
my $exception = exception {
subtype 'Foo';
};
like(
$exception,
qr/A subtype cannot consist solely of a name, it must have a parent/,
"no parent given to subtype");
isa_ok(
$exception,
"Moose::Exception::NoParentGivenToSubtype",
"no parent given to subtype");
is(
$exception->name,
'Foo',
"no parent given to subtype");
}
{
my $exception = exception {
enum [1,2,3], "foo";
};
like(
$exception,
qr/\Qenum called with an array reference and additional arguments. Did you mean to parenthesize the enum call's parameters?/,
"enum expects either a name & an array or only an array");
isa_ok(
$exception,
"Moose::Exception::EnumCalledWithAnArrayRefAndAdditionalArgs",
"enum expects either a name & an array or only an array");
}
{
my $exception = exception {
union [1,2,3], "foo";
};
like(
$exception,
qr/union called with an array reference and additional arguments/,
"union expects either a name & an array or only an array");
isa_ok(
$exception,
"Moose::Exception::UnionCalledWithAnArrayRefAndAdditionalArgs",
"union expects either a name & an array or only an array");
}
{
{
package Foo3;
use Moose;
}
my $exception = exception {
Moose::Util::TypeConstraints::type("Foo3");
};
like(
$exception,
qr/\QThe type constraint 'Foo3' has already been created in Moose and cannot be created again in main/,
"there is an already defined class of name 'Foo3'");
isa_ok(
$exception,
"Moose::Exception::TypeConstraintIsAlreadyCreated",
"there is an already defined class of name 'Foo3'");
is(
$exception->type_name,
'Foo3',
"there is an already defined class of name 'Foo3'");
is(
find_type_constraint($exception->type_name)->_package_defined_in,
'Moose',
"there is an already defined class of name 'Foo3'");
is(
$exception->package_defined_in,
'main',
"there is an already defined class of name 'Foo3'");
}
{
my $exception = exception {
Moose::Util::TypeConstraints::coerce "Foo";
};
like(
$exception,
qr/Cannot find type 'Foo', perhaps you forgot to load it/,
"'Foo' is not a valid type");
isa_ok(
$exception,
"Moose::Exception::CannotFindType",
"'Foo' is not a valid type");
}
{
my $exception = exception {
Moose::Util::TypeConstraints::add_parameterizable_type "Foo";
};
like(
$exception,
qr/Type must be a Moose::Meta::TypeConstraint::Parameterizable not Foo/,
"'Foo' is not a parameterizable type");
isa_ok(
$exception,
"Moose::Exception::AddParameterizableTypeTakesParameterizableType",
"'Foo' is not a parameterizable type");
is(
$exception->type_name,
"Foo",
"'Foo' is not a parameterizable type");
}
done_testing;
|