-
-
Notifications
You must be signed in to change notification settings - Fork 2k
/
Copy pathFormTest.php
executable file
·543 lines (471 loc) · 18.3 KB
/
FormTest.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
374
375
376
377
378
379
380
381
382
383
384
385
386
387
388
389
390
391
392
393
394
395
396
397
398
399
400
401
402
403
404
405
406
407
408
409
410
411
412
413
414
415
416
417
418
419
420
421
422
423
424
425
426
427
428
429
430
431
432
433
434
435
436
437
438
439
440
441
442
443
444
445
446
447
448
449
450
451
452
453
454
455
456
457
458
459
460
461
462
463
464
465
466
467
468
469
470
471
472
473
474
475
476
477
478
479
480
481
482
483
484
485
486
487
488
489
490
491
492
493
494
495
496
497
498
499
500
501
502
503
504
505
506
507
508
509
510
511
512
513
514
515
516
517
518
519
520
521
522
523
524
525
526
527
528
529
530
531
532
533
534
535
536
537
538
539
540
541
542
543
<?php
namespace Phalcon\Test\Unit\Forms;
use Phalcon\Forms\Form;
use Phalcon\Forms\Element\Radio;
use Phalcon\Forms\Element\Select;
use Phalcon\Forms\Element\Text;
use Phalcon\Tag;
use Phalcon\Test\Module\UnitTest;
use Phalcon\Validation\Message;
use Phalcon\Validation\Message\Group;
use Phalcon\Validation\Validator\PresenceOf;
use Phalcon\Validation\Validator\Regex;
use Phalcon\Validation\Validator\StringLength;
use Phalcon\Validation;
/**
* \Phalcon\Test\Unit\Forms\FormTest
* Tests the \Phalcon\Forms\Form component
*
* @copyright (c) 2011-2017 Phalcon Team
* @link http://www.phalconphp.com
* @author Andres Gutierrez <[email protected]>
* @author Nikolaos Dimopoulos <[email protected]>
* @package Phalcon\Test\Unit\Forms
*
* The contents of this file are subject to the New BSD License that is
* bundled with this package in the file docs/LICENSE.txt
*
* If you did not receive a copy of the license and are unable to obtain it
* through the world-wide-web, please send an email to [email protected]
* so that we can send you a copy immediately.
*/
class FormTest extends UnitTest
{
/**
* executed after each test
*/
protected function _after()
{
// Setting the doctype to XHTML5 for other tests to run smoothly
Tag::setDocType(Tag::XHTML5);
}
public function testCount()
{
$this->specify(
"Form::count does not return the correct number",
function () {
$form = new Form();
expect($form)->count(0);
expect($form->count())->equals(0);
$form->add(
new Text("name")
);
$form->add(
new Text("telephone")
);
expect($form)->count(2);
expect($form->count())->equals(2);
}
);
}
public function testIterator()
{
$this->specify(
"Form incorrectly implements the Iterator interface",
function () {
$form = new Form();
$data = [];
foreach ($form as $key => $value) {
$data[$key] = $value->getName();
}
expect($data)->equals([]);
$form->add(
new Text("name")
);
$form->add(
new Text("telephone")
);
foreach ($form as $key => $value) {
$data[$key] = $value->getName();
}
expect($data)->equals([
0 => "name",
1 => "telephone",
]);
}
);
}
public function testLabels()
{
$this->specify(
"Form::getLabel and Form::label do not return the correct values",
function () {
$form = new Form();
$form->add(
new Text("name")
);
$telephone = new Text("telephone");
$telephone->setLabel("The Telephone");
$form->add($telephone);
expect($form->getLabel("name"))->equals("name");
expect($form->getLabel("telephone"))->equals("The Telephone");
expect($form->label("name"))->equals("<label for=\"name\">name</label>");
expect($form->label("telephone"))->equals("<label for=\"telephone\">The Telephone</label>");
// https://github.com/phalcon/cphalcon/issues/1029
expect($form->label("name", ["class" => "form-control"]))->equals("<label for=\"name\" class=\"form-control\">name</label>");
expect($form->label("telephone", ["class" => "form-control"]))->equals("<label for=\"telephone\" class=\"form-control\">The Telephone</label>");
}
);
}
/**
* Tests Form::hasMessagesFor
*
* @author Sid Roberts <[email protected]>
* @since 2016-04-03
*/
public function testFormHasMessagesFor()
{
$this->specify('Form::hasMessagesFor does not check correctly if the Group is empty', function () {
// First element
$telephone = new Text('telephone');
$telephone->addValidators([
new Regex([
'pattern' => '/\+44 [0-9]+ [0-9]+/',
'message' => 'The telephone has an invalid format'
])
]);
// Second element
$address = new Text('address');
$form = new Form();
$form->add($telephone);
$form->add($address);
expect($form->isValid(['telephone' => '12345', 'address' => 'hello']))->false();
expect($form->getMessagesFor('telephone'))->equals(
Group::__set_state([
'_messages' => [
Message::__set_state([
'_type' => 'Regex',
'_message' => 'The telephone has an invalid format',
'_field' => 'telephone',
'_code' => 0,
])
],
])
);
expect($form->getMessagesFor('address'))->equals(Group::__set_state(['_messages' => []]));
expect($form->hasMessagesFor('telephone'))->true();
expect($form->hasMessagesFor('address'))->false();
});
}
/**
* Tests Form::render
*
* @issue 10398
* @author Serghei Iakovlev <[email protected]>
* @since 2016-07-17
*/
public function testCreatingElementsWithNameSimilarToTheFormMethods()
{
$this->specify('Form::render does not return expected result', function ($name) {
$form = new Form;
$element = new Text($name);
expect($element->getName())->equals($name);
$form->add($element);
expect($form->render($name))->equals(sprintf('<input type="text" id="%s" name="%s" />', $name, $name));
expect($form->getValue($name))->null();
expect($element->getValue())->null();
}, ['examples' => $this->nameLikeFormMethodsProvider()]);
}
protected function nameLikeFormMethodsProvider()
{
return [
['validation'],
['action'],
['useroption'],
['useroptions'],
['entity'],
['elements'],
['messages'],
['messagesfor'],
['label'],
['value'],
['di'],
['eventsmanager'],
];
}
public function testFormValidator()
{
$this->specify(
"Form validators don't work",
function () {
//First element
$telephone = new Text("telephone");
$telephone->addValidator(
new PresenceOf(
array(
'message' => 'The telephone is required'
)
)
);
expect($telephone->getValidators())->count(1);
$telephone->addValidators(array(
new StringLength(array(
'min' => 5,
'messageMinimum' => 'The telephone is too short'
)),
new Regex(array(
'pattern' => '/\+44 [0-9]+ [0-9]+/',
'message' => 'The telephone has an invalid format'
))
));
expect($telephone->getValidators())->count(3);
//Second element
$address = new Text('address');
$address->addValidator(
new PresenceOf(
array(
'message' => 'The address is required'
)
)
);
expect($address->getValidators())->count(1);
$form = new Form();
$form->add($telephone);
$form->add($address);
expect($form->isValid([]))->false();
$expectedMessages = Group::__set_state(
array(
'_messages' => array(
0 => Message::__set_state(
array(
'_type' => 'PresenceOf',
'_message' => 'The telephone is required',
'_field' => 'telephone',
'_code' => 0,
)
),
1 => Message::__set_state(
array(
'_type' => 'TooShort',
'_message' => 'The telephone is too short',
'_field' => 'telephone',
'_code' => 0,
)
),
2 => Message::__set_state(
array(
'_type' => 'Regex',
'_message' => 'The telephone has an invalid format',
'_field' => 'telephone',
'_code' => 0,
)
),
3 => Message::__set_state(
array(
'_type' => 'PresenceOf',
'_message' => 'The address is required',
'_field' => 'address',
'_code' => 0,
)
),
),
)
);
expect($form->getMessages())->equals($expectedMessages);
expect($form->isValid(array(
'telephone' => '12345',
'address' => 'hello'
)))->false();
$expectedMessages = Group::__set_state(array(
'_messages' => array(
0 => Message::__set_state(array(
'_type' => 'Regex',
'_message' => 'The telephone has an invalid format',
'_field' => 'telephone',
'_code' => 0,
)),
),
));
expect($form->getMessages())->equals($expectedMessages);
expect($form->isValid(array(
'telephone' => '+44 124 82122',
'address' => 'hello'
)))->true();
}
);
}
public function testFormIndirectElementRender()
{
$this->specify(
"Indirect form element render doesn't work",
function () {
$form = new Form();
$form->add(new Text("name"));
expect($form->render("name"))->equals('<input type="text" id="name" name="name" />');
expect($form->render("name", ["class" => "big-input"]))->equals('<input type="text" id="name" name="name" class="big-input" />');
}
);
}
/**
* @issue 1190
*/
public function testIssue1190()
{
$this->specify(
"Form::render doesn't escape value attributes on TextFields",
function () {
$object = new \stdClass();
$object->title = 'Hello "world!"';
$form = new Form($object);
$form->add(new Text("title"));
$actual = $form->render("title");
$expected = '<input type="text" id="title" name="title" value="Hello "world!"" />';
expect($actual)->equals($expected);
}
);
}
/**
* @issue 706
*/
public function testIssue706()
{
$this->specify(
"Form field positions don't work",
function () {
$form = new Form();
$form->add(new Text("name"));
$form->add(new Text("before"), "name", true);
$form->add(new Text("after"), "name");
$data = ["before", "name", "after"];
$result = [];
foreach ($form as $element) {
$result[] = $element->getName();
}
expect($result)->equals($data);
}
);
}
/**
* Tests Element::hasMessages() Element::getMessages()
*
* @author Mohamad Rostami <[email protected]>
* @issue 11135, 3167
*/
public function testElementMessages()
{
$this->specify('Element messages are empty if form validation fails', function () {
// First element
$telephone = new Text('telephone');
$telephone->addValidators([
new Regex([
'pattern' => '/\+44 [0-9]+ [0-9]+/',
'message' => 'The telephone has an invalid format'
])
]);
// Second element
$address = new Text('address');
$form = new Form();
$form->add($telephone);
$form->add($address);
expect($form->isValid(['telephone' => '12345', 'address' => 'hello']))->false();
expect($form->get('telephone')->hasMessages())->true();
expect($form->get('address')->hasMessages())->false();
expect($form->get('telephone')->getMessages())->equals(
Group::__set_state([
'_messages' => [
Message::__set_state([
'_type' => 'Regex',
'_message' => 'The telephone has an invalid format',
'_field' => 'telephone',
'_code' => 0,
])
],
])
);
expect($form->get('telephone')->getMessages())->equals($form->getMessages());
expect($form->get('address')->getMessages())->equals(Group::__set_state(['_messages' => []]));
expect($form->getMessagesFor('notelement'))->equals(Group::__set_state(['_messages' => []]));
});
}
/**
* Tests Form::setValidation()
*
* @author Mohamad Rostami <[email protected]>
* @issue 12465
*/
public function testCustomValidation()
{
$this->specify('Injecting custom validation to form doesn\'t validate correctly', function () {
// First element
$telephone = new Text('telephone');
$customValidation = new Validation();
$customValidation->add('telephone', new Regex([
'pattern' => '/\+44 [0-9]+ [0-9]+/',
'message' => 'The telephone has an invalid format'
]));
$form = new Form();
$address = new Text('address');
$form->add($telephone);
$form->add($address);
$form->setValidation($customValidation);
expect($form->isValid(['telephone' => '12345', 'address' => 'hello']))->false();
expect($form->get('telephone')->hasMessages())->true();
expect($form->get('address')->hasMessages())->false();
expect($form->get('telephone')->getMessages())->equals(
Group::__set_state([
'_messages' => [
Message::__set_state([
'_type' => 'Regex',
'_message' => 'The telephone has an invalid format',
'_field' => 'telephone',
'_code' => 0,
])
],
])
);
expect($form->get('telephone')->getMessages())->equals($form->getMessages());
expect($form->get('address')->getMessages())->equals(Group::__set_state(['_messages' => []]));
});
}
/**
* Tests Form::isValid()
*
* @author Mohamad Rostami <[email protected]>
* @issue 11500
*/
public function testMergeValidators()
{
$this->specify('Injecting custom validation to form doesn\'t merge validators on isValid', function () {
// First element
$telephone = new Text('telephone');
$telephone->addValidators([
new PresenceOf([
'message' => 'The telephone is required'
])
]);
$customValidation = new Validation();
$customValidation->add('telephone', new Regex([
'pattern' => '/\+44 [0-9]+ [0-9]+/',
'message' => 'The telephone has an invalid format'
]));
$form = new Form();
$address = new Text('address');
$form->add($telephone);
$form->add($address);
$form->setValidation($customValidation);
expect($form->isValid(['address' => 'hello']))->false();
expect($form->get('telephone')->hasMessages())->true();
expect($form->get('address')->hasMessages())->false();
expect($form->get('telephone')->getMessages())->equals(
Group::__set_state([
'_messages' => [
Message::__set_state([
'_type' => 'Regex',
'_message' => 'The telephone has an invalid format',
'_field' => 'telephone',
'_code' => 0,
]),
Message::__set_state([
'_type' => 'PresenceOf',
'_message' => 'The telephone is required',
'_field' => 'telephone',
'_code' => 0,
])
],
])
);
expect($form->get('telephone')->getMessages())->equals($form->getMessages());
expect($form->get('address')->getMessages())->equals(Group::__set_state(['_messages' => []]));
});
}
}