Skip to content

Commit

Permalink
chore(api): list integration test
Browse files Browse the repository at this point in the history
  • Loading branch information
tleon committed Feb 22, 2024
1 parent 34f1b21 commit 9abb5d3
Show file tree
Hide file tree
Showing 5 changed files with 72 additions and 18 deletions.
6 changes: 0 additions & 6 deletions src/ApiPlatform/Resources/ApiClient.php
Original file line number Diff line number Diff line change
Expand Up @@ -39,8 +39,6 @@
use PrestaShopBundle\ApiPlatform\Metadata\CQRSDelete;
use PrestaShopBundle\ApiPlatform\Metadata\CQRSGet;
use PrestaShopBundle\ApiPlatform\Metadata\CQRSPartialUpdate;
use PrestaShopBundle\ApiPlatform\Processor\CommandProcessor;
use PrestaShopBundle\ApiPlatform\Provider\QueryProvider;

#[ApiResource(
operations: [
Expand All @@ -67,7 +65,6 @@
],
],
],
provider: QueryProvider::class,
CQRSQuery: GetApiClientForEditing::class,
scopes: ['api_client_read']
),
Expand Down Expand Up @@ -95,20 +92,17 @@
],
],
output: false,
provider: QueryProvider::class,
CQRSQuery: DeleteApiClientCommand::class,
scopes: ['api_client_write']
),
new CQRSCreate(
uriTemplate: '/api-client',
processor: CommandProcessor::class,
CQRSCommand: AddApiClientCommand::class,
scopes: ['api_client_write']
),
new CQRSPartialUpdate(
uriTemplate: '/api-client/{apiClientId}',
read: false,
processor: CommandProcessor::class,
CQRSCommand: EditApiClientCommand::class,
CQRSQuery: GetApiClientForEditing::class,
scopes: ['api_client_write']
Expand Down
2 changes: 0 additions & 2 deletions src/ApiPlatform/Resources/CartRule.php
Original file line number Diff line number Diff line change
Expand Up @@ -31,13 +31,11 @@
use ApiPlatform\Metadata\ApiResource;
use PrestaShop\PrestaShop\Core\Domain\CartRule\Command\EditCartRuleCommand;
use PrestaShopBundle\ApiPlatform\Metadata\CQRSPartialUpdate;
use PrestaShopBundle\ApiPlatform\Processor\CommandProcessor;

#[ApiResource(
operations: [
new CQRSPartialUpdate(
uriTemplate: '/cart-rule',
processor: CommandProcessor::class,
CQRSCommand: EditCartRuleCommand::class
),
],
Expand Down
2 changes: 0 additions & 2 deletions src/ApiPlatform/Resources/FoundProduct.php
Original file line number Diff line number Diff line change
Expand Up @@ -32,7 +32,6 @@
use ApiPlatform\Metadata\ApiResource;
use PrestaShop\PrestaShop\Core\Domain\Product\Query\SearchProducts;
use PrestaShopBundle\ApiPlatform\Metadata\CQRSQueryCollection;
use PrestaShopBundle\ApiPlatform\Provider\QueryProvider;

#[ApiResource(
operations: [
Expand Down Expand Up @@ -74,7 +73,6 @@
],
],
],
provider: QueryProvider::class,
CQRSQuery: SearchProducts::class
),
],
Expand Down
10 changes: 2 additions & 8 deletions src/ApiPlatform/Resources/Hook.php
Original file line number Diff line number Diff line change
Expand Up @@ -36,11 +36,9 @@
use PrestaShop\PrestaShop\Core\Domain\Hook\Query\GetHook;
use PrestaShop\PrestaShop\Core\Domain\Hook\Query\GetHookStatus;
use PrestaShopBundle\ApiPlatform\Metadata\CQRSGet;
use PrestaShopBundle\ApiPlatform\Metadata\CQRSPartialUpdate;
use PrestaShopBundle\ApiPlatform\Metadata\CQRSUpdate;
use PrestaShopBundle\ApiPlatform\Metadata\DQBPaginatedList;
use PrestaShopBundle\ApiPlatform\Processor\CommandProcessor;
use PrestaShopBundle\ApiPlatform\Provider\QueryListProvider;
use PrestaShopBundle\ApiPlatform\Provider\QueryProvider;

