Search: Save detected pg version in a persistent term.
This commit is contained in:
parent
f9a4cf2097
commit
67b15cc033
4 changed files with 8 additions and 8 deletions
|
|
@ -19,8 +19,8 @@ defmodule Pleroma.Activity.SearchTest do
|
|||
end
|
||||
|
||||
test "using plainto_tsquery on postgres < 11" do
|
||||
old_config = Application.get_env(:postgres, :version)
|
||||
Application.put_env(:postgres, :version, 10.0)
|
||||
old_version = :persistent_term.get({Pleroma.Repo, :postgres_version})
|
||||
:persistent_term.put({Pleroma.Repo, :postgres_version}, 10.0)
|
||||
|
||||
user = insert(:user)
|
||||
{:ok, post} = CommonAPI.post(user, %{status: "it's wednesday my dudes"})
|
||||
|
|
@ -31,7 +31,7 @@ defmodule Pleroma.Activity.SearchTest do
|
|||
|
||||
assert result.id == post.id
|
||||
|
||||
Application.put_env(:postgres, :version, old_config)
|
||||
:persistent_term.put({Pleroma.Repo, :postgres_version}, old_version)
|
||||
end
|
||||
|
||||
test "using websearch_to_tsquery" do
|
||||
|
|
|
|||
|
|
@ -279,8 +279,8 @@ defmodule Pleroma.Web.MastodonAPI.SearchControllerTest do
|
|||
end
|
||||
|
||||
test "search fetches remote statuses and prefers them over other results", %{conn: conn} do
|
||||
old_config = Application.get_env(:postgres, :version)
|
||||
Application.put_env(:postgres, :version, 10.0)
|
||||
old_version = :persistent_term.get({Pleroma.Repo, :postgres_version})
|
||||
:persistent_term.put({Pleroma.Repo, :postgres_version}, 10.0)
|
||||
|
||||
capture_log(fn ->
|
||||
{:ok, %{id: activity_id}} =
|
||||
|
|
@ -299,7 +299,7 @@ defmodule Pleroma.Web.MastodonAPI.SearchControllerTest do
|
|||
] = results["statuses"]
|
||||
end)
|
||||
|
||||
Application.put_env(:postgres, :version, old_config)
|
||||
:persistent_term.put({Pleroma.Repo, :postgres_version}, old_version)
|
||||
end
|
||||
|
||||
test "search doesn't show statuses that it shouldn't", %{conn: conn} do
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue