Tests: More test fixes.

This commit is contained in:
lain 2020-12-21 12:59:11 +01:00
parent 2f8ec8a9cc
commit b17c36c45a
3 changed files with 7 additions and 2 deletions

View file

@ -3,7 +3,7 @@
# SPDX-License-Identifier: AGPL-3.0-onl # SPDX-License-Identifier: AGPL-3.0-onl
defmodule Mix.Tasks.Pleroma.Ecto.MigrateTest do defmodule Mix.Tasks.Pleroma.Ecto.MigrateTest do
use Pleroma.DataCase, async: true use Pleroma.DataCase
import ExUnit.CaptureLog import ExUnit.CaptureLog
require Logger require Logger

View file

@ -3,7 +3,8 @@
# SPDX-License-Identifier: AGPL-3.0-only # SPDX-License-Identifier: AGPL-3.0-only
defmodule Mix.Tasks.Pleroma.InstanceTest do defmodule Mix.Tasks.Pleroma.InstanceTest do
use Pleroma.DataCase, async: true # Modifies the Application Environment, has to stay synchronous.
use Pleroma.DataCase
setup do setup do
File.mkdir_p!(tmp_path()) File.mkdir_p!(tmp_path())
@ -17,6 +18,9 @@ defmodule Mix.Tasks.Pleroma.InstanceTest do
end end
end) end)
# Is being modified by the mix task.
clear_config([:instance, :static_dir])
:ok :ok
end end

View file

@ -15,6 +15,7 @@ defmodule Pleroma.ApplicationRequirementsTest do
describe "check_repo_pool_size!/1" do describe "check_repo_pool_size!/1" do
test "raises if the pool size is unexpected" do test "raises if the pool size is unexpected" do
clear_config([Pleroma.Repo, :pool_size], 11) clear_config([Pleroma.Repo, :pool_size], 11)
clear_config([:dangerzone, :override_repo_pool_size], false)
assert_raise Pleroma.ApplicationRequirements.VerifyError, assert_raise Pleroma.ApplicationRequirements.VerifyError,
"Repo.pool_size different than recommended value.", "Repo.pool_size different than recommended value.",