-
Notifications
You must be signed in to change notification settings - Fork 1.2k
/
Copy pathInputValidationMiddlewareTest.php
189 lines (176 loc) · 5.43 KB
/
InputValidationMiddlewareTest.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
<?php
namespace Aws\Test;
use Aws\Api\DateTimeResult;
use Aws\AwsClient;
use Aws\EndpointParameterMiddleware;
use Aws\HandlerList;
use Aws\Api\Service;
use Aws\InputValidationMiddleware;
use Cassandra\Time;
use GuzzleHttp\Psr7\Request;
use PHPUnit\Framework\TestCase;
/**
* @covers \Aws\InputValidationMiddleware
*/
class InputValidationMiddlewareTest extends TestCase
{
/**
* Data provider for exceptions treated as invalid argument exceptions
*
* @return array
*/
public function getInvalidEndpointExceptions()
{
return [
[''],
[' '],
[' '],
[null],
];
}
/**
* Data provider for exceptions treated as invalid argument exceptions
*
* @return array
*/
public function getValidInputs()
{
return [
['existing data'],
[' q '],
[[]],
[['abc']],
[0],
[DateTimeResult::fromEpoch(time())],
];
}
/**
* @dataProvider getInvalidEndpointExceptions
*
* @param $input
*/
public function testThrowsExceptions($input)
{
$service = $this->generateTestService();
$client = $this->generateTestClient($service);
$command = $client->getCommand('RequiredOp', ['InputParameter' => $input]);
$mandatoryInputList = ['InputParameter'];
$list = new HandlerList();
$list->setHandler(function ($command) {
return;
});
$list->appendValidate(
InputValidationMiddleware::wrap($service, $mandatoryInputList)
);
$handler = $list->resolve();
try {
$handler($command, new Request('POST', 'https://foo.com'));
$this->fail('Test should have thrown an InvalidArgumentException for not having required parameter set.');
} catch (\InvalidArgumentException $e) {
$this->assertEquals(
"The RequiredOp operation requires non-empty parameter: InputParameter",
$e->getMessage()
);
}
}
/**
* @dataProvider getInvalidEndpointExceptions
*
* @param $input
*/
public function testNoValidationWithoutInputList($input)
{
$service = $this->generateTestService();
$client = $this->generateTestClient($service);
$command = $client->getCommand('RequiredOp', ['InputParameter' => $input]);
$mandatoryInputList = [];
$list = new HandlerList();
$list->setHandler(function ($command) {
return "success";
});
$list->appendValidate(
InputValidationMiddleware::wrap($service, $mandatoryInputList)
);
$handler = $list->resolve();
$result = $handler($command, new Request('POST', 'https://foo.com'));
self::assertSame($result, "success");
}
/**
* @dataProvider getValidInputs
*
* @param $input
*/
public function testPassingValidations($input)
{
$service = $this->generateTestService();
$client = $this->generateTestClient($service);
$command = $client->getCommand('RequiredOp', ['InputParameter' => $input]);
$mandatoryInputList = ['InputParameter'];
$list = new HandlerList();
$list->setHandler(function ($command) {
return "success";
});
$list->appendValidate(
InputValidationMiddleware::wrap($service, $mandatoryInputList)
);
$handler = $list->resolve();
$result = $handler($command, new Request('POST', 'https://foo.com'));
self::assertSame($result, "success");
}
private function generateTestClient(Service $service, $args = [])
{
return new AwsClient(
array_merge(
[
'service' => 'foo',
'api_provider' => function () use ($service) {
return $service->toArray();
},
'region' => 'us-east-1',
'version' => 'latest',
],
$args
)
);
}
private function generateTestService()
{
return new Service(
[
'metadata' => [
"protocol" => "json",
"apiVersion" => "2014-01-01",
"jsonVersion" => "1.1"
],
'shapes' => [
"InputShape" => [
"type" => "structure",
"required" => [
"InputParameter"
],
"members" => [
"RequiredInputParameter" => [
"shape" => "StringType"
],
],
],
"StringType"=> [
"type"=> "string"
],
],
'operations' => [
"RequiredOp"=> [
"name"=> "RequiredOp",
"http"=> [
"method"=> "POST",
"requestUri"=> "/",
"responseCode"=> 200
],
"input"=> ["shape"=> "InputShape"],
],
],
],
function () { return []; }
);
}
}