@@ -67,42 +67,42 @@ public function testCreateFromRequest(): void
6767 {
6868 $ request = Request::create ('/foos/1 ' );
6969 $ request ->attributes ->replace (['_api_resource_class ' => 'Foo ' , '_api_operation_name ' => 'get ' , '_api_format ' => 'xml ' , '_api_mime_type ' => 'text/xml ' ]);
70- $ expected = ['foo ' => 'bar ' , 'operation_name ' => 'get ' , 'resource_class ' => 'Foo ' , 'request_uri ' => '/foos/1 ' , 'uri ' => 'http://localhost/foos/1 ' , 'output ' => null , 'input ' => null , 'iri_only ' => false , 'skip_null_values ' => true , 'operation ' => $ this ->operation , 'exclude_from_cache_key ' => ['root_operation ' , 'operation ' , 'object ' , 'data ' , 'property_metadata ' , 'circular_reference_limit_counters ' , 'debug_trace_id ' ]];
70+ $ expected = ['foo ' => 'bar ' , 'operation_name ' => 'get ' , 'resource_class ' => 'Foo ' , 'request_uri ' => '/foos/1 ' , 'uri ' => 'http://localhost/foos/1 ' , 'output ' => null , 'input ' => null , 'iri_only ' => false , 'skip_null_values ' => true , 'operation ' => $ this ->operation , 'exclude_from_cache_key ' => ['root_operation ' , 'operation ' , 'object ' , 'data ' , 'property_metadata ' , 'circular_reference_limit_counters ' , 'debug_trace_id ' ], ' skip_null_to_one_relations ' => true ];
7171 $ this ->assertEquals ($ expected , $ this ->builder ->createFromRequest ($ request , true ));
7272
7373 $ request = Request::create ('/foos ' );
7474 $ request ->attributes ->replace (['_api_resource_class ' => 'Foo ' , '_api_operation_name ' => 'get_collection ' , '_api_format ' => 'xml ' , '_api_mime_type ' => 'text/xml ' ]);
75- $ expected = ['foo ' => 'bar ' , 'operation_name ' => 'get_collection ' , 'resource_class ' => 'Foo ' , 'request_uri ' => '/foos ' , 'uri ' => 'http://localhost/foos ' , 'output ' => null , 'input ' => null , 'iri_only ' => false , 'skip_null_values ' => true , 'operation ' => $ this ->operation ->withName ('get_collection ' ), 'exclude_from_cache_key ' => ['root_operation ' , 'operation ' , 'object ' , 'data ' , 'property_metadata ' , 'circular_reference_limit_counters ' , 'debug_trace_id ' ]];
75+ $ expected = ['foo ' => 'bar ' , 'operation_name ' => 'get_collection ' , 'resource_class ' => 'Foo ' , 'request_uri ' => '/foos ' , 'uri ' => 'http://localhost/foos ' , 'output ' => null , 'input ' => null , 'iri_only ' => false , 'skip_null_values ' => true , 'operation ' => $ this ->operation ->withName ('get_collection ' ), 'exclude_from_cache_key ' => ['root_operation ' , 'operation ' , 'object ' , 'data ' , 'property_metadata ' , 'circular_reference_limit_counters ' , 'debug_trace_id ' ], ' skip_null_to_one_relations ' => true ];
7676 $ this ->assertEquals ($ expected , $ this ->builder ->createFromRequest ($ request , true ));
7777
7878 $ request = Request::create ('/foos/1 ' );
7979 $ request ->attributes ->replace (['_api_resource_class ' => 'Foo ' , '_api_operation_name ' => 'get ' , '_api_format ' => 'xml ' , '_api_mime_type ' => 'text/xml ' ]);
80- $ expected = ['bar ' => 'baz ' , 'operation_name ' => 'get ' , 'resource_class ' => 'Foo ' , 'request_uri ' => '/foos/1 ' , 'api_allow_update ' => false , 'uri ' => 'http://localhost/foos/1 ' , 'output ' => null , 'input ' => null , 'iri_only ' => false , 'skip_null_values ' => true , 'operation ' => $ this ->operation , 'exclude_from_cache_key ' => ['root_operation ' , 'operation ' , 'object ' , 'data ' , 'property_metadata ' , 'circular_reference_limit_counters ' , 'debug_trace_id ' ]];
80+ $ expected = ['bar ' => 'baz ' , 'operation_name ' => 'get ' , 'resource_class ' => 'Foo ' , 'request_uri ' => '/foos/1 ' , 'api_allow_update ' => false , 'uri ' => 'http://localhost/foos/1 ' , 'output ' => null , 'input ' => null , 'iri_only ' => false , 'skip_null_values ' => true , 'operation ' => $ this ->operation , 'exclude_from_cache_key ' => ['root_operation ' , 'operation ' , 'object ' , 'data ' , 'property_metadata ' , 'circular_reference_limit_counters ' , 'debug_trace_id ' ], ' skip_null_to_one_relations ' => true ];
8181 $ this ->assertEquals ($ expected , $ this ->builder ->createFromRequest ($ request , false ));
8282
8383 $ request = Request::create ('/foos ' , 'POST ' );
8484 $ request ->attributes ->replace (['_api_resource_class ' => 'Foo ' , '_api_operation_name ' => 'post ' , '_api_format ' => 'xml ' , '_api_mime_type ' => 'text/xml ' ]);
85- $ expected = ['bar ' => 'baz ' , 'operation_name ' => 'post ' , 'resource_class ' => 'Foo ' , 'request_uri ' => '/foos ' , 'api_allow_update ' => false , 'uri ' => 'http://localhost/foos ' , 'output ' => null , 'input ' => null , 'iri_only ' => false , 'skip_null_values ' => true , 'operation ' => $ this ->operation ->withName ('post ' ), 'exclude_from_cache_key ' => ['root_operation ' , 'operation ' , 'object ' , 'data ' , 'property_metadata ' , 'circular_reference_limit_counters ' , 'debug_trace_id ' ]];
85+ $ expected = ['bar ' => 'baz ' , 'operation_name ' => 'post ' , 'resource_class ' => 'Foo ' , 'request_uri ' => '/foos ' , 'api_allow_update ' => false , 'uri ' => 'http://localhost/foos ' , 'output ' => null , 'input ' => null , 'iri_only ' => false , 'skip_null_values ' => true , 'operation ' => $ this ->operation ->withName ('post ' ), 'exclude_from_cache_key ' => ['root_operation ' , 'operation ' , 'object ' , 'data ' , 'property_metadata ' , 'circular_reference_limit_counters ' , 'debug_trace_id ' ], ' skip_null_to_one_relations ' => true ];
8686 $ this ->assertEquals ($ expected , $ this ->builder ->createFromRequest ($ request , false ));
8787
8888 $ request = Request::create ('/foos ' , 'PUT ' );
8989 $ request ->attributes ->replace (['_api_resource_class ' => 'Foo ' , '_api_operation_name ' => 'put ' , '_api_format ' => 'xml ' , '_api_mime_type ' => 'text/xml ' ]);
90- $ expected = ['bar ' => 'baz ' , 'operation_name ' => 'put ' , 'resource_class ' => 'Foo ' , 'request_uri ' => '/foos ' , 'api_allow_update ' => true , 'uri ' => 'http://localhost/foos ' , 'output ' => null , 'input ' => null , 'iri_only ' => false , 'skip_null_values ' => true , 'operation ' => (new Put (name: 'put ' ))->withOperation ($ this ->operation ), 'exclude_from_cache_key ' => ['root_operation ' , 'operation ' , 'object ' , 'data ' , 'property_metadata ' , 'circular_reference_limit_counters ' , 'debug_trace_id ' ]];
90+ $ expected = ['bar ' => 'baz ' , 'operation_name ' => 'put ' , 'resource_class ' => 'Foo ' , 'request_uri ' => '/foos ' , 'api_allow_update ' => true , 'uri ' => 'http://localhost/foos ' , 'output ' => null , 'input ' => null , 'iri_only ' => false , 'skip_null_values ' => true , 'operation ' => (new Put (name: 'put ' ))->withOperation ($ this ->operation ), 'exclude_from_cache_key ' => ['root_operation ' , 'operation ' , 'object ' , 'data ' , 'property_metadata ' , 'circular_reference_limit_counters ' , 'debug_trace_id ' ], ' skip_null_to_one_relations ' => true ];
9191 $ this ->assertEquals ($ expected , $ this ->builder ->createFromRequest ($ request , false ));
9292
9393 $ request = Request::create ('/bars/1/foos ' );
9494 $ request ->attributes ->replace (['_api_resource_class ' => 'Foo ' , '_api_operation_name ' => 'get ' , '_api_format ' => 'xml ' , '_api_mime_type ' => 'text/xml ' ]);
95- $ expected = ['bar ' => 'baz ' , 'operation_name ' => 'get ' , 'resource_class ' => 'Foo ' , 'request_uri ' => '/bars/1/foos ' , 'api_allow_update ' => false , 'uri ' => 'http://localhost/bars/1/foos ' , 'output ' => null , 'input ' => null , 'iri_only ' => false , 'skip_null_values ' => true , 'operation ' => $ this ->operation , 'exclude_from_cache_key ' => ['root_operation ' , 'operation ' , 'object ' , 'data ' , 'property_metadata ' , 'circular_reference_limit_counters ' , 'debug_trace_id ' ]];
95+ $ expected = ['bar ' => 'baz ' , 'operation_name ' => 'get ' , 'resource_class ' => 'Foo ' , 'request_uri ' => '/bars/1/foos ' , 'api_allow_update ' => false , 'uri ' => 'http://localhost/bars/1/foos ' , 'output ' => null , 'input ' => null , 'iri_only ' => false , 'skip_null_values ' => true , 'operation ' => $ this ->operation , 'exclude_from_cache_key ' => ['root_operation ' , 'operation ' , 'object ' , 'data ' , 'property_metadata ' , 'circular_reference_limit_counters ' , 'debug_trace_id ' ], ' skip_null_to_one_relations ' => true ];
9696 $ this ->assertEquals ($ expected , $ this ->builder ->createFromRequest ($ request , false ));
9797
9898 $ request = Request::create ('/foowithpatch/1 ' , 'PATCH ' );
9999 $ request ->attributes ->replace (['_api_resource_class ' => 'FooWithPatch ' , '_api_operation_name ' => 'patch ' , '_api_format ' => 'json ' , '_api_mime_type ' => 'application/json ' ]);
100- $ expected = ['operation_name ' => 'patch ' , 'resource_class ' => 'FooWithPatch ' , 'request_uri ' => '/foowithpatch/1 ' , 'api_allow_update ' => true , 'uri ' => 'http://localhost/foowithpatch/1 ' , 'output ' => null , 'input ' => null , 'deep_object_to_populate ' => true , 'skip_null_values ' => true , 'iri_only ' => false , 'operation ' => $ this ->patchOperation , 'exclude_from_cache_key ' => ['root_operation ' , 'operation ' , 'object ' , 'data ' , 'property_metadata ' , 'circular_reference_limit_counters ' , 'debug_trace_id ' ]];
100+ $ expected = ['operation_name ' => 'patch ' , 'resource_class ' => 'FooWithPatch ' , 'request_uri ' => '/foowithpatch/1 ' , 'api_allow_update ' => true , 'uri ' => 'http://localhost/foowithpatch/1 ' , 'output ' => null , 'input ' => null , 'deep_object_to_populate ' => true , 'skip_null_values ' => true , 'iri_only ' => false , 'operation ' => $ this ->patchOperation , 'exclude_from_cache_key ' => ['root_operation ' , 'operation ' , 'object ' , 'data ' , 'property_metadata ' , 'circular_reference_limit_counters ' , 'debug_trace_id ' ], ' skip_null_to_one_relations ' => true ];
101101 $ this ->assertEquals ($ expected , $ this ->builder ->createFromRequest ($ request , false ));
102102
103103 $ request = Request::create ('/bars/1/foos ' );
104104 $ request ->attributes ->replace (['_api_resource_class ' => 'Foo ' , '_api_operation_name ' => 'get ' , '_api_format ' => 'xml ' , '_api_mime_type ' => 'text/xml ' , 'id ' => '1 ' ]);
105- $ expected = ['bar ' => 'baz ' , 'operation_name ' => 'get ' , 'resource_class ' => 'Foo ' , 'request_uri ' => '/bars/1/foos ' , 'api_allow_update ' => false , 'uri ' => 'http://localhost/bars/1/foos ' , 'output ' => null , 'input ' => null , 'iri_only ' => false , 'operation ' => $ this ->operation , 'skip_null_values ' => true , 'exclude_from_cache_key ' => ['root_operation ' , 'operation ' , 'object ' , 'data ' , 'property_metadata ' , 'circular_reference_limit_counters ' , 'debug_trace_id ' ]];
105+ $ expected = ['bar ' => 'baz ' , 'operation_name ' => 'get ' , 'resource_class ' => 'Foo ' , 'request_uri ' => '/bars/1/foos ' , 'api_allow_update ' => false , 'uri ' => 'http://localhost/bars/1/foos ' , 'output ' => null , 'input ' => null , 'iri_only ' => false , 'operation ' => $ this ->operation , 'skip_null_values ' => true , 'exclude_from_cache_key ' => ['root_operation ' , 'operation ' , 'object ' , 'data ' , 'property_metadata ' , 'circular_reference_limit_counters ' , 'debug_trace_id ' ], ' skip_null_to_one_relations ' => true ];
106106 $ this ->assertEquals ($ expected , $ this ->builder ->createFromRequest ($ request , false ));
107107 }
108108
@@ -115,7 +115,7 @@ public function testThrowExceptionOnInvalidRequest(): void
115115
116116 public function testReuseExistingAttributes (): void
117117 {
118- $ expected = ['bar ' => 'baz ' , 'operation_name ' => 'get ' , 'resource_class ' => 'Foo ' , 'request_uri ' => '/foos/1 ' , 'api_allow_update ' => false , 'uri ' => 'http://localhost/foos/1 ' , 'output ' => null , 'input ' => null , 'iri_only ' => false , 'skip_null_values ' => true , 'operation ' => $ this ->operation , 'exclude_from_cache_key ' => ['root_operation ' , 'operation ' , 'object ' , 'data ' , 'property_metadata ' , 'circular_reference_limit_counters ' , 'debug_trace_id ' ]];
118+ $ expected = ['bar ' => 'baz ' , 'operation_name ' => 'get ' , 'resource_class ' => 'Foo ' , 'request_uri ' => '/foos/1 ' , 'api_allow_update ' => false , 'uri ' => 'http://localhost/foos/1 ' , 'output ' => null , 'input ' => null , 'iri_only ' => false , 'skip_null_values ' => true , 'operation ' => $ this ->operation , 'exclude_from_cache_key ' => ['root_operation ' , 'operation ' , 'object ' , 'data ' , 'property_metadata ' , 'circular_reference_limit_counters ' , 'debug_trace_id ' ], ' skip_null_to_one_relations ' => true ];
119119 $ this ->assertEquals ($ expected , $ this ->builder ->createFromRequest (Request::create ('/foos/1 ' ), false , ['resource_class ' => 'Foo ' , 'operation_name ' => 'get ' ]));
120120 }
121121
0 commit comments