X-Git-Url: http://git.squeep.com/?a=blobdiff_plain;f=test%2Fweb%2Fwebsub%2Fwebsub_test.exs;h=566ce7fa5a4b9b454a69ead753947ff5f3bbabb7;hb=c1d529ee9491fc0040cd4327c783aabf76cb66a8;hp=aaed9226ef19aa1e86af3d80aa03c8a39c515360;hpb=153995f83222eea9641f098864c2c483674da7f6;p=akkoma diff --git a/test/web/websub/websub_test.exs b/test/web/websub/websub_test.exs index aaed9226e..566ce7fa5 100644 --- a/test/web/websub/websub_test.exs +++ b/test/web/websub/websub_test.exs @@ -46,7 +46,8 @@ defmodule Pleroma.Web.WebsubTest do end {:error, sub} = Websub.verify(sub, getter) - assert sub.state == "rejected" + # Keep the current state. + assert sub.state == "requested" end test "an incoming subscription request" do @@ -120,6 +121,7 @@ defmodule Pleroma.Web.WebsubTest do "nickname" => "lambadalambda", "name" => "Critical Value", "host" => "mastodon.social", + "bio" => "a cool dude.", "avatar" => %{"type" => "Image", "url" => [%{"href" => "https://files.mastodon.social/accounts/avatars/000/000/264/original/1429214160519.gif?1492379244", "mediaType" => "image/gif", "type" => "Link"}]} } @@ -172,7 +174,7 @@ defmodule Pleroma.Web.WebsubTest do signed = Websub.sign("secret", "text") assert signed == "B8392C23690CCF871F37EC270BE1582DEC57A503" |> String.downcase - signed = Websub.sign("secret", [["て"], ['す']]) + _signed = Websub.sign("secret", [["て"], ['す']]) end describe "renewing subscriptions" do @@ -182,7 +184,7 @@ defmodule Pleroma.Web.WebsubTest do still_good = insert(:websub_client_subscription, %{valid_until: NaiveDateTime.add(now, 2 * day), topic: "http://example.org/still_good", state: "accepted"}) needs_refresh = insert(:websub_client_subscription, %{valid_until: NaiveDateTime.add(now, day - 100), topic: "http://example.org/needs_refresh", state: "accepted"}) - refresh = Websub.refresh_subscriptions() + _refresh = Websub.refresh_subscriptions() assert still_good == Repo.get(WebsubClientSubscription, still_good.id) refute needs_refresh == Repo.get(WebsubClientSubscription, needs_refresh.id)