slovocast/app/tests/TestCase.php

63 lines
1.5 KiB
PHP
Raw Normal View History

2024-05-22 02:33:17 +00:00
<?php
namespace Slovocast\Tests;
use PHPUnit\Framework\TestCase as PHPUnit_TestCase;
2024-05-30 02:15:59 +00:00
use Prophecy\PhpUnit\ProphecyTrait;
2024-05-22 02:33:17 +00:00
use Psr\Http\Message\ServerRequestInterface as Request;
use Slim\App;
use Slim\Psr7\Factory\StreamFactory;
use Slim\Psr7\Headers;
use Slim\Psr7\Request as SlimRequest;
use Slim\Psr7\Uri;
2024-05-23 00:39:33 +00:00
use Slovocast\Bootstrap;
2024-05-22 02:33:17 +00:00
/**
* This is the common test harness pattern lifted right out of the official
* SlimPHP Skeleton application.
*/
class TestCase extends PHPUnit_TestCase
{
2024-05-30 02:15:59 +00:00
use ProphecyTrait;
2024-05-22 02:33:17 +00:00
/**
* Generate an instance of the Application
*/
protected function getAppInstance(): App
{
2024-05-23 00:39:33 +00:00
return Bootstrap::init();
2024-05-22 02:33:17 +00:00
}
/**
* @param string $method
* @param string path
* @param array $headers
* @param array $cookies
* @param array $serverParams
*/
protected function createRequest(
string $method,
string $path,
array $headers = [],
array $cookies = [],
array $serverParams = []
): Request {
$uri = new Uri('', '', 80, $path);
$handle = fopen('php://temp', 'w+');
$stream = (new StreamFactory())->createStreamFromResource($handle);
$h = new Headers();
foreach ($headers as $name => $value) {
$h->addHeader($name, $value);
}
return new SlimRequest(
$method,
$uri,
$h,
$cookies,
$serverParams,
$stream
);
}
}