2020-01-26 21:11:16 +01:00
|
|
|
defmodule Mobilizon.GraphQL.API.SearchTest do
|
2019-02-21 18:11:49 +01:00
|
|
|
use ExUnit.Case, async: false
|
|
|
|
|
2019-09-22 16:26:23 +02:00
|
|
|
import Mock
|
|
|
|
|
2019-02-21 18:11:49 +01:00
|
|
|
alias Mobilizon.Actors
|
|
|
|
alias Mobilizon.Actors.Actor
|
2019-09-22 16:26:23 +02:00
|
|
|
alias Mobilizon.Events
|
|
|
|
alias Mobilizon.Events.Event
|
2019-09-09 00:52:49 +02:00
|
|
|
alias Mobilizon.Storage.Page
|
|
|
|
|
2020-01-26 21:11:16 +01:00
|
|
|
alias Mobilizon.GraphQL.API.Search
|
2020-01-22 02:14:42 +01:00
|
|
|
|
2020-01-26 21:11:16 +01:00
|
|
|
alias Mobilizon.Federation.ActivityPub
|
2021-04-22 12:17:56 +02:00
|
|
|
alias Mobilizon.Federation.ActivityPub.Actor, as: ActivityPubActor
|
2019-02-21 18:11:49 +01:00
|
|
|
|
|
|
|
test "search an user by username" do
|
2021-04-22 12:17:56 +02:00
|
|
|
with_mock ActivityPubActor,
|
2021-08-23 10:34:33 +02:00
|
|
|
find_or_make_actor_from_nickname: fn "toto@domain.tld" ->
|
|
|
|
{:ok, %Actor{id: 42, type: :Group}}
|
|
|
|
end do
|
|
|
|
assert {:ok, %Page{total: 1, elements: [%Actor{id: 42, type: :Group}]}} ==
|
|
|
|
Search.search_actors(%{term: "toto@domain.tld"}, 1, 10, :Group)
|
2019-04-12 15:04:32 +02:00
|
|
|
|
2021-04-22 12:17:56 +02:00
|
|
|
assert_called(ActivityPubActor.find_or_make_actor_from_nickname("toto@domain.tld"))
|
2019-02-21 18:11:49 +01:00
|
|
|
end
|
|
|
|
end
|
|
|
|
|
|
|
|
test "search something by URL" do
|
|
|
|
with_mock ActivityPub,
|
2019-04-12 15:04:32 +02:00
|
|
|
fetch_object_from_url: fn "https://social.tcit.fr/users/tcit" -> {:ok, %Actor{id: 42}} end do
|
2019-09-09 00:52:49 +02:00
|
|
|
assert {:ok, %Page{total: 1, elements: [%Actor{id: 42}]}} ==
|
2020-08-05 16:44:08 +02:00
|
|
|
Search.search_actors(%{term: "https://social.tcit.fr/users/tcit"}, 1, 10, :Person)
|
2019-02-21 18:11:49 +01:00
|
|
|
|
2019-04-12 15:04:32 +02:00
|
|
|
assert_called(ActivityPub.fetch_object_from_url("https://social.tcit.fr/users/tcit"))
|
2019-02-21 18:11:49 +01:00
|
|
|
end
|
|
|
|
end
|
|
|
|
|
|
|
|
test "search actors" do
|
|
|
|
with_mock Actors,
|
2021-11-06 10:09:54 +01:00
|
|
|
search_actors: fn "toto", _options, 1, 10 ->
|
2019-09-09 00:52:49 +02:00
|
|
|
%Page{total: 1, elements: [%Actor{id: 42}]}
|
2019-04-12 15:04:32 +02:00
|
|
|
end do
|
|
|
|
assert {:ok, %{total: 1, elements: [%Actor{id: 42}]}} =
|
2020-08-05 16:44:08 +02:00
|
|
|
Search.search_actors(%{term: "toto"}, 1, 10, :Person)
|
2019-04-12 15:04:32 +02:00
|
|
|
|
2020-08-05 16:44:08 +02:00
|
|
|
assert_called(
|
2021-11-06 10:09:54 +01:00
|
|
|
Actors.search_actors(
|
2020-12-17 15:25:58 +01:00
|
|
|
"toto",
|
2021-11-06 10:09:54 +01:00
|
|
|
[
|
|
|
|
actor_type: :Person,
|
|
|
|
radius: nil,
|
|
|
|
location: nil,
|
|
|
|
minimum_visibility: :public,
|
|
|
|
current_actor_id: nil,
|
|
|
|
exclude_my_groups: false
|
|
|
|
],
|
2020-12-17 15:25:58 +01:00
|
|
|
1,
|
|
|
|
10
|
|
|
|
)
|
2020-08-05 16:44:08 +02:00
|
|
|
)
|
2019-02-21 18:11:49 +01:00
|
|
|
end
|
|
|
|
end
|
|
|
|
|
|
|
|
test "search events" do
|
|
|
|
with_mock Events,
|
2020-08-05 12:08:52 +02:00
|
|
|
build_events_for_search: fn %{term: "toto"}, 1, 10 ->
|
2019-09-09 00:52:49 +02:00
|
|
|
%Page{total: 1, elements: [%Event{title: "super toto event"}]}
|
2019-04-12 15:04:32 +02:00
|
|
|
end do
|
|
|
|
assert {:ok, %{total: 1, elements: [%Event{title: "super toto event"}]}} =
|
2020-08-05 12:08:52 +02:00
|
|
|
Search.search_events(%{term: "toto"}, 1, 10)
|
2019-04-12 15:04:32 +02:00
|
|
|
|
2020-08-05 12:08:52 +02:00
|
|
|
assert_called(Events.build_events_for_search(%{term: "toto"}, 1, 10))
|
2019-02-21 18:11:49 +01:00
|
|
|
end
|
|
|
|
end
|
|
|
|
end
|