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 15, 2024
1 parent 5b12640 commit 305763d
Show file tree
Hide file tree
Showing 2 changed files with 89 additions and 1 deletion.
3 changes: 2 additions & 1 deletion src/ApiPlatform/Resources/Hook.php
Original file line number Diff line number Diff line change
Expand Up @@ -36,6 +36,7 @@
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\CQRSUpdate;
use PrestaShopBundle\ApiPlatform\Metadata\CQRSPartialUpdate;
use PrestaShopBundle\ApiPlatform\Metadata\DQBPaginatedList;
use PrestaShopBundle\ApiPlatform\Processor\CommandProcessor;
Expand Down Expand Up @@ -72,7 +73,7 @@
CQRSQuery: GetHookStatus::class,
scopes: ['hook_read']
),
new CQRSPartialUpdate(
new CQRSUpdate(
uriTemplate: '/hook-status',
processor: CommandProcessor::class,
CQRSCommand: UpdateHookStatusCommand::class,
Expand Down
87 changes: 87 additions & 0 deletions tests/Integration/ApiPlatform/ListHooksTest.php
Original file line number Diff line number Diff line change
@@ -0,0 +1,87 @@
<?php

/**
* Copyright since 2007 PrestaShop SA and Contributors
* PrestaShop is an International Registered Trademark & Property of PrestaShop SA
*
* NOTICE OF LICENSE
*
* This source file is subject to the Open Software License (OSL 3.0)
* that is bundled with this package in the file LICENSE.md.
* It is also available through the world-wide-web at this URL:
* https://opensource.org/licenses/OSL-3.0
* If you did not receive a copy of the license and are unable to
* obtain it through the world-wide-web, please send an email
* to [email protected] so we can send you a copy immediately.
*
* DISCLAIMER
*
* Do not edit or add to this file if you wish to upgrade PrestaShop to newer
* versions in the future. If you wish to customize PrestaShop for your
* needs please refer to https://devdocs.prestashop.com/ for more information.
*
* @author PrestaShop SA and Contributors <[email protected]>
* @copyright Since 2007 PrestaShop SA and Contributors
* @license https://opensource.org/licenses/OSL-3.0 Open Software License (OSL 3.0)
*/

declare(strict_types=1);

namespace PsApiResourcesTest\Integration\ApiPlatform;

use Tests\Resources\DatabaseDump;

class ListHooksTest extends ApiTestCase
{
public static function setUpBeforeClass(): void
{
parent::setUpBeforeClass();
DatabaseDump::restoreTables(['hook']);
}

public static function tearDownAfterClass(): void
{
parent::tearDownAfterClass();
DatabaseDump::restoreTables(['hook']);
}

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(20, json_decode($response->getContent())->items);

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

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 <= 20; ++$i) {
$hook = new \Hook();
$hook->name = 'testHook' . $i;
$hook->active = true;
$hook->add();
$hooks[] = $hook;
}

return $hooks;
}
}

0 comments on commit 305763d

Please sign in to comment.