summaryrefslogtreecommitdiff
path: root/tests/Unit/Http/Validation/ValidatesTest.php
blob: 5cf0447af236e810b0c505f687012e6f955e9bda (plain)
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
<?php

namespace Engelsystem\Test\Unit\Http\Validation;

use Engelsystem\Http\Validation\Validates;
use InvalidArgumentException;
use PHPUnit\Framework\TestCase;

class ValidatesTest extends TestCase
{
    /**
     * @return array
     */
    public function provideAccepted()
    {
        return [
            ['true'],
            ['1'],
            ['y'],
            ['yes'],
            ['on'],
            ['1test', false],
            ['false', false],
            ['no', false],
        ];
    }

    /**
     * @covers       \Engelsystem\Http\Validation\Validates::accepted
     * @param mixed $value
     * @param bool  $result
     * @dataProvider provideAccepted
     */
    public function testAccepted($value, bool $result = true)
    {
        $val = new Validates;
        $this->assertTrue($val->accepted($value) === $result);
    }

    /**
     * @return array
     */
    public function provideBetween()
    {
        return [
            ['42', [10, 100]],
            [42.5, [42, 43]],
            [42, [42, 1000]],
            [1337, [0, 99], false],
            [-17, [32, 45], false],
        ];
    }

    /**
     * @covers       \Engelsystem\Http\Validation\Validates::between
     * @param mixed $value
     * @param array $parameters
     * @param bool  $result
     * @dataProvider provideBetween
     */
    public function testBetween($value, array $parameters, bool $result = true)
    {
        $val = new Validates;
        $this->assertTrue($val->between($value, $parameters) === $result);
    }

    /**
     * @return array
     */
    public function provideBool()
    {
        return [
            ['1'],
            [1],
            [true],
            ['0'],
            [0],
            [false],
            ['true', false],
            ['false', false],
            ['yes', false],
            ['no', false],
            ['bool', false],
        ];
    }

    /**
     * @covers       \Engelsystem\Http\Validation\Validates::bool
     * @param mixed $value
     * @param bool  $result
     * @dataProvider provideBool
     */
    public function testBool($value, bool $result = true)
    {
        $val = new Validates;
        $this->assertTrue($val->bool($value) === $result);
    }

    /**
     * @return array
     */
    public function provideIn()
    {
        return [
            ['lorem', ['lorem,ipsum,dolor']],
            [99, ['66,77,88,99,111']],
            [4, ['1,3,5,7'], false],
            ['toggle', ['on,off'], false],
        ];
    }

    /**
     * @covers       \Engelsystem\Http\Validation\Validates::in
     * @param mixed $value
     * @param array $parameters
     * @param bool  $result
     * @dataProvider provideIn
     */
    public function testIn($value, array $parameters, bool $result = true)
    {
        $val = new Validates;
        $this->assertTrue($val->in($value, $parameters) === $result);
    }

    /**
     * @return array
     */
    public function provideInt()
    {
        return [
            ['1337'],
            [42],
            ['0'],
            [false, false],
            ['12asd1', false],
            ['one', false],
        ];
    }

    /**
     * @covers       \Engelsystem\Http\Validation\Validates::int
     * @param mixed $value
     * @param bool  $result
     * @dataProvider provideInt
     */
    public function testInt($value, bool $result = true)
    {
        $val = new Validates;
        $this->assertTrue($val->int($value) === $result);
    }

    /**
     * @return array
     */
    public function provideMax()
    {
        return [
            ['99', [100]],
            [-42, [1024]],
            [99, [99]],
            [100, [10], false],
        ];
    }

    /**
     * @covers       \Engelsystem\Http\Validation\Validates::max
     * @param mixed $value
     * @param array $parameters
     * @param bool  $result
     * @dataProvider provideMax
     */
    public function testMax($value, array $parameters, bool $result = true)
    {
        $val = new Validates;
        $this->assertTrue($val->max($value, $parameters) === $result);
    }

    /**
     * @return array
     */
    public function provideMin()
    {
        return [
            [32, [0]],
            [7, [7]],
            ['99', [10]],
            [3, [42], false],
        ];
    }

    /**
     * @covers       \Engelsystem\Http\Validation\Validates::min
     * @param mixed $value
     * @param array $parameters
     * @param bool  $result
     * @dataProvider provideMin
     */
    public function testMin($value, array $parameters, bool $result = true)
    {
        $val = new Validates;
        $this->assertTrue($val->min($value, $parameters) === $result);
    }

    /**
     * @return array
     */
    public function provideNotIn()
    {
        return [
            [77, ['50,60,70']],
            ['test', ['coding,deployment']],
            ['PHP', ['Java,PHP,bash'], false],
        ];
    }

    /**
     * @covers       \Engelsystem\Http\Validation\Validates::notIn
     * @param mixed $value
     * @param array $parameters
     * @param bool  $result
     * @dataProvider provideNotIn
     */
    public function testNotIn($value, array $parameters, bool $result = true)
    {
        $val = new Validates;
        $this->assertTrue($val->notIn($value, $parameters) === $result);
    }

    /**
     * @return array
     */
    public function provideNumeric()
    {
        return [
            [77],
            ['42'],
            ['1337e0'],
            ['123f00', false],
            [null, false],
        ];
    }

    /**
     * @covers       \Engelsystem\Http\Validation\Validates::numeric
     * @param mixed $value
     * @param bool  $result
     * @dataProvider provideNumeric
     */
    public function testNumeric($value, bool $result = true)
    {
        $val = new Validates;
        $this->assertTrue($val->numeric($value) === $result);
    }

    /**
     * @return array
     */
    public function provideRequired()
    {
        return [
            ['Lorem ipsum'],
            ['1234'],
            [1234],
            ['0'],
            [0],
            ['', false],
            [' ', false],
            [null, false],
        ];
    }

    /**
     * @covers       \Engelsystem\Http\Validation\Validates::required
     * @param mixed $value
     * @param bool  $result
     * @dataProvider provideRequired
     */
    public function testRequired($value, bool $result = true)
    {
        $val = new Validates;
        $this->assertTrue($val->required($value) === $result);
    }

    /**
     * @covers \Engelsystem\Http\Validation\Validates::getSize
     */
    public function testGetSize()
    {
        $val = new Validates;
        $this->assertTrue($val->max(42, [999]));
        $this->assertTrue($val->max('99', [100]));
        $this->assertFalse($val->max('101', [100]));
        $this->assertTrue($val->max('lorem', [5]));
        $this->assertFalse($val->max('Lorem Ipsum', [5]));
    }

    /**
     * @covers \Engelsystem\Http\Validation\Validates::validateParameterCount
     */
    public function testValidateParameterCount()
    {
        $val = new Validates;
        $this->assertTrue($val->between(42, [1, 100]));

        $this->expectException(InvalidArgumentException::class);
        $val->between(42, [1]);
    }
}