1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 52 53 54 55 56 57 58 59 60 61 62 63 64 65 66 67 68 69 70 71 72 73 74 75 76 77 78 79 80 81 82 83 84 85 86 87 88 89 90
|
<?php
declare(strict_types=1);
namespace PhpMyAdmin\Tests\Config\Settings;
use PhpMyAdmin\Config\Settings\Debug;
use PHPUnit\Framework\TestCase;
use function array_keys;
use function array_merge;
/**
* @covers \PhpMyAdmin\Config\Settings\Debug
*/
#[\PHPUnit\Framework\Attributes\CoversClass(\PhpMyAdmin\Config\Settings\Debug::class)]
class DebugTest extends TestCase
{
/** @var array<string, bool> */
private $defaultValues = ['sql' => false, 'sqllog' => false, 'demo' => false, 'simple2fa' => false];
/**
* @param mixed[][] $values
* @psalm-param (array{0: string, 1: mixed, 2: mixed})[] $values
*
* @dataProvider providerForTestConstructor
*/
#[\PHPUnit\Framework\Attributes\DataProvider('providerForTestConstructor')]
public function testConstructor(array $values): void
{
$actualValues = [];
$expectedValues = [];
/** @psalm-suppress MixedAssignment */
foreach ($values as $value) {
$actualValues[$value[0]] = $value[1];
$expectedValues[$value[0]] = $value[2];
}
$expected = array_merge($this->defaultValues, $expectedValues);
$settings = new Debug($actualValues);
foreach (array_keys($expectedValues) as $key) {
self::assertSame($expected[$key], $settings->$key);
}
}
/**
* [setting key, actual value, expected value]
*
* @return mixed[][][][]
* @psalm-return (array{0: string, 1: mixed, 2: mixed})[][][]
*/
public static function providerForTestConstructor(): array
{
return [
'null values' => [
[
['sql', null, false],
['sqllog', null, false],
['demo', null, false],
['simple2fa', null, false],
],
],
'valid values' => [
[
['sql', false, false],
['sqllog', false, false],
['demo', false, false],
['simple2fa', false, false],
],
],
'valid values 2' => [
[
['sql', true, true],
['sqllog', true, true],
['demo', true, true],
['simple2fa', true, true],
],
],
'valid values with type coercion' => [
[
['sql', 1, true],
['sqllog', 1, true],
['demo', 1, true],
['simple2fa', 1, true],
],
],
];
}
}
|