2023-12-15 17:29:02 +00:00
|
|
|
defmodule Pleroma.HTTP.BackoffTest do
|
|
|
|
@backoff_cache :http_backoff_cache
|
|
|
|
use Pleroma.DataCase, async: false
|
|
|
|
alias Pleroma.HTTP.Backoff
|
|
|
|
|
|
|
|
describe "get/3" do
|
|
|
|
test "should return {:ok, env} when not rate limited" do
|
|
|
|
Tesla.Mock.mock_global(fn
|
|
|
|
%Tesla.Env{url: "https://akkoma.dev/api/v1/instance"} ->
|
|
|
|
{:ok, %Tesla.Env{status: 200, body: "ok"}}
|
|
|
|
end)
|
2023-12-20 16:45:35 +00:00
|
|
|
|
2023-12-15 17:29:02 +00:00
|
|
|
assert {:ok, env} = Backoff.get("https://akkoma.dev/api/v1/instance")
|
|
|
|
assert env.status == 200
|
|
|
|
end
|
|
|
|
|
|
|
|
test "should return {:error, env} when rate limited" do
|
|
|
|
# Shove a value into the cache to simulate a rate limit
|
|
|
|
Cachex.put(@backoff_cache, "akkoma.dev", true)
|
2024-04-26 18:05:12 +00:00
|
|
|
assert {:error, :ratelimit} = Backoff.get("https://akkoma.dev/api/v1/instance")
|
2023-12-15 17:29:02 +00:00
|
|
|
end
|
|
|
|
|
|
|
|
test "should insert a value into the cache when rate limited" do
|
|
|
|
Tesla.Mock.mock_global(fn
|
|
|
|
%Tesla.Env{url: "https://ratelimited.dev/api/v1/instance"} ->
|
|
|
|
{:ok, %Tesla.Env{status: 429, body: "Rate limited"}}
|
|
|
|
end)
|
|
|
|
|
2024-04-26 18:05:12 +00:00
|
|
|
assert {:error, :ratelimit} = Backoff.get("https://ratelimited.dev/api/v1/instance")
|
2023-12-15 17:29:02 +00:00
|
|
|
assert {:ok, true} = Cachex.get(@backoff_cache, "ratelimited.dev")
|
2023-12-20 16:45:35 +00:00
|
|
|
end
|
|
|
|
|
|
|
|
test "should parse the value of x-ratelimit-reset, if present" do
|
|
|
|
ten_minutes_from_now =
|
|
|
|
DateTime.utc_now() |> Timex.shift(minutes: 10) |> DateTime.to_iso8601()
|
|
|
|
|
|
|
|
Tesla.Mock.mock_global(fn
|
|
|
|
%Tesla.Env{url: "https://ratelimited.dev/api/v1/instance"} ->
|
|
|
|
{:ok,
|
|
|
|
%Tesla.Env{
|
|
|
|
status: 429,
|
|
|
|
body: "Rate limited",
|
|
|
|
headers: [{"x-ratelimit-reset", ten_minutes_from_now}]
|
|
|
|
}}
|
|
|
|
end)
|
|
|
|
|
2024-04-26 18:05:12 +00:00
|
|
|
assert {:error, :ratelimit} = Backoff.get("https://ratelimited.dev/api/v1/instance")
|
2023-12-20 16:45:35 +00:00
|
|
|
assert {:ok, true} = Cachex.get(@backoff_cache, "ratelimited.dev")
|
|
|
|
end
|
2023-12-15 17:29:02 +00:00
|
|
|
end
|
|
|
|
end
|