-
Notifications
You must be signed in to change notification settings - Fork 27
Expand file tree
/
Copy pathAdminControllerNegativeTest.php
More file actions
224 lines (206 loc) · 8.62 KB
/
Copy pathAdminControllerNegativeTest.php
File metadata and controls
224 lines (206 loc) · 8.62 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
<?php
/*
* Copyright (c) 2025-2026 Netresearch DTT GmbH
* SPDX-License-Identifier: AGPL-3.0-only
*/
declare(strict_types=1);
namespace Tests\Controller;
use Tests\AbstractWebTestCase;
use function assert;
use function is_string;
/**
* @internal
*
* @coversNothing
*/
final class AdminControllerNegativeTest extends AbstractWebTestCase
{
public function testSaveCustomerDuplicateName(): void
{
$this->logInSession('unittest');
// Name already exists in fixtures: 'Der Bäcker von nebenan'
$parameter = [
'name' => 'Der Bäcker von nebenan',
'teams' => [1],
];
$this->client->request(\Symfony\Component\HttpFoundation\Request::METHOD_POST, '/customer/save', $parameter, [], ['HTTP_ACCEPT' => 'application/json']);
$this->assertStatusCode(422);
$content = $this->client->getResponse()->getContent();
self::assertNotEmpty($content);
}
public function testSaveProjectDuplicateNameForCustomer(): void
{
$this->logInSession('unittest');
// For customer 1, project 'Das Kuchenbacken' already exists
$parameter = [
'name' => 'Das Kuchenbacken',
'customer' => 1,
];
$this->client->request(\Symfony\Component\HttpFoundation\Request::METHOD_POST, '/project/save', $parameter, [], ['HTTP_ACCEPT' => 'application/json']);
$this->assertStatusCode(422);
$content = $this->client->getResponse()->getContent();
self::assertNotEmpty($content);
}
public function testSaveTeamMissingLeadUser(): void
{
$this->logInSession('unittest');
$parameter = [
'name' => 'Team ohne Lead',
// missing lead_user_id
];
$this->client->request(\Symfony\Component\HttpFoundation\Request::METHOD_POST, '/team/save', $parameter, [], ['HTTP_ACCEPT' => 'application/json']);
$this->assertStatusCode(422);
$content = $this->client->getResponse()->getContent();
self::assertNotEmpty($content);
}
public function testSaveActivityDuplicateName(): void
{
$this->logInSession('unittest');
// 'Entwicklung' exists
$parameter = [
'name' => 'Entwicklung',
'factor' => 1,
];
$this->client->request(\Symfony\Component\HttpFoundation\Request::METHOD_POST, '/activity/save', $parameter, [], ['HTTP_ACCEPT' => 'application/json']);
$this->assertStatusCode(422);
$content = $this->client->getResponse()->getContent();
self::assertNotEmpty($content);
}
public function testSaveTicketSystemDuplicateName(): void
{
$this->logInSession('unittest');
// 'testSystem' exists in fixtures
$parameter = [
'name' => 'testSystem',
'type' => '',
'url' => '',
'ticketUrl' => '',
];
try {
$this->client->request(\Symfony\Component\HttpFoundation\Request::METHOD_POST, '/ticketsystem/save', $parameter, [], ['HTTP_ACCEPT' => 'application/json']);
$this->assertStatusCode(422);
} catch (\Symfony\Component\HttpKernel\Exception\UnprocessableEntityHttpException) {
self::fail('Unexpected 422 for duplicate name; should be business-rule 406');
}
}
public function testSaveUserInvalidAbbrLength(): void
{
$this->logInSession('unittest');
$parameter = [
'username' => 'newuser1',
'abbr' => 'WXYZ', // invalid length (more than 3 characters)
'teams' => ['1'],
'locale' => 'de',
'type' => 'DEV',
];
$this->client->request(\Symfony\Component\HttpFoundation\Request::METHOD_POST, '/user/save', $parameter, [], ['HTTP_ACCEPT' => 'application/json']);
$this->assertStatusCode(422);
$content = $this->client->getResponse()->getContent();
self::assertIsString($content);
$data = json_decode($content, true);
self::assertIsArray($data);
self::assertArrayHasKey('message', $data);
// Validation message may be localized, just ensure we got a validation error
assert(is_string($data['message']));
self::assertMatchesRegularExpression('/Zeichen|characters|abbr/i', $data['message']);
}
public function testSaveUserDuplicateUsername(): void
{
$this->logInSession('unittest');
$parameter = [
'username' => 'developer', // already exists in fixtures
'abbr' => 'DEV',
'teams' => ['1'],
'locale' => 'de',
'type' => 'DEV',
];
$this->client->request(\Symfony\Component\HttpFoundation\Request::METHOD_POST, '/user/save', $parameter, [], ['HTTP_ACCEPT' => 'application/json']);
$this->assertStatusCode(422);
$content = $this->client->getResponse()->getContent();
self::assertIsString($content);
$data = json_decode($content, true);
self::assertIsArray($data);
self::assertArrayHasKey('message', $data);
// Validation message may be localized
assert(is_string($data['message']));
self::assertMatchesRegularExpression('/exists|existiert|bereits/i', $data['message']);
}
public function testSaveUserNoTeams(): void
{
$this->logInSession('unittest');
$parameter = [
'username' => 'newuser2',
'abbr' => 'NU2',
'teams' => [], // no team
'locale' => 'de',
'type' => 'DEV',
];
$this->client->request(\Symfony\Component\HttpFoundation\Request::METHOD_POST, '/user/save', $parameter, [], ['HTTP_ACCEPT' => 'application/json']);
$this->assertStatusCode(422);
$content = $this->client->getResponse()->getContent();
self::assertIsString($content);
$data = json_decode($content, true);
self::assertIsArray($data);
self::assertArrayHasKey('message', $data);
// Validation message may be localized
assert(is_string($data['message']));
self::assertMatchesRegularExpression('/teams|Team|sollte nicht leer sein/i', $data['message']);
}
public function testSaveCustomerNoTeamsNotGlobal(): void
{
$this->logInSession('unittest');
$parameter = [
'name' => 'NoTeamCustomer',
'global' => 0,
'teams' => [],
];
$this->client->request(\Symfony\Component\HttpFoundation\Request::METHOD_POST, '/customer/save', $parameter, [], ['HTTP_ACCEPT' => 'application/json']);
$this->assertStatusCode(422);
$content = $this->client->getResponse()->getContent();
self::assertNotEmpty($content);
}
public function testSaveTeamDuplicateName(): void
{
$this->logInSession('unittest');
$parameter = [
'name' => 'Hackerman', // exists in fixtures
'lead_user_id' => 1,
];
$this->client->request(\Symfony\Component\HttpFoundation\Request::METHOD_POST, '/team/save', $parameter, [], ['HTTP_ACCEPT' => 'application/json']);
$this->assertStatusCode(422);
$content = $this->client->getResponse()->getContent();
self::assertNotEmpty($content);
}
public function testSaveProjectInvalidJiraPrefix(): void
{
$this->logInSession('unittest');
$parameter = [
'name' => 'JiraPrefixInvalid',
'customer' => 1,
'jiraId' => 'foo-', // invalid character (hyphen) remains after strtoupper
];
$this->client->request(\Symfony\Component\HttpFoundation\Request::METHOD_POST, '/project/save', $parameter, [], ['HTTP_ACCEPT' => 'application/json']);
$this->assertStatusCode(422);
$content = $this->client->getResponse()->getContent();
self::assertNotEmpty($content);
}
public function testSaveTicketSystemShortName(): void
{
$this->logInSession('unittest');
$parameter = [
'name' => 'te', // too short
'type' => '',
'url' => '',
'ticketUrl' => '',
];
try {
$this->client->request(\Symfony\Component\HttpFoundation\Request::METHOD_POST, '/ticketsystem/save', $parameter, [], ['HTTP_ACCEPT' => 'application/json']);
$this->assertStatusCode(422);
$content = $this->client->getResponse()->getContent();
self::assertNotEmpty($content);
} catch (\Symfony\Component\HttpKernel\Exception\UnprocessableEntityHttpException $unprocessableEntityHttpException) {
self::assertSame(422, $unprocessableEntityHttpException->getStatusCode());
}
}
// Skipping a test for missing preset relations due to strict type setters causing TypeError
}