-
Notifications
You must be signed in to change notification settings - Fork 47
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
fix: parse query string to hash for v2 interactions
- Loading branch information
Showing
4 changed files
with
153 additions
and
2 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
Original file line number | Diff line number | Diff line change |
---|---|---|
|
@@ -3,12 +3,110 @@ | |
|
||
module Pact | ||
class Query | ||
DEFAULT_SEP = /[&;] */n | ||
COMMON_SEP = { ";" => /[;] */n, ";," => /[;,] */n, "&" => /[&] */n } | ||
|
||
def self.create query | ||
if query.is_a? Hash | ||
Pact::QueryHash.new(query) | ||
else | ||
Pact::QueryString.new(query) | ||
end | ||
end | ||
|
||
def self.parse_string query_string | ||
parsed_query = parse_query(query_string) | ||
|
||
# If Rails nested params... | ||
if parsed_query.keys.any?{ | key| key.include?("[") } | ||
parse_nested_query(query_string) | ||
else | ||
parsed_query.each_with_object({}) do | (key, value), new_hash | | ||
new_hash[key] = [*value] | ||
end | ||
end | ||
end | ||
|
||
# Ripped from Rack to avoid adding an unnecessary dependency, thank you Rack | ||
# https://github.com/rack/rack/blob/649c72bab9e7b50d657b5b432d0c205c95c2be07/lib/rack/utils.rb | ||
def self.parse_query(qs, d = nil, &unescaper) | ||
unescaper ||= method(:unescape) | ||
|
||
params = {} | ||
|
||
(qs || '').split(d ? (COMMON_SEP[d] || /[#{d}] */n) : DEFAULT_SEP).each do |p| | ||
next if p.empty? | ||
k, v = p.split('=', 2).map!(&unescaper) | ||
|
||
if cur = params[k] | ||
if cur.class == Array | ||
params[k] << v | ||
else | ||
params[k] = [cur, v] | ||
end | ||
else | ||
params[k] = v | ||
end | ||
end | ||
|
||
return params.to_h | ||
end | ||
|
||
def self.parse_nested_query(qs, d = nil) | ||
params = {} | ||
|
||
unless qs.nil? || qs.empty? | ||
(qs || '').split(d ? (COMMON_SEP[d] || /[#{d}] */n) : DEFAULT_SEP).each do |p| | ||
k, v = p.split('=', 2).map! { |s| unescape(s) } | ||
|
||
normalize_params(params, k, v) | ||
end | ||
end | ||
|
||
return params.to_h | ||
end | ||
|
||
def self.normalize_params(params, name, v) | ||
name =~ %r(\A[\[\]]*([^\[\]]+)\]*) | ||
k = $1 || '' | ||
after = $' || '' | ||
|
||
if k.empty? | ||
if !v.nil? && name == "[]" | ||
return Array(v) | ||
else | ||
return | ||
end | ||
end | ||
|
||
if after == '' | ||
params[k] = v | ||
elsif after == "[" | ||
params[name] = v | ||
elsif after == "[]" | ||
params[k] ||= [] | ||
raise ParameterTypeError, "expected Array (got #{params[k].class.name}) for param `#{k}'" unless params[k].is_a?(Array) | ||
params[k] << v | ||
elsif after =~ %r(^\[\]\[([^\[\]]+)\]$) || after =~ %r(^\[\](.+)$) | ||
child_key = $1 | ||
params[k] ||= [] | ||
raise ParameterTypeError, "expected Array (got #{params[k].class.name}) for param `#{k}'" unless params[k].is_a?(Array) | ||
if params_hash_type?(params[k].last) && !params_hash_has_key?(params[k].last, child_key) | ||
This comment has been minimized.
Sorry, something went wrong. |
||
normalize_params(params[k].last, child_key, v) | ||
else | ||
params[k] << normalize_params({}, child_key, v) | ||
end | ||
else | ||
params[k] ||= {} | ||
raise ParameterTypeError, "expected Hash (got #{params[k].class.name}) for param `#{k}'" unless params_hash_type?(params[k]) | ||
params[k] = normalize_params(params[k], after, v, depth - 1) | ||
This comment has been minimized.
Sorry, something went wrong.
Mervelin
|
||
end | ||
|
||
params | ||
end | ||
|
||
def self.unescape(s, encoding = Encoding::UTF_8) | ||
URI.decode_www_form_component(s, encoding) | ||
end | ||
end | ||
end |
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
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,33 @@ | ||
require 'pact/consumer_contract/query' | ||
|
||
module Pact | ||
describe Query do | ||
describe ".parse_string" do | ||
subject { Query.parse_string(query_string) } | ||
|
||
describe "with a non nested query string" do | ||
let(:query_string) { "foo=bar1" } | ||
|
||
it "returns a map of string to array" do | ||
expect(subject).to eq "foo" => ["bar1"] | ||
end | ||
end | ||
|
||
describe "with a non nested query string with multiple params with the same name" do | ||
let(:query_string) { "foo=bar1&foo=bar2" } | ||
|
||
it "returns a map of string to array" do | ||
expect(subject).to eq "foo" => ["bar1", "bar2"] | ||
end | ||
end | ||
|
||
describe "with a rails style nested query" do | ||
let(:query_string) { "foo=bar1&foo=bar2&baz[]=thing1&baz[]=thing2" } | ||
|
||
it "returns a nested map" do | ||
expect(subject).to eq "foo" => "bar2", "baz" => ["thing1", "thing2"] | ||
end | ||
end | ||
end | ||
end | ||
end |
Can you help me understand where
params_hash_type?
is defined? It reads to me like it may be coming from Rack, however I'm getting a NoMethodError when upgrading an app to pact-support 1.16. Thanks! @bethesque