Fix Chat controller tests failing due to OTP26 key order change
This commit is contained in:
parent
d4dd21303a
commit
0820c23988
|
@ -216,30 +216,30 @@ test "it paginates", %{conn: conn, user: user} do
|
||||||
|
|
||||||
assert String.match?(
|
assert String.match?(
|
||||||
next,
|
next,
|
||||||
~r(#{api_endpoint}.*/messages\?limit=\d+&max_id=.*; rel=\"next\"$)
|
~r(#{api_endpoint}.*/messages\?offset=\d+&limit=\d+&max_id=.*; rel=\"next\"$)
|
||||||
)
|
)
|
||||||
|
|
||||||
assert String.match?(
|
assert String.match?(
|
||||||
prev,
|
prev,
|
||||||
~r(#{api_endpoint}.*/messages\?limit=\d+&min_id=.*; rel=\"prev\"$)
|
~r(#{api_endpoint}.*/messages\?offset=\d+&limit=\d+&min_id=.*; rel=\"prev\"$)
|
||||||
)
|
)
|
||||||
|
|
||||||
assert length(result) == 20
|
assert length(result) == 20
|
||||||
|
|
||||||
response =
|
response =
|
||||||
get(conn, "/api/v1/pleroma/chats/#{chat.id}/messages?max_id=#{List.last(result)["id"]}")
|
get(conn, "#{api_endpoint}#{chat.id}/messages?max_id=#{List.last(result)["id"]}")
|
||||||
|
|
||||||
result = json_response_and_validate_schema(response, 200)
|
result = json_response_and_validate_schema(response, 200)
|
||||||
[next, prev] = get_resp_header(response, "link") |> hd() |> String.split(", ")
|
[next, prev] = get_resp_header(response, "link") |> hd() |> String.split(", ")
|
||||||
|
|
||||||
assert String.match?(
|
assert String.match?(
|
||||||
next,
|
next,
|
||||||
~r(#{api_endpoint}.*/messages\?limit=\d+&max_id=.*; rel=\"next\"$)
|
~r(#{api_endpoint}.*/messages\?offset=\d+&limit=\d+&max_id=.*; rel=\"next\"$)
|
||||||
)
|
)
|
||||||
|
|
||||||
assert String.match?(
|
assert String.match?(
|
||||||
prev,
|
prev,
|
||||||
~r(#{api_endpoint}.*/messages\?limit=\d+&max_id=.*&min_id=.*; rel=\"prev\"$)
|
~r(#{api_endpoint}.*/messages\?offset=\d+&limit=\d+&max_id=.*&min_id=.*; rel=\"prev\"$)
|
||||||
)
|
)
|
||||||
|
|
||||||
assert length(result) == 10
|
assert length(result) == 10
|
||||||
|
|
Loading…
Reference in New Issue