File tree 2 files changed +14
-4
lines changed
2 files changed +14
-4
lines changed Original file line number Diff line number Diff line change @@ -30,9 +30,14 @@ public function benchSpec($params)
30
30
$ options ->schemasCache = self ::$ schemas ;
31
31
32
32
$ schema = Schema::import ($ case ['schema ' ], $ options );
33
-
34
- $ options ->validateOnly = true ;
33
+ // import with defaults applied
35
34
$ 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 );
36
41
} catch (InvalidValue $ exception ) {
37
42
$ actualValid = false ;
38
43
}
Original file line number Diff line number Diff line change @@ -30,9 +30,14 @@ public function benchSpec($params)
30
30
$ options ->schemasCache = self ::$ schemas ;
31
31
32
32
$ schema = Schema::import ($ case ['schema ' ], $ options );
33
-
34
- $ options ->validateOnly = true ;
33
+ // import with defaults applied
35
34
$ 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 );
36
41
} catch (InvalidValue $ exception ) {
37
42
$ actualValid = false ;
38
43
}
You can’t perform that action at this time.
0 commit comments