-
-
Notifications
You must be signed in to change notification settings - Fork 1
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Added cors middleware test [SLE-197]
- Loading branch information
1 parent
2eb03a8
commit 522c01c
Showing
8 changed files
with
51 additions
and
20 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,23 @@ | ||
<?php | ||
|
||
namespace Api; | ||
|
||
use App\Test\Trait\AppTestTrait; | ||
use PHPUnit\Framework\TestCase; | ||
use TestTraits\Trait\HttpTestTrait; | ||
|
||
class CorsMiddlewareTest extends TestCase | ||
{ | ||
use AppTestTrait; | ||
use HttpTestTrait; | ||
|
||
public function testCorsMiddleware(): void | ||
{ | ||
// Make options request | ||
$request = $this->createRequest('OPTIONS', ''); | ||
$response = $this->app->handle($request); | ||
$allowedUrl = $this->container->get('settings')['api']['allowed_origin']; | ||
// Check that the response contains the Access-Control-Allow-Origin header | ||
self::assertSame($allowedUrl, $response->getHeaderLine('Access-Control-Allow-Origin')); | ||
} | ||
} |