mirror of
https://github.com/danog/Valinor.git
synced 2025-01-10 14:48:20 +01:00
69ad3f4777
The cache implementation that was previously injected in the mapper builder must now be manually injected. This gives better control on when the cache should be enabled, especially depending on which environment the application is running. The library provides a cache implementation out of the box, which saves cache entries into the file system. It is also possible to use any PSR-16 compliant implementation, as long as it is capable of caching the entries handled by the library. ```php $cache = new \CuyZ\Valinor\Cache\FileSystemCache('path/to/cache-dir'); (new \CuyZ\Valinor\MapperBuilder()) ->withCache($cache) ->mapper() ->map(SomeClass::class, [/* … */]); ```
164 lines
5.8 KiB
PHP
164 lines
5.8 KiB
PHP
<?php
|
|
|
|
declare(strict_types=1);
|
|
|
|
namespace CuyZ\Valinor\Tests\Integration\Mapping\Object;
|
|
|
|
use CuyZ\Valinor\Mapper\MappingError;
|
|
use CuyZ\Valinor\MapperBuilder;
|
|
use CuyZ\Valinor\Tests\Integration\IntegrationTest;
|
|
use CuyZ\Valinor\Tests\Integration\Mapping\Fixture\NativeUnionValues;
|
|
use CuyZ\Valinor\Tests\Integration\Mapping\Fixture\NativeUnionValuesWithConstructor;
|
|
|
|
final class UnionValuesMappingTest extends IntegrationTest
|
|
{
|
|
public function test_values_are_mapped_properly(): void
|
|
{
|
|
$source = [
|
|
'scalarWithBoolean' => true,
|
|
'scalarWithFloat' => 42.404,
|
|
'scalarWithInteger' => 1337,
|
|
'scalarWithString' => 'foo',
|
|
'nullableWithString' => 'bar',
|
|
'nullableWithNull' => null,
|
|
'intOrLiteralTrue' => true,
|
|
'intOrLiteralFalse' => false,
|
|
'positiveFloatValue' => 1337.42,
|
|
'negativeFloatValue' => -1337.42,
|
|
'positiveIntegerValue' => 1337,
|
|
'negativeIntegerValue' => -1337,
|
|
'stringValueWithSingleQuote' => 'bar',
|
|
'stringValueWithDoubleQuote' => 'fiz',
|
|
];
|
|
|
|
$classes = [UnionValues::class, UnionValuesWithConstructor::class];
|
|
|
|
if (PHP_VERSION_ID >= 8_00_00) {
|
|
$classes[] = NativeUnionValues::class;
|
|
$classes[] = NativeUnionValuesWithConstructor::class;
|
|
}
|
|
|
|
foreach ($classes as $class) {
|
|
try {
|
|
$result = (new MapperBuilder())->mapper()->map($class, $source);
|
|
} catch (MappingError $error) {
|
|
$this->mappingFail($error);
|
|
}
|
|
|
|
self::assertSame(true, $result->scalarWithBoolean);
|
|
self::assertSame(42.404, $result->scalarWithFloat);
|
|
self::assertSame(1337, $result->scalarWithInteger);
|
|
self::assertSame('foo', $result->scalarWithString);
|
|
self::assertSame('bar', $result->nullableWithString);
|
|
self::assertSame(null, $result->nullableWithNull);
|
|
self::assertSame(true, $result->intOrLiteralTrue);
|
|
self::assertSame(false, $result->intOrLiteralFalse);
|
|
|
|
if ($result instanceof UnionValues) {
|
|
self::assertSame(1337.42, $result->positiveFloatValue);
|
|
self::assertSame(-1337.42, $result->negativeFloatValue);
|
|
self::assertSame(1337, $result->positiveIntegerValue);
|
|
self::assertSame(-1337, $result->negativeIntegerValue);
|
|
self::assertSame('bar', $result->stringValueWithSingleQuote);
|
|
self::assertSame('fiz', $result->stringValueWithDoubleQuote);
|
|
}
|
|
}
|
|
}
|
|
}
|
|
|
|
class UnionValues
|
|
{
|
|
/** @var bool|float|int|string */
|
|
public $scalarWithBoolean = 'Schwifty!';
|
|
|
|
/** @var bool|float|int|string */
|
|
public $scalarWithFloat = 'Schwifty!';
|
|
|
|
/** @var bool|float|int|string */
|
|
public $scalarWithInteger = 'Schwifty!';
|
|
|
|
/** @var bool|float|int|string */
|
|
public $scalarWithString = 'Schwifty!';
|
|
|
|
/** @var string|null|float */
|
|
public $nullableWithString = 'Schwifty!';
|
|
|
|
/** @var string|null|float */
|
|
public $nullableWithNull = 'Schwifty!';
|
|
|
|
/** @var int|true */
|
|
public $intOrLiteralTrue = 42;
|
|
|
|
/** @var int|false */
|
|
public $intOrLiteralFalse = 42;
|
|
|
|
/** @var 404.42|1337.42 */
|
|
public float $positiveFloatValue = 404.42;
|
|
|
|
/** @var -404.42|-1337.42 */
|
|
public float $negativeFloatValue = -404.42;
|
|
|
|
/** @var 42|1337 */
|
|
public int $positiveIntegerValue = 42;
|
|
|
|
/** @var -42|-1337 */
|
|
public int $negativeIntegerValue = -42;
|
|
|
|
/** @var 'foo'|'bar' */
|
|
public string $stringValueWithSingleQuote;
|
|
|
|
/** @var "baz"|"fiz" */
|
|
public string $stringValueWithDoubleQuote;
|
|
}
|
|
|
|
class UnionValuesWithConstructor extends UnionValues
|
|
{
|
|
/**
|
|
* @param bool|float|int|string $scalarWithBoolean
|
|
* @param bool|float|int|string $scalarWithFloat
|
|
* @param bool|float|int|string $scalarWithInteger
|
|
* @param bool|float|int|string $scalarWithString
|
|
* @param string|null|float $nullableWithString
|
|
* @param string|null|float $nullableWithNull
|
|
* @param int|true $intOrLiteralTrue
|
|
* @param int|false $intOrLiteralFalse
|
|
* @param 404.42|1337.42 $positiveFloatValue
|
|
* @param -404.42|-1337.42 $negativeFloatValue
|
|
* @param 42|1337 $positiveIntegerValue
|
|
* @param -42|-1337 $negativeIntegerValue
|
|
* @param 'foo'|'bar' $stringValueWithSingleQuote
|
|
* @param "baz"|"fiz" $stringValueWithDoubleQuote
|
|
*/
|
|
public function __construct(
|
|
$scalarWithBoolean = 'Schwifty!',
|
|
$scalarWithFloat = 'Schwifty!',
|
|
$scalarWithInteger = 'Schwifty!',
|
|
$scalarWithString = 'Schwifty!',
|
|
$nullableWithString = 'Schwifty!',
|
|
$nullableWithNull = 'Schwifty!',
|
|
$intOrLiteralTrue = 42,
|
|
$intOrLiteralFalse = 42,
|
|
float $positiveFloatValue = 404.42,
|
|
float $negativeFloatValue = -404.42,
|
|
int $positiveIntegerValue = 42,
|
|
int $negativeIntegerValue = -42,
|
|
string $stringValueWithSingleQuote = 'foo',
|
|
string $stringValueWithDoubleQuote = 'baz'
|
|
) {
|
|
$this->scalarWithBoolean = $scalarWithBoolean;
|
|
$this->scalarWithFloat = $scalarWithFloat;
|
|
$this->scalarWithInteger = $scalarWithInteger;
|
|
$this->scalarWithString = $scalarWithString;
|
|
$this->nullableWithString = $nullableWithString;
|
|
$this->nullableWithNull = $nullableWithNull;
|
|
$this->intOrLiteralTrue = $intOrLiteralTrue;
|
|
$this->intOrLiteralFalse = $intOrLiteralFalse;
|
|
$this->positiveFloatValue = $positiveFloatValue;
|
|
$this->negativeFloatValue = $negativeFloatValue;
|
|
$this->positiveIntegerValue = $positiveIntegerValue;
|
|
$this->negativeIntegerValue = $negativeIntegerValue;
|
|
$this->stringValueWithSingleQuote = $stringValueWithSingleQuote;
|
|
$this->stringValueWithDoubleQuote = $stringValueWithDoubleQuote;
|
|
}
|
|
}
|