2018-12-23 20:11:29 +00:00
|
|
|
# Pleroma: A lightweight social networking server
|
2020-03-02 05:08:45 +00:00
|
|
|
# Copyright © 2017-2020 Pleroma Authors <https://pleroma.social/>
|
2018-12-23 20:11:29 +00:00
|
|
|
# SPDX-License-Identifier: AGPL-3.0-only
|
|
|
|
|
2017-03-17 16:09:58 +00:00
|
|
|
defmodule Pleroma.Web.ConnCase do
|
|
|
|
@moduledoc """
|
|
|
|
This module defines the test case to be used by
|
|
|
|
tests that require setting up a connection.
|
|
|
|
|
|
|
|
Such tests rely on `Phoenix.ConnTest` and also
|
|
|
|
import other functionality to make it easier
|
|
|
|
to build common datastructures and query the data layer.
|
|
|
|
|
|
|
|
Finally, if the test case interacts with the database,
|
|
|
|
it cannot be async. For this reason, every test runs
|
|
|
|
inside a transaction which is reset at the beginning
|
|
|
|
of the test unless the test case is marked as async.
|
|
|
|
"""
|
|
|
|
|
|
|
|
use ExUnit.CaseTemplate
|
|
|
|
|
|
|
|
using do
|
|
|
|
quote do
|
|
|
|
# Import conveniences for testing with connections
|
|
|
|
use Phoenix.ConnTest
|
2018-12-11 12:31:52 +00:00
|
|
|
use Pleroma.Tests.Helpers
|
2017-03-17 16:09:58 +00:00
|
|
|
import Pleroma.Web.Router.Helpers
|
|
|
|
|
2020-03-11 11:05:56 +00:00
|
|
|
alias Pleroma.Config
|
|
|
|
|
2017-03-17 16:09:58 +00:00
|
|
|
# The default endpoint for testing
|
|
|
|
@endpoint Pleroma.Web.Endpoint
|
2019-12-15 19:32:42 +00:00
|
|
|
|
|
|
|
# Sets up OAuth access with specified scopes
|
2019-12-19 14:23:27 +00:00
|
|
|
defp oauth_access(scopes, opts \\ []) do
|
2019-12-15 19:32:42 +00:00
|
|
|
user =
|
2019-12-19 14:23:27 +00:00
|
|
|
Keyword.get_lazy(opts, :user, fn ->
|
2019-12-15 19:32:42 +00:00
|
|
|
Pleroma.Factory.insert(:user)
|
|
|
|
end)
|
|
|
|
|
|
|
|
token =
|
2019-12-19 14:23:27 +00:00
|
|
|
Keyword.get_lazy(opts, :oauth_token, fn ->
|
2019-12-15 19:32:42 +00:00
|
|
|
Pleroma.Factory.insert(:oauth_token, user: user, scopes: scopes)
|
|
|
|
end)
|
|
|
|
|
|
|
|
conn =
|
|
|
|
build_conn()
|
|
|
|
|> assign(:user, user)
|
|
|
|
|> assign(:token, token)
|
|
|
|
|
|
|
|
%{user: user, token: token, conn: conn}
|
|
|
|
end
|
2020-03-09 17:51:44 +00:00
|
|
|
|
2020-04-07 10:53:12 +00:00
|
|
|
defp request_content_type(%{conn: conn}) do
|
|
|
|
conn = put_req_header(conn, "content-type", "multipart/form-data")
|
|
|
|
[conn: conn]
|
|
|
|
end
|
|
|
|
|
2020-04-27 16:46:52 +00:00
|
|
|
defp json_response_and_validate_schema(
|
|
|
|
%{
|
|
|
|
private: %{
|
|
|
|
open_api_spex: %{operation_id: op_id, operation_lookup: lookup, spec: spec}
|
|
|
|
}
|
|
|
|
} = conn,
|
|
|
|
status
|
|
|
|
) do
|
2020-04-24 10:46:59 +00:00
|
|
|
content_type =
|
|
|
|
conn
|
|
|
|
|> Plug.Conn.get_resp_header("content-type")
|
|
|
|
|> List.first()
|
|
|
|
|> String.split(";")
|
|
|
|
|> List.first()
|
|
|
|
|
2020-04-27 16:46:52 +00:00
|
|
|
status = Plug.Conn.Status.code(status)
|
2020-04-24 10:46:59 +00:00
|
|
|
|
2020-04-27 16:46:52 +00:00
|
|
|
unless lookup[op_id].responses[status] do
|
|
|
|
err = "Response schema not found for #{conn.status} #{conn.method} #{conn.request_path}"
|
|
|
|
flunk(err)
|
|
|
|
end
|
2020-04-24 10:46:59 +00:00
|
|
|
|
|
|
|
schema = lookup[op_id].responses[status].content[content_type].schema
|
|
|
|
json = json_response(conn, status)
|
|
|
|
|
|
|
|
case OpenApiSpex.cast_value(json, schema, spec) do
|
|
|
|
{:ok, _data} ->
|
|
|
|
json
|
|
|
|
|
|
|
|
{:error, errors} ->
|
|
|
|
errors =
|
|
|
|
Enum.map(errors, fn error ->
|
|
|
|
message = OpenApiSpex.Cast.Error.message(error)
|
|
|
|
path = OpenApiSpex.Cast.Error.path_to_string(error)
|
|
|
|
"#{message} at #{path}"
|
|
|
|
end)
|
|
|
|
|
|
|
|
flunk(
|
|
|
|
"Response does not conform to schema of #{op_id} operation: #{
|
|
|
|
Enum.join(errors, "\n")
|
|
|
|
}\n#{inspect(json)}"
|
|
|
|
)
|
|
|
|
end
|
|
|
|
end
|
|
|
|
|
2020-04-27 16:46:52 +00:00
|
|
|
defp json_response_and_validate_schema(conn, _status) do
|
|
|
|
flunk("Response schema not found for #{conn.method} #{conn.request_path} #{conn.status}")
|
|
|
|
end
|
|
|
|
|
2020-03-09 17:51:44 +00:00
|
|
|
defp ensure_federating_or_authenticated(conn, url, user) do
|
2020-03-11 11:05:56 +00:00
|
|
|
initial_setting = Config.get([:instance, :federating])
|
|
|
|
on_exit(fn -> Config.put([:instance, :federating], initial_setting) end)
|
|
|
|
|
|
|
|
Config.put([:instance, :federating], false)
|
2020-03-09 17:51:44 +00:00
|
|
|
|
|
|
|
conn
|
|
|
|
|> get(url)
|
|
|
|
|> response(403)
|
|
|
|
|
|
|
|
conn
|
|
|
|
|> assign(:user, user)
|
|
|
|
|> get(url)
|
|
|
|
|> response(200)
|
|
|
|
|
2020-03-11 11:05:56 +00:00
|
|
|
Config.put([:instance, :federating], true)
|
2020-03-09 17:51:44 +00:00
|
|
|
|
|
|
|
conn
|
|
|
|
|> get(url)
|
|
|
|
|> response(200)
|
|
|
|
end
|
2017-03-17 16:09:58 +00:00
|
|
|
end
|
|
|
|
end
|
|
|
|
|
|
|
|
setup tags do
|
2018-03-22 11:44:32 +00:00
|
|
|
Cachex.clear(:user_cache)
|
2019-02-03 17:54:39 +00:00
|
|
|
Cachex.clear(:object_cache)
|
2017-03-17 16:09:58 +00:00
|
|
|
:ok = Ecto.Adapters.SQL.Sandbox.checkout(Pleroma.Repo)
|
2018-03-30 13:01:53 +00:00
|
|
|
|
2017-03-17 16:09:58 +00:00
|
|
|
unless tags[:async] do
|
|
|
|
Ecto.Adapters.SQL.Sandbox.mode(Pleroma.Repo, {:shared, self()})
|
|
|
|
end
|
2018-03-30 13:01:53 +00:00
|
|
|
|
2019-09-16 10:03:37 +00:00
|
|
|
if tags[:needs_streamer] do
|
|
|
|
start_supervised(Pleroma.Web.Streamer.supervisor())
|
|
|
|
end
|
|
|
|
|
2017-03-17 16:09:58 +00:00
|
|
|
{:ok, conn: Phoenix.ConnTest.build_conn()}
|
|
|
|
end
|
|
|
|
end
|