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 91 92 93 94 95 96 97 98 99 100 101 102 103
|
<?php
/*
* This file is part of the JsonSchema package.
*
* For the full copyright and license information, please view the LICENSE
* file that was distributed with this source code.
*/
namespace JsonSchema\Tests\Constraints;
use JsonSchema\Constraints\Factory;
use JsonSchema\SchemaStorage;
use JsonSchema\Validator;
class LongArraysTest extends VeryBaseTestCase
{
protected $validateSchema = true;
public function testLongStringArray(): void
{
$schema =
'{
"type":"object",
"properties":{
"p_array":{
"type":"array",
"items":{"type":"string"}
}
}
}';
$tmp = new \stdClass();
$tmp->p_array = array_map(function ($i) {
return '#' . $i;
}, range(1, 100000));
$input = json_encode($tmp);
$schemaStorage = new SchemaStorage($this->getUriRetrieverMock(json_decode($schema)));
$schema = $schemaStorage->getSchema('http://www.my-domain.com/schema.json');
$validator = new Validator(new Factory($schemaStorage));
$checkValue = json_decode($input);
$validator->validate($checkValue, $schema);
$this->assertTrue($validator->isValid(), print_r($validator->getErrors(), true));
}
public function testLongNumberArray(): void
{
$schema =
'{
"type":"object",
"properties":{
"p_array":{
"type":"array",
"items":{"type":"number"}
}
}
}';
$tmp = new \stdClass();
$tmp->p_array = array_map(function ($i) {
return rand(1, 1000) / 1000.0;
}, range(1, 100000));
$input = json_encode($tmp);
$schemaStorage = new SchemaStorage($this->getUriRetrieverMock(json_decode($schema)));
$schema = $schemaStorage->getSchema('http://www.my-domain.com/schema.json');
$validator = new Validator(new Factory($schemaStorage));
$checkValue = json_decode($input);
$validator->validate($checkValue, $schema);
$this->assertTrue($validator->isValid(), print_r($validator->getErrors(), true));
}
public function testLongIntegerArray(): void
{
$schema =
'{
"type":"object",
"properties":{
"p_array":{
"type":"array",
"items":{"type":"integer"}
}
}
}';
$tmp = new \stdClass();
$tmp->p_array = array_map(function ($i) {
return $i;
}, range(1, 100000));
$input = json_encode($tmp);
$schemaStorage = new SchemaStorage($this->getUriRetrieverMock(json_decode($schema)));
$schema = $schemaStorage->getSchema('http://www.my-domain.com/schema.json');
$validator = new Validator(new Factory($schemaStorage));
$checkValue = json_decode($input);
$validator->validate($checkValue, $schema);
$this->assertTrue($validator->isValid(), print_r($validator->getErrors(), true));
}
}
|