summaryrefslogtreecommitdiff
path: root/test/web/auth/oauth_test_controller_test.exs
diff options
context:
space:
mode:
authorEgor Kislitsyn <egor@kislitsyn.com>2020-05-05 14:28:54 +0400
committerEgor Kislitsyn <egor@kislitsyn.com>2020-05-05 14:28:54 +0400
commitdecaa64f75f8bd69622fa5fba757f99719f09808 (patch)
tree52d3bfc7318230beae31865c7f0a12e02b7f68b5 /test/web/auth/oauth_test_controller_test.exs
parent764b4f95a8e9e751d5a6136fc2be44d61a082443 (diff)
parentc297667f16db40654bb16608c01dc4a2dc7c0e4b (diff)
downloadpleroma-decaa64f75f8bd69622fa5fba757f99719f09808.tar.gz
pleroma-decaa64f75f8bd69622fa5fba757f99719f09808.zip
Merge branch 'develop' into global-status-expiration
Diffstat (limited to 'test/web/auth/oauth_test_controller_test.exs')
-rw-r--r--test/web/auth/oauth_test_controller_test.exs49
1 files changed, 0 insertions, 49 deletions
diff --git a/test/web/auth/oauth_test_controller_test.exs b/test/web/auth/oauth_test_controller_test.exs
deleted file mode 100644
index a2f6009ac..000000000
--- a/test/web/auth/oauth_test_controller_test.exs
+++ /dev/null
@@ -1,49 +0,0 @@
-# Pleroma: A lightweight social networking server
-# Copyright © 2017-2020 Pleroma Authors <https://pleroma.social/>
-# SPDX-License-Identifier: AGPL-3.0-only
-
-defmodule Pleroma.Tests.OAuthTestControllerTest do
- use Pleroma.Web.ConnCase
-
- import Pleroma.Factory
-
- setup %{conn: conn} do
- user = insert(:user)
- conn = assign(conn, :user, user)
- %{conn: conn, user: user}
- end
-
- test "missed_oauth", %{conn: conn} do
- res =
- conn
- |> get("/test/authenticated_api/missed_oauth")
- |> json_response(403)
-
- assert res ==
- %{
- "error" =>
- "Security violation: OAuth scopes check was neither handled nor explicitly skipped."
- }
- end
-
- test "skipped_oauth", %{conn: conn} do
- conn
- |> assign(:token, nil)
- |> get("/test/authenticated_api/skipped_oauth")
- |> json_response(200)
- end
-
- test "performed_oauth", %{user: user} do
- %{conn: good_token_conn} = oauth_access(["read"], user: user)
-
- good_token_conn
- |> get("/test/authenticated_api/performed_oauth")
- |> json_response(200)
-
- %{conn: bad_token_conn} = oauth_access(["follow"], user: user)
-
- bad_token_conn
- |> get("/test/authenticated_api/performed_oauth")
- |> json_response(403)
- end
-end