|
10 | 10 | * Testcase.
|
11 | 11 | *
|
12 | 12 | * @author Oliver Klee <[email protected]>
|
| 13 | + * @author Xheni Myrtaj <[email protected]> |
13 | 14 | */
|
14 | 15 | class ListControllerTest extends AbstractControllerTest
|
15 | 16 | {
|
@@ -107,6 +108,16 @@ public function getListsWithCurrentSessionKeyReturnsListData()
|
107 | 108 | 'public' => true,
|
108 | 109 | 'category' => '',
|
109 | 110 | 'id' => 2,
|
| 111 | + ], |
| 112 | + [ |
| 113 | + 'name' => 'Tech news', |
| 114 | + 'description' => '', |
| 115 | + 'creation_date' => '2019-02-11T15:01:15+00:00', |
| 116 | + 'list_position' => 12, |
| 117 | + 'subject_prefix' => '', |
| 118 | + 'public' => true, |
| 119 | + 'category' => '', |
| 120 | + 'id' => 3, |
110 | 121 | ]
|
111 | 122 | ]
|
112 | 123 | );
|
@@ -320,4 +331,83 @@ public function getListMembersWithCurrentSessionKeyForExistingListWithSubscriber
|
320 | 331 | ]
|
321 | 332 | );
|
322 | 333 | }
|
| 334 | + |
| 335 | + /** |
| 336 | + * @test |
| 337 | + */ |
| 338 | + public function getListCountForExistingListWithoutSessionKeyReturnsForbiddenStatus() |
| 339 | + { |
| 340 | + $this->getDataSet()->addTable(static::LISTS_TABLE_NAME, __DIR__ . '/Fixtures/SubscriberList.csv'); |
| 341 | + $this->applyDatabaseChanges(); |
| 342 | + |
| 343 | + $this->client->request('get', '/api/v2/lists/1/count'); |
| 344 | + |
| 345 | + $this->assertHttpForbidden(); |
| 346 | + } |
| 347 | + |
| 348 | + /** |
| 349 | + * @test |
| 350 | + */ |
| 351 | + public function getListCountForExistingListWithExpiredSessionKeyReturnsForbiddenStatus() |
| 352 | + { |
| 353 | + $this->getDataSet()->addTable(static::LISTS_TABLE_NAME, __DIR__ . '/Fixtures/SubscriberList.csv'); |
| 354 | + $this->getDataSet()->addTable(static::ADMINISTRATOR_TABLE_NAME, __DIR__ . '/Fixtures/Administrator.csv'); |
| 355 | + $this->getDataSet()->addTable(static::TOKEN_TABLE_NAME, __DIR__ . '/Fixtures/AdministratorToken.csv'); |
| 356 | + $this->applyDatabaseChanges(); |
| 357 | + |
| 358 | + $this->client->request( |
| 359 | + 'get', |
| 360 | + '/api/v2/lists/1/count', |
| 361 | + [], |
| 362 | + [], |
| 363 | + ['PHP_AUTH_USER' => 'unused', 'PHP_AUTH_PW' => 'cfdf64eecbbf336628b0f3071adba763'] |
| 364 | + ); |
| 365 | + |
| 366 | + $this->assertHttpForbidden(); |
| 367 | + } |
| 368 | + |
| 369 | + /** |
| 370 | + * @test |
| 371 | + */ |
| 372 | + public function getListCountWithCurrentSessionKeyForExistingListReturnsOkayStatus() |
| 373 | + { |
| 374 | + $this->getDataSet()->addTable(static::LISTS_TABLE_NAME, __DIR__ . '/Fixtures/SubscriberList.csv'); |
| 375 | + $this->applyDatabaseChanges(); |
| 376 | + |
| 377 | + $this->authenticatedJsonRequest('get', '/api/v2/lists/1/count'); |
| 378 | + |
| 379 | + $this->assertHttpOkay(); |
| 380 | + } |
| 381 | + |
| 382 | + /** |
| 383 | + * @test |
| 384 | + */ |
| 385 | + public function getListCountWithCurrentSessionKeyForExistingListWithSubscribersReturnsSubscribersCount() |
| 386 | + { |
| 387 | + $this->getDataSet()->addTable(static::LISTS_TABLE_NAME, __DIR__ . '/Fixtures/SubscriberList.csv'); |
| 388 | + $this->getDataSet()->addTable(static::SUBSCRIBER_TABLE_NAME, __DIR__ . '/Fixtures/Subscriber.csv'); |
| 389 | + $this->getDataSet()->addTable(static::SUBSCRIPTION_TABLE_NAME, __DIR__ . '/Fixtures/Subscription.csv'); |
| 390 | + $this->applyDatabaseChanges(); |
| 391 | + |
| 392 | + $this->authenticatedJsonRequest('get', '/api/v2/lists/2/count'); |
| 393 | + $response = $this->getDecodedJsonResponseContent(); |
| 394 | + |
| 395 | + static::assertSame(1, $response); |
| 396 | + } |
| 397 | + |
| 398 | + /** |
| 399 | + * @test |
| 400 | + */ |
| 401 | + public function getListCountWithCurrentSessionKeyForExistingListWithNoSubscribersReturnsZero() |
| 402 | + { |
| 403 | + $this->getDataSet()->addTable(static::LISTS_TABLE_NAME, __DIR__ . '/Fixtures/SubscriberList.csv'); |
| 404 | + $this->getDataSet()->addTable(static::SUBSCRIBER_TABLE_NAME, __DIR__ . '/Fixtures/Subscriber.csv'); |
| 405 | + $this->getDataSet()->addTable(static::SUBSCRIPTION_TABLE_NAME, __DIR__ . '/Fixtures/Subscription.csv'); |
| 406 | + $this->applyDatabaseChanges(); |
| 407 | + |
| 408 | + $this->authenticatedJsonRequest('get', '/api/v2/lists/3/count'); |
| 409 | + $response = $this->getDecodedJsonResponseContent(); |
| 410 | + |
| 411 | + static::assertSame(0, $response); |
| 412 | + } |
323 | 413 | }
|
0 commit comments