QdrantSearch: Add healthcheck for qdrant
This commit is contained in:
parent
08e9d995f8
commit
8b76f56050
2 changed files with 23 additions and 0 deletions
|
|
@ -15,6 +15,18 @@ defmodule Pleroma.Search.QdrantSearchTest do
|
|||
alias Pleroma.Workers.SearchIndexingWorker
|
||||
|
||||
describe "Qdrant search" do
|
||||
test "returns the correct healthcheck endpoints" do
|
||||
Config
|
||||
|> expect(:get, 1, fn
|
||||
[Pleroma.Search.QdrantSearch, key], nil ->
|
||||
%{qdrant_url: "https://qdrant.url"}[key]
|
||||
end)
|
||||
|
||||
health_endpoints = QdrantSearch.healthcheck_endpoints()
|
||||
|
||||
assert "https://qdrant.url/healthz" in health_endpoints
|
||||
end
|
||||
|
||||
test "searches for a term by encoding it and sending it to qdrant" do
|
||||
user = insert(:user)
|
||||
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue