forked from apigee/apigee-client-php
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathDeveloperControllerTest.php
More file actions
238 lines (219 loc) · 9.44 KB
/
DeveloperControllerTest.php
File metadata and controls
238 lines (219 loc) · 9.44 KB
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
<?php
/*
* Copyright 2018 Google LLC
*
* Licensed under the Apache License, Version 2.0 (the "License");
* you may not use this file except in compliance with the License.
* You may obtain a copy of the License at
*
* https://www.apache.org/licenses/LICENSE-2.0
*
* Unless required by applicable law or agreed to in writing, software
* distributed under the License is distributed on an "AS IS" BASIS,
* WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
* See the License for the specific language governing permissions and
* limitations under the License.
*/
namespace Apigee\Edge\Tests\Api\Management\Controller;
use Apigee\Edge\Api\Management\Entity\Developer;
use Apigee\Edge\Api\Management\Entity\DeveloperInterface;
use Apigee\Edge\ClientInterface;
use Apigee\Edge\Entity\EntityInterface;
use Apigee\Edge\Structure\AttributesProperty;
use Apigee\Edge\Tests\Api\Management\Entity\DeveloperTestEntityProviderTrait;
use Apigee\Edge\Tests\Api\Management\Entity\ParameterUrlEncodingTestTrait;
use Apigee\Edge\Tests\Test\Controller\DefaultAPIClientAwareTrait;
use Apigee\Edge\Tests\Test\Controller\EntityControllerTesterInterface;
use Apigee\Edge\Tests\Test\Controller\EntityCreateOperationControllerTester;
use Apigee\Edge\Tests\Test\Controller\EntityCreateOperationControllerTestTrait;
use Apigee\Edge\Tests\Test\Controller\EntityCreateOperationTestControllerTesterInterface;
use Apigee\Edge\Tests\Test\Controller\EntityDeleteOperationControllerTestTrait;
use Apigee\Edge\Tests\Test\Controller\EntityLoadOperationControllerTestTrait;
use Apigee\Edge\Tests\Test\Controller\EntityUpdateOperationControllerTestTrait;
use Apigee\Edge\Tests\Test\Controller\MockClientAwareTrait;
use Apigee\Edge\Tests\Test\TestClientFactory;
use Apigee\Edge\Tests\Test\Utility\MarkOnlineTestSkippedAwareTrait;
use Composer\InstalledVersions;
use GuzzleHttp\Psr7\Response;
use stdClass;
/**
* Class DeveloperControllerTest.
*
* @group controller
* @group management
*/
class DeveloperControllerTest extends EntityControllerTestBase
{
use DeveloperControllerAwareTestTrait;
use DeveloperTestEntityProviderTrait;
use DefaultAPIClientAwareTrait;
use MarkOnlineTestSkippedAwareTrait;
use MockClientAwareTrait;
use ParameterUrlEncodingTestTrait;
// The order of these trait matters. Check @depends in test methods.
use EntityCreateOperationControllerTestTrait;
use EntityLoadOperationControllerTestTrait;
use EntityUpdateOperationControllerTestTrait;
use EntityDeleteOperationControllerTestTrait;
use PaginatedEntityListingControllerTestTraitBase;
use PaginatedEntityIdListingControllerTestTrait;
use PaginatedEntityListingControllerTestTrait;
use AttributesAwareEntityControllerTestTrait;
/**
* @group online
*/
public function testCreateWithIncorrectData(): void
{
$this->expectException('\Apigee\Edge\Exception\ClientErrorException');
static::markOnlineTestSkipped(__FUNCTION__);
$entity = new Developer(['email' => 'developer-create-exception@example.com']);
static::entityCreateOperationTestController()->create($entity);
}
/**
* @group online
*/
public function testStatusChange(): void
{
static::markOnlineTestSkipped(__FUNCTION__);
/** @var \Apigee\Edge\Api\Management\Controller\DeveloperControllerInterface $controller */
$controller = static::entityController();
/** @var DeveloperInterface $entity */
$entity = static::getNewEntity();
$controller->create($entity);
$controller->setStatus($entity->id(), DeveloperInterface::STATUS_INACTIVE);
$entity = $controller->load($entity->id());
$this->assertEquals($entity->getStatus(), DeveloperInterface::STATUS_INACTIVE);
$controller->setStatus($entity->id(), DeveloperInterface::STATUS_ACTIVE);
$entity = $controller->load($entity->id());
$this->assertEquals($entity->getStatus(), DeveloperInterface::STATUS_ACTIVE);
}
public function testGetDeveloperByApp(): void
{
$this->expectException('\Apigee\Edge\Api\Management\Exception\DeveloperNotFoundException');
$developer = (object) [
'createdAt' => time() * 1000,
'lastModifiedAt' => time() * 1000,
'createdBy' => 'phpunit@example.com',
'lastModifiedBy' => 'phpunit@example.com',
'name' => 'phpunit',
'firstName' => 'phpunit',
'lastName' => 'phpunit',
'developerId' => 'phpunit',
'email' => 'phpunit@example.com',
'organizationName' => 'phpunit',
'attributes' => [],
'companies' => [],
'status' => DeveloperInterface::STATUS_ACTIVE,
];
/** @var \Apigee\Edge\Api\Management\Controller\DeveloperControllerInterface $controller */
$controller = static::entityController(static::mockApiClient());
/** @var \Apigee\Edge\Tests\Test\HttpClient\MockHttpClient $httpClient */
$httpClient = static::mockApiClient()->getMockHttpClient();
$httpClient->addResponse(new Response(200, ['Content-Type' => 'application/json'], json_encode(['developer' => [$developer]])));
// Non-empty response payload can be parsed.
$this->assertInstanceOf(DeveloperInterface::class, $controller->getDeveloperByApp('app1'));
// Empty response should trigger an exception.
$httpClient->addResponse(new Response(200, ['Content-Type' => 'application/json'], json_encode(['developer' => []])));
$controller->getDeveloperByApp('app1');
}
/**
* {@inheritdoc}
*/
protected static function getEntityToTestUrlEncoding(): EntityInterface
{
// Use a developer email that makes use of URL encoding to test that CRUD works with encoding.
return new Developer([
'email' => 'php+unit+test@example.com',
'firstName' => static::randomGenerator()->displayName(),
'lastName' => static::randomGenerator()->displayName(),
'userName' => static::randomGenerator()->machineName(),
'attributes' => new AttributesProperty([static::randomGenerator()->machineName() => static::randomGenerator()->machineName()]),
]);
}
/**
* {@inheritdoc}
*/
protected function entityIdShouldBeUsedInPagination(EntityInterface $entity): string
{
/* @var \Apigee\Edge\Api\Management\Entity\DeveloperInterface $entity */
return $entity->getEmail();
}
/**
* {@inheritdoc}
*/
protected static function entityController(?ClientInterface $client = null): EntityControllerTesterInterface
{
return static::developerController($client);
}
/**
* {@inheritdoc}
*/
protected static function getNewEntity(): EntityInterface
{
return static::getNewDeveloper(!TestClientFactory::isOfflineClient(static::defaultAPIClient()));
}
/**
* {@inheritdoc}
*/
protected function entityForUpdateTest(EntityInterface $existing): EntityInterface
{
/* @var \Apigee\Edge\Api\Management\Entity\DeveloperInterface $existing */
return static::getUpdatedDeveloper($existing, !TestClientFactory::isOfflineClient(static::defaultAPIClient()));
}
/**
* {@inheritdoc}
*/
protected static function entityCreateOperationTestController(): EntityCreateOperationTestControllerTesterInterface
{
return new EntityCreateOperationControllerTester(static::entityController());
}
/**
* {@inheritdoc}
*/
protected function alterArraysBeforeCompareSentAndReceivedPayloadsInCreate(array &$sentEntityAsArray, array $responseEntityAsArray): void
{
// Get the version string (e.g., "6.4.12")
$version = InstalledVersions::getVersion('symfony/serializer');
if (version_compare($version, '7.3.11', '>=')) {
// The originalEmail property is not returned by the API on creation.
unset($sentEntityAsArray['originalEmail']);
}
}
/**
* {@inheritdoc}
*/
protected function alterObjectsBeforeCompareResponseAndCreatedEntity(stdClass &$responseObject, EntityInterface $created): void
{
$version = InstalledVersions::getVersion('symfony/serializer');
if (version_compare($version, '7.3.11', '>=')) {
// The originalEmail property is not returned by the API on creation.
if ($created instanceof Developer) {
$responseObject->originalEmail = $created->originalEmail();
}
}
}
/**
* {@inheritdoc}
*/
protected function alterArraysBeforeCompareSentAndReceivedPayloadsInUpdate(array &$sentEntityAsArray, array $responseEntityAsArray): void
{
$version = InstalledVersions::getVersion('symfony/serializer');
if (version_compare($version, '7.3.11', '>=')) {
// The originalEmail property is not returned by the API on update.
unset($sentEntityAsArray['originalEmail']);
}
}
/**
* {@inheritdoc}
*/
protected function alterObjectsBeforeCompareResponseAndUpdateEntity(stdClass &$responseObject, EntityInterface $updated): void
{
$version = InstalledVersions::getVersion('symfony/serializer');
if (version_compare($version, '7.3.11', '>=')) {
// The originalEmail property is not returned by the API on update.
if ($updated instanceof Developer) {
$responseObject->originalEmail = $updated->originalEmail();
}
}
}
}