2019-01-26 02:42:01 -06:00
|
|
|
<?php
|
2019-10-05 10:26:10 -05:00
|
|
|
|
2019-01-26 02:42:01 -06:00
|
|
|
declare(strict_types=1);
|
|
|
|
|
2019-08-11 09:30:46 -05:00
|
|
|
namespace Shlinkio\Shlink;
|
2019-01-26 02:42:01 -06:00
|
|
|
|
2019-01-26 03:19:20 -06:00
|
|
|
use GuzzleHttp\Client;
|
2020-01-01 14:11:53 -06:00
|
|
|
use Laminas\ConfigAggregator\ConfigAggregator;
|
|
|
|
use Laminas\ServiceManager\Factory\InvokableFactory;
|
2019-03-05 13:36:35 -06:00
|
|
|
use PDO;
|
2019-02-26 15:56:43 -06:00
|
|
|
|
2019-03-05 13:36:35 -06:00
|
|
|
use function Shlinkio\Shlink\Common\env;
|
2019-01-29 06:05:26 -06:00
|
|
|
use function sprintf;
|
2019-01-26 02:42:01 -06:00
|
|
|
use function sys_get_temp_dir;
|
|
|
|
|
2019-01-29 06:05:26 -06:00
|
|
|
$swooleTestingHost = '127.0.0.1';
|
|
|
|
$swooleTestingPort = 9999;
|
|
|
|
|
2019-10-06 04:21:41 -05:00
|
|
|
$buildDbConnection = function (): array {
|
2019-03-05 13:36:35 -06:00
|
|
|
$driver = env('DB_DRIVER', 'sqlite');
|
2019-03-05 13:58:48 -06:00
|
|
|
$isCi = env('TRAVIS', false);
|
2019-12-29 16:16:55 -06:00
|
|
|
$getMysqlHost = fn (string $driver) => sprintf('shlink_db%s', $driver === 'mysql' ? '' : '_maria');
|
2020-05-04 12:55:03 -05:00
|
|
|
$getCiMysqlPort = fn (string $driver) => $driver === 'mysql' ? '3307' : '3308';
|
2019-03-05 13:36:35 -06:00
|
|
|
|
2019-10-06 04:21:41 -05:00
|
|
|
$driverConfigMap = [
|
|
|
|
'sqlite' => [
|
|
|
|
'driver' => 'pdo_sqlite',
|
|
|
|
'path' => sys_get_temp_dir() . '/shlink-tests.db',
|
|
|
|
],
|
|
|
|
'mysql' => [
|
|
|
|
'driver' => 'pdo_mysql',
|
|
|
|
'host' => $isCi ? '127.0.0.1' : $getMysqlHost($driver),
|
2020-05-04 12:55:03 -05:00
|
|
|
'port' => $isCi ? $getCiMysqlPort($driver) : '3306',
|
2019-10-06 04:21:41 -05:00
|
|
|
'user' => 'root',
|
2020-05-04 12:55:03 -05:00
|
|
|
'password' => 'root',
|
2019-10-06 04:21:41 -05:00
|
|
|
'dbname' => 'shlink_test',
|
|
|
|
'charset' => 'utf8',
|
|
|
|
'driverOptions' => [
|
|
|
|
PDO::MYSQL_ATTR_INIT_COMMAND => 'SET NAMES utf8',
|
2020-04-18 06:21:46 -05:00
|
|
|
PDO::MYSQL_ATTR_USE_BUFFERED_QUERY => true,
|
2019-10-06 04:21:41 -05:00
|
|
|
],
|
|
|
|
],
|
|
|
|
'postgres' => [
|
|
|
|
'driver' => 'pdo_pgsql',
|
|
|
|
'host' => $isCi ? '127.0.0.1' : 'shlink_db_postgres',
|
2020-05-04 12:55:03 -05:00
|
|
|
'port' => $isCi ? '5433' : '5432',
|
2019-10-06 04:21:41 -05:00
|
|
|
'user' => 'postgres',
|
2020-05-04 12:55:03 -05:00
|
|
|
'password' => 'root',
|
2019-10-06 04:21:41 -05:00
|
|
|
'dbname' => 'shlink_test',
|
|
|
|
'charset' => 'utf8',
|
|
|
|
],
|
2020-02-03 14:20:40 -06:00
|
|
|
'mssql' => [
|
|
|
|
'driver' => 'pdo_sqlsrv',
|
|
|
|
'host' => $isCi ? '127.0.0.1' : 'shlink_db_ms',
|
|
|
|
'user' => 'sa',
|
2020-05-04 12:55:03 -05:00
|
|
|
'password' => 'Passw0rd!',
|
2020-02-03 14:20:40 -06:00
|
|
|
'dbname' => 'shlink_test',
|
|
|
|
],
|
2019-10-06 04:21:41 -05:00
|
|
|
];
|
|
|
|
$driverConfigMap['maria'] = $driverConfigMap['mysql'];
|
|
|
|
|
|
|
|
return $driverConfigMap[$driver] ?? [];
|
2019-03-05 13:36:35 -06:00
|
|
|
};
|
|
|
|
|
2019-01-26 02:42:01 -06:00
|
|
|
return [
|
|
|
|
|
2019-01-26 03:59:24 -06:00
|
|
|
'debug' => true,
|
|
|
|
ConfigAggregator::ENABLE_CACHE => false,
|
|
|
|
|
2019-01-27 05:35:00 -06:00
|
|
|
'url_shortener' => [
|
|
|
|
'domain' => [
|
|
|
|
'schema' => 'http',
|
|
|
|
'hostname' => 'doma.in',
|
|
|
|
],
|
2019-12-31 09:29:32 -06:00
|
|
|
'validate_url' => true,
|
2019-01-27 05:35:00 -06:00
|
|
|
],
|
|
|
|
|
2020-01-01 14:11:53 -06:00
|
|
|
'mezzio-swoole' => [
|
2019-11-01 04:10:43 -05:00
|
|
|
'enable_coroutine' => false,
|
2019-01-26 02:42:01 -06:00
|
|
|
'swoole-http-server' => [
|
2019-01-29 06:05:26 -06:00
|
|
|
'host' => $swooleTestingHost,
|
|
|
|
'port' => $swooleTestingPort,
|
2019-01-26 03:19:20 -06:00
|
|
|
'process-name' => 'shlink_test',
|
2019-01-27 03:15:48 -06:00
|
|
|
'options' => [
|
|
|
|
'pid_file' => sys_get_temp_dir() . '/shlink-test-swoole.pid',
|
2019-11-01 04:10:43 -05:00
|
|
|
'enable_coroutine' => false,
|
2019-01-27 03:15:48 -06:00
|
|
|
],
|
2019-01-26 02:42:01 -06:00
|
|
|
],
|
|
|
|
],
|
|
|
|
|
2020-04-12 11:39:28 -05:00
|
|
|
'mercure' => [
|
|
|
|
'public_hub_url' => null,
|
|
|
|
'internal_hub_url' => null,
|
|
|
|
'jwt_secret' => null,
|
|
|
|
],
|
|
|
|
|
2019-01-26 02:42:01 -06:00
|
|
|
'dependencies' => [
|
2019-01-29 06:05:26 -06:00
|
|
|
'services' => [
|
|
|
|
'shlink_test_api_client' => new Client([
|
|
|
|
'base_uri' => sprintf('http://%s:%s/', $swooleTestingHost, $swooleTestingPort),
|
2019-01-30 11:28:07 -06:00
|
|
|
'http_errors' => false,
|
2019-01-29 06:05:26 -06:00
|
|
|
]),
|
|
|
|
],
|
2019-01-26 02:42:01 -06:00
|
|
|
'factories' => [
|
2019-08-11 09:30:46 -05:00
|
|
|
TestUtils\Helper\TestHelper::class => InvokableFactory::class,
|
2019-01-26 02:42:01 -06:00
|
|
|
],
|
|
|
|
],
|
|
|
|
|
|
|
|
'entity_manager' => [
|
2019-03-05 13:36:35 -06:00
|
|
|
'connection' => $buildDbConnection(),
|
2019-01-26 02:42:01 -06:00
|
|
|
],
|
|
|
|
|
2019-01-27 05:14:18 -06:00
|
|
|
'data_fixtures' => [
|
|
|
|
'paths' => [
|
|
|
|
__DIR__ . '/../../module/Rest/test-api/Fixtures',
|
|
|
|
],
|
|
|
|
],
|
|
|
|
|
2019-01-26 02:42:01 -06:00
|
|
|
];
|