|
10 | 10 | * Testcase.
|
11 | 11 | *
|
12 | 12 | * @author Oliver Klee <[email protected]>
|
| 13 | + * @author Xheni Myrtaj <[email protected]> |
| 14 | + * |
13 | 15 | */
|
14 | 16 | class ListControllerTest extends AbstractControllerTest
|
15 | 17 | {
|
@@ -320,4 +322,63 @@ public function getListMembersWithCurrentSessionKeyForExistingListWithSubscriber
|
320 | 322 | ]
|
321 | 323 | );
|
322 | 324 | }
|
| 325 | + |
| 326 | + /** |
| 327 | + * @test |
| 328 | + */ |
| 329 | + public function getListNumberForExistingListWithoutSessionKeyReturnsForbiddenStatus() |
| 330 | + { |
| 331 | + $this->getDataSet()->addTable(static::LISTS_TABLE_NAME, __DIR__ . '/Fixtures/SubscriberList.csv'); |
| 332 | + $this->applyDatabaseChanges(); |
| 333 | + |
| 334 | + $this->client->request('get', '/api/v2/lists/1/number'); |
| 335 | + |
| 336 | + $this->assertHttpForbidden(); |
| 337 | + } |
| 338 | + |
| 339 | + /** |
| 340 | + * @test |
| 341 | + */ |
| 342 | + public function getListNumberForExistingListWithExpiredSessionKeyReturnsForbiddenStatus() |
| 343 | + { |
| 344 | + $this->getDataSet()->addTable(static::LISTS_TABLE_NAME, __DIR__ . '/Fixtures/SubscriberList.csv'); |
| 345 | + $this->getDataSet()->addTable(static::ADMINISTRATOR_TABLE_NAME, __DIR__ . '/Fixtures/Administrator.csv'); |
| 346 | + $this->getDataSet()->addTable(static::TOKEN_TABLE_NAME, __DIR__ . '/Fixtures/AdministratorToken.csv'); |
| 347 | + $this->applyDatabaseChanges(); |
| 348 | + |
| 349 | + $this->client->request( |
| 350 | + 'get', |
| 351 | + '/api/v2/lists/1/number', |
| 352 | + [], |
| 353 | + [], |
| 354 | + ['PHP_AUTH_USER' => 'unused', 'PHP_AUTH_PW' => 'cfdf64eecbbf336628b0f3071adba763'] |
| 355 | + ); |
| 356 | + |
| 357 | + $this->assertHttpForbidden(); |
| 358 | + } |
| 359 | + |
| 360 | + /** |
| 361 | + * @test |
| 362 | + */ |
| 363 | + public function getListNumberWithCurrentSessionKeyForExistingListReturnsOkayStatus() |
| 364 | + { |
| 365 | + $this->getDataSet()->addTable(static::LISTS_TABLE_NAME, __DIR__ . '/Fixtures/SubscriberList.csv'); |
| 366 | + $this->applyDatabaseChanges(); |
| 367 | + |
| 368 | + $this->authenticatedJsonRequest('get', '/api/v2/lists/1/number'); |
| 369 | + |
| 370 | + $this->assertHttpOkay(); |
| 371 | + } |
| 372 | + |
| 373 | + public function getListNumberWithCurrentSessionKeyForExistingListWithSubscribersReturnsSubscribers() |
| 374 | + { |
| 375 | + $this->getDataSet()->addTable(static::LISTS_TABLE_NAME, __DIR__ . '/Fixtures/SubscriberList.csv'); |
| 376 | + $this->getDataSet()->addTable(static::SUBSCRIBER_TABLE_NAME, __DIR__ . '/Fixtures/Subscriber.csv'); |
| 377 | + $this->getDataSet()->addTable(static::SUBSCRIPTION_TABLE_NAME, __DIR__ . '/Fixtures/Subscription.csv'); |
| 378 | + $this->applyDatabaseChanges(); |
| 379 | + |
| 380 | + $this->authenticatedJsonRequest('get', '/api/v2/lists/2/number'); |
| 381 | + |
| 382 | + $this->assertEquals(1, true); |
| 383 | + } |
323 | 384 | }
|
0 commit comments