diff options
| author | Ivan Tashkinov <ivantashkinov@gmail.com> | 2020-08-07 09:38:05 +0300 | 
|---|---|---|
| committer | Ivan Tashkinov <ivantashkinov@gmail.com> | 2020-08-07 09:38:05 +0300 | 
| commit | 1298a2ea2c63f14cc080eb549377c6a1274b1628 (patch) | |
| tree | fe50b19542682173af1314766571731f69e904f5 /test/support | |
| parent | b8021016ebef23903c59e5140d4efb456a84a347 (diff) | |
| parent | b9ebb55d2aabdf4c99b05efab9d4ad31b25f888d (diff) | |
| download | pleroma-1298a2ea2c63f14cc080eb549377c6a1274b1628.tar.gz pleroma-1298a2ea2c63f14cc080eb549377c6a1274b1628.zip | |
Merge remote-tracking branch 'remotes/origin/develop' into 2168-media-preview-proxy
# Conflicts:
#	mix.lock
Diffstat (limited to 'test/support')
| -rw-r--r-- | test/support/captcha_mock.ex | 3 | ||||
| -rw-r--r-- | test/support/factory.ex | 24 | ||||
| -rw-r--r-- | test/support/helpers.ex | 19 | 
3 files changed, 43 insertions, 3 deletions
| diff --git a/test/support/captcha_mock.ex b/test/support/captcha_mock.ex index 7b0c1d5af..2ed2ba3b4 100644 --- a/test/support/captcha_mock.ex +++ b/test/support/captcha_mock.ex @@ -16,7 +16,8 @@ defmodule Pleroma.Captcha.Mock do        type: :mock,        token: "afa1815e14e29355e6c8f6b143a39fa2",        answer_data: @solution, -      url: "https://example.org/captcha.png" +      url: "https://example.org/captcha.png", +      seconds_valid: 300      }    @impl Service diff --git a/test/support/factory.ex b/test/support/factory.ex index 635d83650..486eda8da 100644 --- a/test/support/factory.ex +++ b/test/support/factory.ex @@ -297,6 +297,30 @@ defmodule Pleroma.Factory do      }    end +  def report_activity_factory(attrs \\ %{}) do +    user = attrs[:user] || insert(:user) +    activity = attrs[:activity] || insert(:note_activity) +    state = attrs[:state] || "open" + +    data = %{ +      "id" => Pleroma.Web.ActivityPub.Utils.generate_activity_id(), +      "actor" => user.ap_id, +      "type" => "Flag", +      "object" => [activity.actor, activity.data["id"]], +      "published" => DateTime.utc_now() |> DateTime.to_iso8601(), +      "to" => [], +      "cc" => [activity.actor], +      "context" => activity.data["context"], +      "state" => state +    } + +    %Pleroma.Activity{ +      data: data, +      actor: data["actor"], +      recipients: data["to"] ++ data["cc"] +    } +  end +    def oauth_app_factory do      %Pleroma.Web.OAuth.App{        client_name: sequence(:client_name, &"Some client #{&1}"), diff --git a/test/support/helpers.ex b/test/support/helpers.ex index 26281b45e..ecd4b1e18 100644 --- a/test/support/helpers.ex +++ b/test/support/helpers.ex @@ -17,9 +17,19 @@ defmodule Pleroma.Tests.Helpers do    defmacro clear_config(config_path, do: yield) do      quote do -      initial_setting = Config.get(unquote(config_path)) +      initial_setting = Config.fetch(unquote(config_path))        unquote(yield) -      on_exit(fn -> Config.put(unquote(config_path), initial_setting) end) + +      on_exit(fn -> +        case initial_setting do +          :error -> +            Config.delete(unquote(config_path)) + +          {:ok, value} -> +            Config.put(unquote(config_path), value) +        end +      end) +        :ok      end    end @@ -32,6 +42,11 @@ defmodule Pleroma.Tests.Helpers do      end    end +  def require_migration(migration_name) do +    [{module, _}] = Code.require_file("#{migration_name}.exs", "priv/repo/migrations") +    {:ok, %{migration: module}} +  end +    defmacro __using__(_opts) do      quote do        import Pleroma.Tests.Helpers, | 
