2023-11-24 22:36:33 +04:00
|
|
|
<?php
|
2023-11-27 22:39:35 +04:00
|
|
|
namespace nur\sery\schema\schemas;
|
2023-11-24 22:36:33 +04:00
|
|
|
|
|
|
|
use nulib\tests\TestCase;
|
2023-11-27 22:39:35 +04:00
|
|
|
use nur\sery\schema\SchemaException;
|
|
|
|
use nur\sery\schema\schemas\ScalarSchema;
|
2023-11-24 22:36:33 +04:00
|
|
|
|
|
|
|
class ScalarSchemaTest extends TestCase {
|
|
|
|
const NULL_SCHEMA = [
|
|
|
|
"type" => [null],
|
|
|
|
"default" => null,
|
|
|
|
"title" => null,
|
|
|
|
"required" => false,
|
|
|
|
"nullable" => true,
|
|
|
|
"desc" => null,
|
|
|
|
"analyzer_func" => null,
|
|
|
|
"extractor_func" => null,
|
|
|
|
"parser_func" => null,
|
|
|
|
"normalizer_func" => null,
|
|
|
|
"messages" => null,
|
|
|
|
"formatter_func" => null,
|
|
|
|
"format" => null,
|
|
|
|
"" => ["scalar"],
|
|
|
|
"name" => null,
|
2023-11-27 22:39:35 +04:00
|
|
|
"pkey" => null,
|
2023-11-25 10:04:24 +04:00
|
|
|
"header" => null,
|
|
|
|
"composite" => null,
|
2023-11-24 22:36:33 +04:00
|
|
|
];
|
|
|
|
|
|
|
|
static function schema(array $schema): array {
|
|
|
|
return array_merge(self::NULL_SCHEMA, $schema);
|
|
|
|
}
|
|
|
|
|
|
|
|
function testNormalize() {
|
|
|
|
self::assertSame(self::NULL_SCHEMA, ScalarSchema::normalize(null));
|
|
|
|
self::assertSame(self::NULL_SCHEMA, ScalarSchema::normalize([]));
|
|
|
|
self::assertSame(self::NULL_SCHEMA, ScalarSchema::normalize([null]));
|
|
|
|
self::assertException(SchemaException::class, function () {
|
|
|
|
ScalarSchema::normalize([[]]);
|
|
|
|
});
|
|
|
|
self::assertException(SchemaException::class, function () {
|
|
|
|
ScalarSchema::normalize([[null]]);
|
|
|
|
});
|
|
|
|
|
|
|
|
$string = self::schema(["type" => ["string"], "nullable" => false]);
|
|
|
|
self::assertSame($string, ScalarSchema::normalize("string"));
|
|
|
|
self::assertSame($string, ScalarSchema::normalize(["string"]));
|
|
|
|
|
|
|
|
$nstring = self::schema(["type" => ["string"]]);
|
|
|
|
self::assertSame($nstring, ScalarSchema::normalize(["?string"]));
|
|
|
|
self::assertSame($nstring, ScalarSchema::normalize(["?string|null"]));
|
|
|
|
self::assertSame($nstring, ScalarSchema::normalize(["string|null"]));
|
|
|
|
self::assertSame($nstring, ScalarSchema::normalize([["?string", "null"]]));
|
|
|
|
self::assertSame($nstring, ScalarSchema::normalize([["string", "null"]]));
|
|
|
|
self::assertSame($nstring, ScalarSchema::normalize([["string", null]]));
|
|
|
|
|
|
|
|
$key = self::schema(["type" => ["string", "int"], "nullable" => false]);
|
|
|
|
self::assertSame($key, ScalarSchema::normalize("key"));
|
|
|
|
self::assertSame($key, ScalarSchema::normalize("key|string"));
|
|
|
|
|
|
|
|
$nkey = self::schema(["type" => ["string", "int"], "nullable" => true]);
|
|
|
|
self::assertSame($nkey, ScalarSchema::normalize("?key"));
|
|
|
|
self::assertSame($nkey, ScalarSchema::normalize("?key|string"));
|
|
|
|
}
|
|
|
|
}
|