Skip to content

Commit 8fb00c7

Browse files
committed
get the number of subscribers of list, Fix #115
Signed-off-by: Xheni Myrtaj <[email protected]>
1 parent c8e3636 commit 8fb00c7

File tree

2 files changed

+76
-0
lines changed

2 files changed

+76
-0
lines changed

src/Controller/ListController.php

+15
Original file line numberDiff line numberDiff line change
@@ -16,6 +16,7 @@
1616
* This controller provides REST API access to subscriber lists.
1717
*
1818
* @author Oliver Klee <[email protected]>
19+
* @author Xheni Myrtaj <[email protected]>
1920
*/
2021
class ListController extends FOSRestController implements ClassResourceInterface
2122
{
@@ -96,4 +97,18 @@ public function getMembersAction(Request $request, SubscriberList $list): View
9697

9798
return View::create()->setData($list->getSubscribers());
9899
}
100+
101+
/**
102+
* Gets the total number of subscribers of a list.
103+
* @param Request $request
104+
* @param SubscriberList $list
105+
*
106+
* @return View
107+
*/
108+
public function getNumberAction(Request $request, SubscriberList $list): View
109+
{
110+
$this->requireAuthentication($request);
111+
112+
return View::create()->setData(count($list->getSubscribers()));
113+
}
99114
}

tests/Integration/Controller/ListControllerTest.php

+61
Original file line numberDiff line numberDiff line change
@@ -10,6 +10,8 @@
1010
* Testcase.
1111
*
1212
* @author Oliver Klee <[email protected]>
13+
* @author Xheni Myrtaj <[email protected]>
14+
*
1315
*/
1416
class ListControllerTest extends AbstractControllerTest
1517
{
@@ -320,4 +322,63 @@ public function getListMembersWithCurrentSessionKeyForExistingListWithSubscriber
320322
]
321323
);
322324
}
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+
}
323384
}

0 commit comments

Comments
 (0)