diff options
author | Roger Braun <roger@rogerbraun.net> | 2017-05-10 18:44:06 +0200 |
---|---|---|
committer | Roger Braun <roger@rogerbraun.net> | 2017-05-10 18:44:06 +0200 |
commit | 2e753e8cd740d540eae7badf5c48197d3914b5f5 (patch) | |
tree | ae995208d4e9ee6304b9d26f5343c8974340dd7f /test/web/websub/websub_test.exs | |
parent | fca7390c698fc82a41eb820bc5490fb09ddc4ea2 (diff) | |
download | pleroma-2e753e8cd740d540eae7badf5c48197d3914b5f5.tar.gz |
Refresh subscriptions.
Diffstat (limited to 'test/web/websub/websub_test.exs')
-rw-r--r-- | test/web/websub/websub_test.exs | 16 |
1 files changed, 15 insertions, 1 deletions
diff --git a/test/web/websub/websub_test.exs b/test/web/websub/websub_test.exs index 48774dc69..6f228bccc 100644 --- a/test/web/websub/websub_test.exs +++ b/test/web/websub/websub_test.exs @@ -7,7 +7,7 @@ end defmodule Pleroma.Web.WebsubTest do use Pleroma.DataCase alias Pleroma.Web.Websub - alias Pleroma.Web.Websub.WebsubServerSubscription + alias Pleroma.Web.Websub.{WebsubServerSubscription, WebsubClientSubscription} import Pleroma.Factory alias Pleroma.Web.Router.Helpers @@ -174,4 +174,18 @@ defmodule Pleroma.Web.WebsubTest do signed = Websub.sign("secret", [["て"], ['す']]) end + + describe "renewing subscriptions" do + test "it renews subscriptions that have less than a day of time left" do + day = 60 * 60 * 24 + now = NaiveDateTime.utc_now + still_good = insert(:websub_client_subscription, %{valid_until: NaiveDateTime.add(now, 2 * day), topic: "http://example.org/still_good", state: "active"}) + needs_refresh = insert(:websub_client_subscription, %{valid_until: NaiveDateTime.add(now, day - 100), topic: "http://example.org/needs_refresh", state: "active"}) + + refresh = Websub.refresh_subscriptions() + + assert still_good == Repo.get(WebsubClientSubscription, still_good.id) + refute needs_refresh == Repo.get(WebsubClientSubscription, needs_refresh.id) + end + end end |