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
294
295
296
297
298
299
300
301
302
303
304
|
use strict;
use warnings;
use Test::More;
use Test::Fatal;
{
my $exception = exception {
Moose::Meta::Class->create(
'Made::Of::Fail',
superclasses => ['Class'],
roles => 'Foo',
);
};
like(
$exception,
qr/You must pass an ARRAY ref of roles/,
"create takes an Array of roles");
isa_ok(
$exception,
"Moose::Exception::RolesInCreateTakesAnArrayRef",
"create takes an Array of roles");
}
{
use Moose::Meta::Class;
{
package Foo;
use Moose;
}
my $exception = exception {
Foo->meta->add_role('Bar');
};
like(
$exception,
qr/Roles must be instances of Moose::Meta::Role/,
"add_role takes an instance of Moose::Meta::Role");
isa_ok(
$exception,
'Moose::Exception::AddRoleTakesAMooseMetaRoleInstance',
"add_role takes an instance of Moose::Meta::Role");
is(
$exception->class_name,
'Foo',
"add_role to Moose::Meta::Role takes instances of Moose::Meta::Role");
is(
$exception->role_to_be_added,
"Bar",
"add_role to Moose::Meta::Role takes instances of Moose::Meta::Role");
}
{
my $exception = exception {
package Foo;
use Moose;
Foo->meta->add_role_application();
};
like(
$exception,
qr/Role applications must be instances of Moose::Meta::Role::Application::ToClass/,
"bar is not an instance of Moose::Meta::Role::Application::ToClass");
isa_ok(
$exception,
"Moose::Exception::InvalidRoleApplication",
"bar is not an instance of Moose::Meta::Role::Application::ToClass");
}
# tests for Moose::Meta::Class::does_role
{
use Moose::Meta::Class;
{
package Foo;
use Moose;
}
my $exception = exception {
Foo->meta->does_role;
};
like(
$exception,
qr/You must supply a role name to look for/,
"Cannot call does_role without a role name");
isa_ok(
$exception,
'Moose::Exception::RoleNameRequired',
"Cannot call does_role without a role name");
is(
$exception->class_name,
'Foo',
"Cannot call does_role without a role name");
}
# tests for Moose::Meta::Class::excludes_role
{
use Moose::Meta::Class;
{
package Foo;
use Moose;
}
my $exception = exception {
Foo->meta->excludes_role;
};
like(
$exception,
qr/You must supply a role name to look for/,
"Cannot call excludes_role without a role name");
isa_ok(
$exception,
'Moose::Exception::RoleNameRequired',
"Cannot call excludes_role without a role name");
is(
$exception->class_name,
'Foo',
"Cannot call excludes_role without a role name");
}
{
my $exception = exception {
package Foo;
use Moose;
__PACKAGE__->meta->make_immutable;
Foo->new([])
};
like(
$exception,
qr/^\QSingle parameters to new() must be a HASH ref/,
"A single non-hashref arg to a constructor throws an error");
isa_ok(
$exception,
"Moose::Exception::SingleParamsToNewMustBeHashRef",
"A single non-hashref arg to a constructor throws an error");
}
# tests for AttributeIsRequired for inline excpetions
{
{
package Foo2;
use Moose;
has 'baz' => (
is => 'ro',
isa => 'Int',
required => 1,
);
__PACKAGE__->meta->make_immutable;
}
my $exception = exception {
my $test1 = Foo2->new;
};
like(
$exception,
qr/\QAttribute (baz) is required/,
"... must supply all the required attribute");
isa_ok(
$exception,
"Moose::Exception::AttributeIsRequired",
"... must supply all the required attribute");
is(
$exception->attribute_name,
'baz',
"... must supply all the required attribute");
isa_ok(
$exception->class_name,
'Foo2',
"... must supply all the required attribute");
}
{
{
package Bar;
use Moose::Role;
}
my $exception = exception {
package Foo3;
use Moose;
extends 'Bar';
};
like(
$exception,
qr/^\QYou cannot inherit from a Moose Role (Bar)/,
"Class cannot extend a role");
isa_ok(
$exception,
'Moose::Exception::CanExtendOnlyClasses',
"Class cannot extend a role");
is(
$exception->role_name,
'Bar',
"Class cannot extend a role");
}
{
my $exception = exception {
package Foo;
use Moose;
sub foo2 {}
override foo2 => sub {};
};
like(
$exception,
qr/Cannot add an override method if a local method is already present/,
"there is already a method named foo2 defined in the class, so you can't override it");
isa_ok(
$exception,
'Moose::Exception::CannotOverrideLocalMethodIsPresent',
"there is already a method named foo2 defined in the class, so you can't override it");
is(
$exception->class_name,
'Foo',
"there is already a method named foo2 defined in the class, so you can't override it");
is(
$exception->method->name,
'foo2',
"there is already a method named foo2 defined in the class, so you can't override it");
}
{
my $exception = exception {
package Foo;
use Moose;
sub foo {}
augment foo => sub {};
};
like(
$exception,
qr/Cannot add an augment method if a local method is already present/,
"there is already a method named foo defined in the class");
isa_ok(
$exception,
'Moose::Exception::CannotAugmentIfLocalMethodPresent',
"there is already a method named foo defined in the class");
is(
$exception->class_name,
'Foo',
"there is already a method named foo defined in the class");
is(
$exception->method->name,
'foo',
"there is already a method named foo defined in the class");
}
{
{
package Test;
use Moose;
}
my $exception = exception {
package Test2;
use Moose;
extends 'Test';
has '+bar' => ( default => 100 );
};
like(
$exception,
qr/Could not find an attribute by the name of 'bar' to inherit from in Test2/,
"attribute 'bar' is not defined in the super class");
isa_ok(
$exception,
"Moose::Exception::NoAttributeFoundInSuperClass",
"attribute 'bar' is not defined in the super class");
}
done_testing;
|