1 # Pleroma: A lightweight social networking server
2 # Copyright © 2017-2022 Pleroma Authors <https://pleroma.social/>
3 # SPDX-License-Identifier: AGPL-3.0-only
5 defmodule Pleroma.Web.ConnCase do
7 This module defines the test case to be used by
8 tests that require setting up a connection.
10 Such tests rely on `Phoenix.ConnTest` and also
11 import other functionality to make it easier
12 to build common datastructures and query the data layer.
14 Finally, if the test case interacts with the database,
15 it cannot be async. For this reason, every test runs
16 inside a transaction which is reset at the beginning
17 of the test unless the test case is marked as async.
20 use ExUnit.CaseTemplate
22 alias Pleroma.DataCase
26 # Import conveniences for testing with connections
28 import Phoenix.ConnTest
29 use Pleroma.Tests.Helpers
30 import Pleroma.Web.Router.Helpers
34 # The default endpoint for testing
35 @endpoint Pleroma.Web.Endpoint
37 # Sets up OAuth access with specified scopes
38 defp oauth_access(scopes, opts \\ []) do
40 Keyword.get_lazy(opts, :user, fn ->
41 Pleroma.Factory.insert(:user)
45 Keyword.get_lazy(opts, :oauth_token, fn ->
46 Pleroma.Factory.insert(:oauth_token, user: user, scopes: scopes)
51 |> assign(:user, user)
52 |> assign(:token, token)
54 %{user: user, token: token, conn: conn}
57 defp request_content_type(%{conn: conn}) do
58 conn = put_req_header(conn, "content-type", "multipart/form-data")
62 defp empty_json_response(conn) do
63 body = response(conn, 204)
64 response_content_type(conn, :json)
69 defp json_response_and_validate_schema(
70 %{private: %{operation_id: op_id}} = conn,
73 {spec, lookup} = OpenApiSpex.Plug.PutApiSpec.get_spec_and_operation_lookup(conn)
77 |> Plug.Conn.get_resp_header("content-type")
82 status = Plug.Conn.Status.code(status)
84 unless lookup[op_id].responses[status] do
85 err = "Response schema not found for #{status} #{conn.method} #{conn.request_path}"
89 schema = lookup[op_id].responses[status].content[content_type].schema
90 json = if status == 204, do: empty_json_response(conn), else: json_response(conn, status)
92 case OpenApiSpex.cast_value(json, schema, spec) do
98 Enum.map(errors, fn error ->
99 message = OpenApiSpex.Cast.Error.message(error)
100 path = OpenApiSpex.Cast.Error.path_to_string(error)
101 "#{message} at #{path}"
105 "Response does not conform to schema of #{op_id} operation: #{Enum.join(errors, "\n")}\n#{inspect(json)}"
110 defp json_response_and_validate_schema(conn, _status) do
111 flunk("Response schema not found for #{conn.method} #{conn.request_path} #{conn.status}")
117 DataCase.setup_multi_process_mode(tags)
118 DataCase.setup_streamer(tags)
119 DataCase.stub_pipeline()
121 Mox.verify_on_exit!()
123 {:ok, conn: Phoenix.ConnTest.build_conn()}