2019-01-26 03:19:20 -06:00
|
|
|
<?php
|
2019-10-05 10:26:10 -05:00
|
|
|
|
2019-01-26 03:19:20 -06:00
|
|
|
declare(strict_types=1);
|
|
|
|
|
2019-08-11 09:30:46 -05:00
|
|
|
namespace Shlinkio\Shlink\TestUtils;
|
2019-01-26 03:19:20 -06:00
|
|
|
|
2019-01-27 05:14:18 -06:00
|
|
|
use Doctrine\ORM\EntityManager;
|
2019-01-26 03:19:20 -06:00
|
|
|
use Psr\Container\ContainerInterface;
|
2019-02-26 15:56:43 -06:00
|
|
|
|
2020-09-26 03:43:50 -05:00
|
|
|
use function register_shutdown_function;
|
|
|
|
use function sprintf;
|
|
|
|
|
|
|
|
use const ShlinkioTest\Shlink\SWOOLE_TESTING_HOST;
|
|
|
|
use const ShlinkioTest\Shlink\SWOOLE_TESTING_PORT;
|
|
|
|
|
2019-01-26 03:19:20 -06:00
|
|
|
/** @var ContainerInterface $container */
|
|
|
|
$container = require __DIR__ . '/../container.php';
|
2019-08-11 09:30:46 -05:00
|
|
|
$testHelper = $container->get(Helper\TestHelper::class);
|
2019-01-27 05:14:18 -06:00
|
|
|
$config = $container->get('config');
|
|
|
|
$em = $container->get(EntityManager::class);
|
2020-09-26 03:43:50 -05:00
|
|
|
$httpClient = $container->get('shlink_test_api_client');
|
|
|
|
|
|
|
|
// Start code coverage collecting on swoole process, and stop it when process shuts down
|
|
|
|
$httpClient->request('GET', sprintf('http://%s:%s/api-tests/start-coverage', SWOOLE_TESTING_HOST, SWOOLE_TESTING_PORT));
|
|
|
|
register_shutdown_function(function () use ($httpClient): void {
|
|
|
|
$httpClient->request(
|
|
|
|
'GET',
|
|
|
|
sprintf('http://%s:%s/api-tests/stop-coverage', SWOOLE_TESTING_HOST, SWOOLE_TESTING_PORT),
|
|
|
|
);
|
|
|
|
});
|
2019-01-27 05:14:18 -06:00
|
|
|
|
2019-03-05 13:36:35 -06:00
|
|
|
$testHelper->createTestDb();
|
2020-09-26 03:43:50 -05:00
|
|
|
ApiTest\ApiTestCase::setApiClient($httpClient);
|
2019-12-29 16:16:55 -06:00
|
|
|
ApiTest\ApiTestCase::setSeedFixturesCallback(fn () => $testHelper->seedFixtures($em, $config['data_fixtures'] ?? []));
|