forked from shhavel/uri_query
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathuri_encode_query_test.exs
50 lines (38 loc) · 2.31 KB
/
uri_encode_query_test.exs
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
defmodule UriEncodeQueryTest do
use ExUnit.Case
test "keyword list with pairs of atoms" do
assert UriQuery.params([{:foo, :bar}, {:baz, :quux}]) |> URI.encode_query == "foo=bar&baz=quux"
end
test "keyword list with pairs of strings" do
assert UriQuery.params([{"foo", "bar"}, {"baz", "quux"}]) |> URI.encode_query == "foo=bar&baz=quux"
end
test "list value" do
assert UriQuery.params(foo: ["bar", "quux"]) |> URI.encode_query == "foo%5B%5D=bar&foo%5B%5D=quux"
end
test "nested tupple" do
assert UriQuery.params(foo: {:bar, :baz}) |> URI.encode_query == "foo%5Bbar%5D=baz"
end
test "nested tupple list" do
assert UriQuery.params(foo: [{:bar, :baz}, {:qux, :quux}]) |> URI.encode_query == "foo%5Bbar%5D=baz&foo%5Bqux%5D=quux"
end
test "deep nested tupple" do
assert UriQuery.params(foo: {:bar, {:baz, :quux}}) |> URI.encode_query == "foo%5Bbar%5D%5Bbaz%5D=quux"
end
test "simple map" do
assert UriQuery.params(%{foo: "bar"}) |> URI.encode_query == "foo=bar"
end
test "complex cases" do
assert UriQuery.params([{:foo, [{:bar, ["baz", "quux"]}, {:quux, :corge}]}, {:grault, :garply}]) |> URI.encode_query == "foo%5Bbar%5D%5B%5D=baz&foo%5Bbar%5D%5B%5D=quux&foo%5Bquux%5D=corge&grault=garply"
assert UriQuery.params([{:foo, {:bar, ["baz", "qux"]}}]) |> URI.encode_query == "foo%5Bbar%5D%5B%5D=baz&foo%5Bbar%5D%5B%5D=qux"
end
test "with map" do
assert UriQuery.params(%{user: %{name: "Dougal McGuire", email: "[email protected]"}}) |> URI.encode_query == "user%5Bemail%5D=test%40example.com&user%5Bname%5D=Dougal+McGuire"
assert UriQuery.params(%{user: %{name: "Dougal McGuire", meta: %{foo: "bar", baz: "qux"}}}) |> URI.encode_query == "user%5Bmeta%5D%5Bbaz%5D=qux&user%5Bmeta%5D%5Bfoo%5D=bar&user%5Bname%5D=Dougal+McGuire"
assert UriQuery.params(%{user: %{name: "Dougal McGuire", meta: %{test: "Example", data: ["foo", "bar"]}}}) |> URI.encode_query == "user%5Bmeta%5D%5Bdata%5D%5B%5D=foo&user%5Bmeta%5D%5Bdata%5D%5B%5D=bar&user%5Bmeta%5D%5Btest%5D=Example&user%5Bname%5D=Dougal+McGuire"
end
test "ignores empty list" do
assert UriQuery.params(foo: []) |> URI.encode_query == ""
assert UriQuery.params(foo: [], bar: "quux") |> URI.encode_query == "bar=quux"
assert UriQuery.params(foo: [], bar: ["quux", []]) |> URI.encode_query == "bar%5B%5D=quux"
end
end