forked from AkkomaGang/akkoma
Web.MastodonAPI.MastodonAPIControllerTest: Add testing of the flavour switching
This commit is contained in:
parent
4df455f69b
commit
72a4272d84
1 changed files with 25 additions and 0 deletions
|
@ -1786,4 +1786,29 @@ test "unmute conversation", %{conn: conn, user: user, activity: activity} do
|
|||
|> json_response(200)
|
||||
end
|
||||
end
|
||||
|
||||
test "flavours switching (Pleroma Extension)", %{conn: conn} do
|
||||
user = insert(:user)
|
||||
|
||||
get_old_flavour =
|
||||
conn
|
||||
|> assign(:user, user)
|
||||
|> get("/api/v1/pleroma/flavour")
|
||||
|
||||
assert "glitch" == json_response(get_old_flavour, 200)
|
||||
|
||||
set_flavour =
|
||||
conn
|
||||
|> assign(:user, user)
|
||||
|> post("/api/v1/pleroma/flavour/vanilla")
|
||||
|
||||
assert "vanilla" == json_response(set_flavour, 200)
|
||||
|
||||
get_new_flavour =
|
||||
conn
|
||||
|> assign(:user, user)
|
||||
|> post("/api/v1/pleroma/flavour/vanilla")
|
||||
|
||||
assert json_response(set_flavour, 200) == json_response(get_new_flavour, 200)
|
||||
end
|
||||
end
|
||||
|
|
Loading…
Reference in a new issue