Skip to content

Commit 07e8698

Browse files
committed
Add export to benchmark
1 parent ec7b0e7 commit 07e8698

File tree

2 files changed

+14
-4
lines changed

2 files changed

+14
-4
lines changed

benchmarks/AjvSchemasBench.php

+7-2
Original file line numberDiff line numberDiff line change
@@ -30,9 +30,14 @@ public function benchSpec($params)
3030
$options->schemasCache = self::$schemas;
3131

3232
$schema = Schema::import($case['schema'], $options);
33-
34-
$options->validateOnly = true;
33+
// import with defaults applied
3534
$schema->in($case['data'], $options);
35+
36+
// default is not required to pass validation, so result might be invalid
37+
// for back-exporting defaults have to be disabled
38+
$options->applyDefaults = false;
39+
$imported = $schema->in($case['data'], $options);
40+
$schema->out($imported);
3641
} catch (InvalidValue $exception) {
3742
$actualValid = false;
3843
}

benchmarks/Draft7Bench.php

+7-2
Original file line numberDiff line numberDiff line change
@@ -30,9 +30,14 @@ public function benchSpec($params)
3030
$options->schemasCache = self::$schemas;
3131

3232
$schema = Schema::import($case['schema'], $options);
33-
34-
$options->validateOnly = true;
33+
// import with defaults applied
3534
$schema->in($case['data'], $options);
35+
36+
// default is not required to pass validation, so result might be invalid
37+
// for back-exporting defaults have to be disabled
38+
$options->applyDefaults = false;
39+
$imported = $schema->in($case['data'], $options);
40+
$schema->out($imported);
3641
} catch (InvalidValue $exception) {
3742
$actualValid = false;
3843
}

0 commit comments

Comments
 (0)