-
Notifications
You must be signed in to change notification settings - Fork 91
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
Pact-PHP <=9.x.x - Verification failed when the query has nested keys #222
Comments
The query matching logic is a nightmare, because there are many different ways a query can be parsed. I'm afraid you'll need to try using a string query expectation in this case. |
@bethesque Thanks for the quick response. Then it's a "know issue". Could you please explain a bit more on using string query expectation instead? Would be appreciated, I'm not Ruby expert. |
Can you please copy your Pact expectation code into a comment. |
It's in PHP, probably no way to do that. |
Ah, it's already a string. Is there no separate method to set the query? In the other languages, the path and the query are set separately, so that suggests to me that something in the php is splitting them out. |
Yes, there is a separate method to set the query.
|
Needs retesting in pact-php 10.x which utilises the pact reference core in rust via ffi, rather than the pact ruby project |
Hi All,
I encountered a weird issue: verification failed when the query has nested keys
key_a[]=1&key_b[1]=2
, key_a is an array, key_b is a hash.Here is the output:
I debug code and got some clues:
key_a[]=1&key_b[1]=2
is covert tokey_a=1&key_b[1]=2
because of the logic here.key_a[]=1
is not removed as in expected interactionkey_a=1
, which causes the inconsistency between expected interaction and actual interaction.I'm wondering if it's a bug.
The text was updated successfully, but these errors were encountered: