@@ -4,9 +4,9 @@ Feature: Vehicle Inspection REST API - Data Streaming Capabilities
44 It includes tests for loading multiple inspections in a single stream request and for streaming out existing inspection data in JSON format.
55
66 @post @load_stream @sunny_day
7- Scenario Outline : Successfully load a stream of vehicle inspections with different update strategies and futz options
7+ Scenario Outline : Successfully load a stream of vehicle inspections with different update strategies
88 Given the vehicle inspections in range 10001-10008 do not exist
9- When I send a POST request to "/api/inspections?updateStrategy=<strategy>&futz=<futz> " with the payload:
9+ When I send a POST request to "/api/inspections?updateStrategy=<strategy>" with the payload:
1010 """
1111 [
1212 {
@@ -54,18 +54,18 @@ Feature: Vehicle Inspection REST API - Data Streaming Capabilities
5454 And the response should contain "success" : true
5555
5656 Examples :
57- | strategy | futz | id1 | id2 |
58- | REPLACE | false | 10001 | 10002 |
59- | UPDATE | false | 10003 | 10004 |
60- | UPDATEWITHHISTORY | true | 10005 | 10006 |
61- | REPLACE | true | 10007 | 10008 |
57+ | strategy | id1 | id2 |
58+ | REPLACE | 10001 | 10002 |
59+ | UPDATE | 10003 | 10004 |
60+ | UPDATEWITHHISTORY | 10005 | 10006 |
61+ | REPLACE | 10007 | 10008 |
6262
6363 @post @load_stream @sunny_day
6464 Scenario : Successfully delete a vehicle inspection
6565 Given the following vehicle inspections exist:
6666 | vehicleinspection |
6767 | {"testid ": 10007 } |
68- When I send a POST request to "/api/inspections?updateStrategy=UPDATEWITHHISTORY&futz=true " with the payload:
68+ When I send a POST request to "/api/inspections?updateStrategy=UPDATEWITHHISTORY" with the payload:
6969 """
7070 [
7171 {
0 commit comments