Add oauth plug tests for url and body parameters
authorAkiraFukushima <h3.poteto@gmail.com>
Thu, 2 May 2019 13:25:21 +0000 (22:25 +0900)
committerAkiraFukushima <h3.poteto@gmail.com>
Thu, 2 May 2019 13:25:21 +0000 (22:25 +0900)
test/plugs/oauth_plug_test.exs

index 17fdba916ffa872daf7aeffe141a78a3f07c1592..5a2ed11cc660a857590546e44fe4388a35431f20 100644 (file)
@@ -38,6 +38,26 @@ defmodule Pleroma.Plugs.OAuthPlugTest do
     assert conn.assigns[:user] == opts[:user]
   end
 
+  test "with valid token(downcase) in url parameters, it assings the user", opts do
+    conn =
+      :get
+      |> build_conn("/?access_token=#{opts[:token]}")
+      |> put_req_header("content-type", "application/json")
+      |> fetch_query_params()
+      |> OAuthPlug.call(%{})
+
+    assert conn.assigns[:user] == opts[:user]
+  end
+
+  test "with valid token(downcase) in body parameters, it assigns the user", opts do
+    conn =
+      :post
+      |> build_conn("/api/v1/statuses", access_token: opts[:token], status: "test")
+      |> OAuthPlug.call(%{})
+
+    assert conn.assigns[:user] == opts[:user]
+  end
+
   test "with invalid token, it not assigns the user", %{conn: conn} do
     conn =
       conn