This repository was archived by the owner on Jan 30, 2020. It is now read-only.
-
Notifications
You must be signed in to change notification settings - Fork 49
/
Copy pathArrayInputTest.php
145 lines (121 loc) · 4.17 KB
/
ArrayInputTest.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
<?php
/**
* Zend Framework (http://framework.zend.com/)
*
* @link http://github.com/zendframework/zf2 for the canonical source repository
* @copyright Copyright (c) 2005-2015 Zend Technologies USA Inc. (http://www.zend.com)
* @license http://framework.zend.com/license/new-bsd New BSD License
*/
namespace ZendTest\InputFilter;
use Zend\InputFilter\ArrayInput;
use Zend\InputFilter\Exception\InvalidArgumentException;
/**
* @covers \Zend\InputFilter\ArrayInput
*/
class ArrayInputTest extends InputTest
{
protected function setUp()
{
$this->input = new ArrayInput('foo');
}
public function testDefaultGetValue()
{
$this->assertCount(0, $this->input->getValue());
}
public function testArrayInputMarkedRequiredWithoutAFallbackFailsValidationForEmptyArrays()
{
$input = $this->input;
$input->setRequired(true);
$input->setValue([]);
$this->assertFalse($input->isValid());
$this->assertRequiredValidationErrorMessage($input);
}
public function testArrayInputMarkedRequiredWithoutAFallbackUsesProvidedErrorMessageOnFailureDueToEmptyArray()
{
$expected = 'error message';
$input = $this->input;
$input->setRequired(true);
$input->setErrorMessage($expected);
$input->setValue([]);
$this->assertFalse($input->isValid());
$messages = $input->getMessages();
$this->assertCount(1, $messages);
$message = array_pop($messages);
$this->assertEquals($expected, $message);
}
public function testSetValueWithInvalidInputTypeThrowsInvalidArgumentException()
{
$this->expectException(InvalidArgumentException::class);
$this->expectExceptionMessage('Value must be an array, string given');
$this->input->setValue('bar');
}
public function fallbackValueVsIsValidProvider()
{
$dataSets = parent::fallbackValueVsIsValidProvider();
array_walk($dataSets, function (&$set) {
$set[1] = [$set[1]]; // Wrap fallback value into an array.
$set[2] = [$set[2]]; // Wrap value into an array.
$set[4] = [$set[4]]; // Wrap expected value into an array.
});
return $dataSets;
}
public function emptyValueProvider()
{
$dataSets = parent::emptyValueProvider();
array_walk($dataSets, function (&$set) {
$set['raw'] = [$set['raw']]; // Wrap value into an array.
});
return $dataSets;
}
public function mixedValueProvider()
{
$dataSets = parent::mixedValueProvider();
array_walk($dataSets, function (&$set) {
$set['raw'] = [$set['raw']]; // Wrap value into an array.
});
return $dataSets;
}
protected function createFilterChainMock(array $valueMap = [])
{
// ArrayInput filters per each array value
$valueMap = array_map(
function ($values) {
if (is_array($values[0])) {
$values[0] = current($values[0]);
}
if (is_array($values[1])) {
$values[1] = current($values[1]);
}
return $values;
},
$valueMap
);
return parent::createFilterChainMock($valueMap);
}
protected function createValidatorChainMock(array $valueMap = [], $messages = [])
{
// ArrayInput validates per each array value
$valueMap = array_map(
function ($values) {
if (is_array($values[0])) {
$values[0] = current($values[0]);
}
return $values;
},
$valueMap
);
return parent::createValidatorChainMock($valueMap, $messages);
}
protected function createNonEmptyValidatorMock($isValid, $value, $context = null)
{
// ArrayInput validates per each array value
if (is_array($value)) {
$value = current($value);
}
return parent::createNonEmptyValidatorMock($isValid, $value, $context);
}
protected function getDummyValue($raw = true)
{
return [parent::getDummyValue($raw)];
}
}