#[ApiResource(
operations: [
Expand Down Expand Up @@ -68,25 +66,21 @@
],
],
exceptionToStatus: [HookNotFoundException::class => 404],
provider: QueryProvider::class,
CQRSQuery: GetHookStatus::class,
scopes: ['hook_read']
),
new CQRSPartialUpdate(
new CQRSUpdate(
uriTemplate: '/hook-status',
processor: CommandProcessor::class,
CQRSCommand: UpdateHookStatusCommand::class,
scopes: ['hook_write']
),
new CQRSGet(
uriTemplate: '/hooks/{id}',
requirements: ['id' => '\d+'],
exceptionToStatus: [HookNotFoundException::class => 404],
provider: QueryProvider::class,
CQRSQuery: GetHook::class,
scopes: ['hook_read']
),
// PR module + inte module + convertir en custom ce qu'il reste en natif
new DQBPaginatedList(
uriTemplate: '/hooks',
provider: QueryListProvider::class,
Expand Down
70 changes: 70 additions & 0 deletions tests/Integration/ApiPlatform/GetHookTest.php
Original file line number Diff line number Diff line change
Expand Up @@ -69,4 +69,74 @@ public function testGetHook(): void

$hook->delete();
}

public function testListHooks(): void
{
$hooks = $this->generateHooks();
$bearerToken = $this->getBearerToken([
'hook_read',
'hook_write',
]);

$response = static::createClient()->request('GET', '/api/hooks', ['auth_bearer' => $bearerToken]);
self::assertResponseStatusCodeSame(200);
self::assertCount(50, json_decode($response->getContent())->items);
$totalItems = json_decode($response->getContent())->totalItems;

$response = static::createClient()->request('GET', '/api/hooks?limit=10', ['auth_bearer' => $bearerToken]);
self::assertResponseStatusCodeSame(200);
self::assertCount(10, json_decode($response->getContent())->items);

$response = static::createClient()->request('GET', '/api/hooks?limit=1&orderBy=id_hook&sortOrder=desc', ['auth_bearer' => $bearerToken]);
self::assertResponseStatusCodeSame(200);
self::assertCount(1, json_decode($response->getContent())->items);
$returnedHook = json_decode($response->getContent());
self::assertEquals('id_hook', $returnedHook->orderBy);
self::assertEquals('desc', $returnedHook->sortOrder);
self::assertEquals(1, $returnedHook->limit);
self::assertEquals([], $returnedHook->filters);
self::assertEquals('testHook50', $returnedHook->items[0]->name);
self::assertTrue($returnedHook->items[0]->active);

$response = static::createClient()->request('GET', '/api/hooks?filters[name]=testHook', ['auth_bearer' => $bearerToken]);
self::assertResponseStatusCodeSame(200);
self::assertCount(50, json_decode($response->getContent())->items);
foreach (json_decode($response->getContent())->items as $key => $item) {
self::assertEquals('testHook' . $key, $item->name);
}

$newHook = new \Hook();
$newHook->name = 'testHook51';
$newHook->active = true;
$newHook->add();
$hooks[] = $newHook;

$response = static::createClient()->request('GET', '/api/hooks', ['auth_bearer' => $bearerToken]);
self::assertResponseStatusCodeSame(200);
self::assertEquals($totalItems + 1, json_decode($response->getContent())->totalItems);

static::createClient()->request('GET', '/api/hooks');
self::assertResponseStatusCodeSame(401);

foreach ($hooks as $hook) {
$hook->delete();
}
}

/**
* @return \Hook[]
*/
protected function generateHooks(): array
{
$hooks = [];
for ($i = 0; $i <= 50; ++$i) {
$hook = new \Hook();
$hook->name = 'testHook' . $i;
$hook->active = true;
$hook->add();
$hooks[] = $hook;
}

return $hooks;
}
}

0 comments on commit 9abb5d3

Please sign in to comment.