Skip to content

Commit

Permalink
test: priority test
Browse files Browse the repository at this point in the history
  • Loading branch information
soyuka committed Mar 7, 2024
1 parent 1c2509f commit c9ecdfa
Show file tree
Hide file tree
Showing 2 changed files with 44 additions and 0 deletions.
33 changes: 33 additions & 0 deletions tests/Fixtures/TestBundle/ApiResource/OperationPriorities.php
@@ -0,0 +1,33 @@
<?php

/*
* This file is part of the API Platform project.
*
* (c) Kévin Dunglas <dunglas@gmail.com>
*
* For the full copyright and license information, please view the LICENSE
* file that was distributed with this source code.
*/

declare(strict_types=1);

namespace ApiPlatform\Tests\Fixtures\TestBundle\ApiResource;

use ApiPlatform\Metadata\Get;

#[Get(name: 'a', priority: -1, uriTemplate: 'operation_priority/{id}', provider: [self::class, 'shouldNotBeCalled'])]
#[Get(name: 'b', priority: 1, uriTemplate: 'operation_priority/{id}', provider: [self::class, 'shouldBeCalled'])]
class OperationPriorities
{
public int $id = 1;

public static function shouldBeCalled(): self
{
return new self();
}

public static function shouldNotBeCalled(): self
{
throw new \Exception('fail');
}
}
11 changes: 11 additions & 0 deletions tests/Symfony/Bundle/Test/ApiTestCaseTest.php
Expand Up @@ -267,6 +267,17 @@ public function testFindIriBy(): void
$this->assertNull(self::findIriBy($resource, ['name' => 'not-exist']));
}

public function testGetPrioritizedOperation(): void
{
$r = self::createClient()->request('GET', '/operation_priority/1', [
'headers' => [
'accept' => 'application/ld+json',
],
]);
$this->assertResponseIsSuccessful();
dd($r->toArray());
}

/**
* @group mercure
*/
Expand Down

0 comments on commit c9ecdfa

Please sign in to comment.