-
Notifications
You must be signed in to change notification settings - Fork 116
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
- Loading branch information
1 parent
580029b
commit 961592d
Showing
3 changed files
with
170 additions
and
0 deletions.
There are no files selected for viewing
31 changes: 31 additions & 0 deletions
31
...ases/testdata/testcases/adjust/simple_track_call_with_no_query_parameters_v2_version.json
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,31 @@ | ||
{ | ||
"name": "adjust", | ||
"description": "Simple track call with no query parameters v2 version", | ||
"input": { | ||
"request": { | ||
"body": { | ||
"id": "adjust", | ||
"updated_at": "2023-02-10T12:16:07.251Z", | ||
"created_at": "2023-02-10T12:05:04.402Z" | ||
}, | ||
"headers": { | ||
"Content-Type": "application/json" | ||
} | ||
} | ||
}, | ||
"output": { | ||
"response": { | ||
"status": 400, | ||
"body": "Query_parameters is missing\n" | ||
}, | ||
"queue": [], | ||
"errQueue": [ | ||
{ | ||
"id": "adjust", | ||
"updated_at": "2023-02-10T12:16:07.251Z", | ||
"created_at": "2023-02-10T12:05:04.402Z" | ||
} | ||
] | ||
}, | ||
"skip": "FIXME" | ||
} |
40 changes: 40 additions & 0 deletions
40
...stcases/testdata/testcases/adjust/simple_track_call_with_wrong_created_at_v2_version.json
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,40 @@ | ||
{ | ||
"name": "adjust", | ||
"description": "Simple track call with wrong created at v2 version", | ||
"input": { | ||
"request": { | ||
"query": { | ||
"gps_adid": ["38400000-8cf0-11bd-b23e-10b96e40000d"], | ||
"adid": ["18546f6171f67e29d1cb983322ad1329"], | ||
"tracker_token": ["abc"], | ||
"custom": ["custom"], | ||
"tracker_name": ["dummy"], | ||
"created_at": ["test"], | ||
"event_name": ["Click"] | ||
}, | ||
"body": { | ||
"id": "adjust", | ||
"updated_at": "2023-02-10T12:16:07.251Z", | ||
"created_at": "test" | ||
}, | ||
"headers": { | ||
"Content-Type": "application/json" | ||
} | ||
} | ||
}, | ||
"output": { | ||
"response": { | ||
"status": 400, | ||
"body": "Failed to parse timestamp: \"test\"\n" | ||
}, | ||
"queue": [], | ||
"errQueue": [ | ||
{ | ||
"id": "adjust", | ||
"updated_at": "2023-02-10T12:16:07.251Z", | ||
"created_at": "test" | ||
} | ||
] | ||
}, | ||
"skip": "FIXME" | ||
} |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters