-
-
Notifications
You must be signed in to change notification settings - Fork 481
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
attempt at better query string handling #66
- Loading branch information
Ronald Holshausen
committed
Sep 25, 2015
1 parent
05d5dc8
commit af87236
Showing
9 changed files
with
67 additions
and
12 deletions.
There are no files selected for viewing
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
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
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
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
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
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
40 changes: 40 additions & 0 deletions
40
pact-jvm-model/src/test/resources/test_pact_encoded_query.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 @@ | ||
{ | ||
"provider" : { | ||
"name" : "test_provider" | ||
}, | ||
"consumer" : { | ||
"name" : "test_consumer" | ||
}, | ||
"interactions" : [ { | ||
"providerState" : "test state", | ||
"description" : "test interaction", | ||
"request" : { | ||
"method" : "GET", | ||
"path" : "/", | ||
"headers" : { | ||
"testreqheader" : "testreqheadervalue" | ||
}, | ||
"query" : "datetime=2011-12-03T10%3A15%3A30%2B01%3A00&description=hello+world%21", | ||
"body" : { | ||
"test" : true | ||
} | ||
}, | ||
"response" : { | ||
"status" : 200, | ||
"headers" : { | ||
"testreqheader" : "testreqheaderval" | ||
}, | ||
"body" : { | ||
"responsetest" : true | ||
} | ||
} | ||
} ], | ||
"metadata" : { | ||
"pact-specification" : { | ||
"version" : "2.0.0" | ||
}, | ||
"pact-jvm" : { | ||
"version" : "" | ||
} | ||
} | ||
} |
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
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