-
Notifications
You must be signed in to change notification settings - Fork 626
/
Copy pathAssertTest.php
373 lines (279 loc) · 10.3 KB
/
AssertTest.php
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
305
306
307
308
309
310
311
312
313
314
315
316
317
318
319
320
321
322
323
324
325
326
327
328
329
330
331
332
333
334
335
336
337
338
339
340
341
342
343
344
345
346
347
348
349
350
351
352
353
354
355
356
357
358
359
360
361
362
363
364
365
366
367
368
369
370
371
372
373
<?php
/**
* Assert class unit tests.
*/
namespace SendGrid\Tests\Unit;
use PHPUnit\Framework\TestCase;
use SendGrid\Helper\Assert;
use SendGrid\Mail\TypeException;
class AssertTest extends TestCase
{
public function testStringThrowExceptionWithDefaultMessage()
{
$this->expectException(TypeException::class);
$this->expectExceptionMessage('"$test" must be a string. Got: ');
Assert::string(false, 'test');
}
public function testStringThrowExceptionWithCustomMessage()
{
$this->expectException(TypeException::class);
$this->expectExceptionMessage('Custom message');
Assert::string(false, 'test', 'Custom message');
}
public function testStringWithCorrectValue()
{
Assert::string('test', 'test');
$this->assertTrue(true);
}
public function testEmailThrowExceptionWithDefaultMessage()
{
$this->expectException(TypeException::class);
$this->expectExceptionMessage('"$test" must be a valid email address. Got: test');
Assert::email('test', 'test');
}
public function testEmailThrowExceptionWithCustomMessage()
{
$this->expectException(TypeException::class);
$this->expectExceptionMessage('Custom message');
Assert::email('test', 'test', 'Custom message');
}
public function testEmailWithCorrectValue()
{
Assert::email('test@example.com', 'test');
$this->assertTrue(true);
}
public function testIntegerThrowExceptionWithDefaultMessage()
{
$this->expectException(TypeException::class);
$this->expectExceptionMessage('"$test" must be an integer. Got: test');
Assert::integer('test', 'test');
}
public function testIntegerThrowExceptionWithCustomMessage()
{
$this->expectException(TypeException::class);
$this->expectExceptionMessage('Custom message');
Assert::integer('test', 'test', 'Custom message');
}
public function testIntegerWithCorrectValue()
{
Assert::integer(64627492, 'test');
$this->assertTrue(true);
}
public function testBooleanThrowExceptionWithDefaultMessage()
{
$this->expectException(TypeException::class);
$this->expectExceptionMessage('"$test" must be a boolean. Got: test');
Assert::boolean('test', 'test');
}
public function testBooleanThrowExceptionWithCustomMessage()
{
$this->expectException(TypeException::class);
$this->expectExceptionMessage('Custom message');
Assert::boolean('test', 'test', 'Custom message');
}
public function testBooleanWithCorrectValue()
{
Assert::boolean(false, 'test');
Assert::boolean(true, 'test');
$this->assertTrue(true);
}
public function testIsInstanceOfThrowExceptionWithDefaultMessage()
{
$this->expectException(TypeException::class);
$this->expectExceptionMessage('"$test" must be an instance of "' . static::class . '". Got: test');
Assert::isInstanceOf('test', 'test', static::class);
}
public function testIsInstanceOfThrowExceptionWithCustomMessage()
{
$this->expectException(TypeException::class);
$this->expectExceptionMessage('Custom message');
Assert::isInstanceOf('test', 'test', static::class, 'Custom message');
}
public function testIsInstanceOfWithCorrectValue()
{
Assert::isInstanceOf(new \stdClass(), 'test', \stdClass::class);
$this->assertTrue(true);
}
public function testIsArrayThrowExceptionWithDefaultMessage()
{
$this->expectException(TypeException::class);
$this->expectExceptionMessage('"$test" must be an array. Got: test');
Assert::isArray('test', 'test');
}
public function testIsArrayThrowExceptionWithCustomMessage()
{
$this->expectException(TypeException::class);
$this->expectExceptionMessage('Custom message');
Assert::isArray('test', 'test', 'Custom message');
}
public function testIsArrayWithCorrectValue()
{
Assert::isArray(['test'], 'test');
Assert::isArray([64627492, 8482842], 'test');
$this->assertTrue(true);
}
public function testIsCallableThrowExceptionWithDefaultMessage()
{
$this->expectException(TypeException::class);
$this->expectExceptionMessage('"$test" must be callable. Got: test');
Assert::isCallable('test', 'test');
}
public function testIsCallableThrowExceptionWithCustomMessage()
{
$this->expectException(TypeException::class);
$this->expectExceptionMessage('Custom message');
Assert::isCallable('test', 'test', 'Custom message');
}
public function testIsCallableWithCorrectValue()
{
$callback = static function () {
return true;
};
Assert::isCallable($callback, 'test');
$this->assertTrue(true);
}
public function testAcceptThrowExceptionWithDefaultMessage()
{
$this->expectException(TypeException::class);
$this->expectExceptionMessage('"$test" is not valid.');
Assert::accept('test', 'test', static function ($val) {
return $val === [];
});
}
public function testAcceptThrowExceptionWithCustomMessage()
{
$this->expectException(TypeException::class);
$this->expectExceptionMessage('Custom message');
Assert::accept('test', 'test', static function ($val) {
return $val === [];
}, 'Custom message');
}
public function testAcceptWithCorrectValue()
{
Assert::accept([], 'test', static function ($val) {
return $val === [];
});
$this->assertTrue(true);
}
public function testMinItemsThrowExceptionWithDefaultMessage()
{
$this->expectException(TypeException::class);
$this->expectExceptionMessage('Number of elements in "$test" can not be less than 5.');
Assert::minItems([], 'test', 5);
}
public function testMinItemsThrowExceptionWithCustomMessage()
{
$this->expectException(TypeException::class);
$this->expectExceptionMessage('Custom message');
Assert::minItems([], 'test', 5, 'Custom message');
}
public function testMinItemsWithCorrectValue()
{
$range = range(1, 5);
Assert::minItems($range, 'test', 2);
$this->assertTrue(true);
}
public function testMaxItemsThrowExceptionWithDefaultMessage()
{
$this->expectException(TypeException::class);
$this->expectExceptionMessage('Number of elements in "$test" can not be more than 0.');
Assert::maxItems(['test'], 'test', 0);
}
public function testMaxItemsThrowExceptionWithCustomMessage()
{
$this->expectException(TypeException::class);
$this->expectExceptionMessage('Custom message');
Assert::maxItems(['test'], 'test', 0, 'Custom message');
}
public function testMaxItemsWithCorrectValue()
{
$range = range(1, 2);
Assert::maxItems($range, 'test', 5);
$this->assertTrue(true);
}
public function testMinValueThrowExceptionWithDefaultMessage()
{
$this->expectException(TypeException::class);
$this->expectExceptionMessage('"$test" expected to be at least 5. Got: 3');
Assert::minValue(3, 'test', 5);
}
public function testMinValueThrowExceptionWithCustomMessage()
{
$this->expectException(TypeException::class);
$this->expectExceptionMessage('Custom message');
Assert::minValue(3, 'test', 5, 'Custom message');
}
public function testMinValueWithCorrectValue()
{
Assert::minValue(5, 'test', 2);
$this->assertTrue(true);
}
public function testMaxValueThrowExceptionWithDefaultMessage()
{
$this->expectException(TypeException::class);
$this->expectExceptionMessage('"$test" expected to be at most 3. Got: 5');
Assert::maxValue(5, 'test', 3);
}
public function testMaxValueThrowExceptionWithCustomMessage()
{
$this->expectException(TypeException::class);
$this->expectExceptionMessage('Custom message');
Assert::maxValue(5, 'test', 3, 'Custom message');
}
public function testMaxValueWithCorrectValue()
{
Assert::maxValue(2, 'test', 5);
$this->assertTrue(true);
}
public function testMinLengthThrowExceptionWithDefaultMessage()
{
$this->expectException(TypeException::class);
$this->expectExceptionMessage('"$test" must have at least 5 characters. Got: 4');
Assert::minLength('test', 'test', 5);
}
public function testMinLengthThrowExceptionWithCustomMessage()
{
$this->expectException(TypeException::class);
$this->expectExceptionMessage('Custom message');
Assert::minLength('test', 'test', 5, 'Custom message');
}
public function testMinLengthWithCorrectValue()
{
Assert::minLength('test', 'test', 2);
$this->assertTrue(true);
}
public function testMaxLengthThrowExceptionWithDefaultMessage()
{
$this->expectException(TypeException::class);
$this->expectExceptionMessage('"$test" must have no more than 3 characters. Got: 4');
Assert::maxLength('test', 'test', 3);
}
public function testMaxLengthThrowExceptionWithCustomMessage()
{
$this->expectException(TypeException::class);
$this->expectExceptionMessage('Custom message');
Assert::maxLength('test', 'test', 3, 'Custom message');
}
public function testMaxLengthWithCorrectValue()
{
Assert::maxLength('test', 'test', 5);
$this->assertTrue(true);
}
public function testAnyOfThrowExceptionWithDefaultMessage()
{
$this->expectException(TypeException::class);
$this->expectExceptionMessage('"$test" must be any of "foo, bar". Got: test');
Assert::anyOf('test', 'test', ['foo', 'bar']);
}
public function testAnyOfThrowExceptionWithCustomMessage()
{
$this->expectException(TypeException::class);
$this->expectExceptionMessage('Custom message');
Assert::anyOf('test', 'test', ['foo', 'bar'], 'Custom message');
}
public function testAnyOfWithCorrectValue()
{
Assert::anyOf(3, 'test', [1, 3, 5]);
$this->assertTrue(true);
}
}