2021-08-17 12:27:16 +02:00
|
|
|
# Standard Modules
|
|
|
|
from pathlib import Path
|
|
|
|
|
|
|
|
# External Packages
|
|
|
|
import pytest
|
|
|
|
from fastapi.testclient import TestClient
|
|
|
|
|
|
|
|
# Internal Packages
|
2021-09-30 13:12:14 +02:00
|
|
|
from src.main import app, search_config, model
|
|
|
|
from src.search_type import asymmetric, image_search
|
|
|
|
from src.utils.config import SearchConfig, TextSearchConfig, ImageSearchConfig
|
|
|
|
from src.utils.helpers import resolve_absolute_path
|
2021-08-17 12:27:16 +02:00
|
|
|
|
|
|
|
|
|
|
|
# Arrange
|
|
|
|
# ----------------------------------------------------------------------------------------------------
|
|
|
|
client = TestClient(app)
|
|
|
|
|
|
|
|
|
2021-08-22 04:21:38 +02:00
|
|
|
# Test
|
2021-09-30 04:02:55 +02:00
|
|
|
# ----------------------------------------------------------------------------------------------------
|
|
|
|
def test_search_with_invalid_search_type():
|
|
|
|
# Arrange
|
|
|
|
user_query = "How to call semantic search from Emacs?"
|
|
|
|
|
|
|
|
# Act
|
|
|
|
response = client.get(f"/search?q={user_query}&t=invalid_search_type")
|
|
|
|
|
|
|
|
# Assert
|
|
|
|
assert response.status_code == 422
|
|
|
|
|
|
|
|
|
2021-09-30 05:47:58 +02:00
|
|
|
# ----------------------------------------------------------------------------------------------------
|
2021-09-30 04:02:55 +02:00
|
|
|
def test_search_with_valid_search_type():
|
|
|
|
# Arrange
|
|
|
|
for search_type in ["notes", "ledger", "music", "image"]:
|
|
|
|
# Act
|
|
|
|
response = client.get(f"/search?q=random&t={search_type}")
|
|
|
|
# Assert
|
|
|
|
assert response.status_code == 200
|
|
|
|
|
|
|
|
|
2021-09-30 05:47:58 +02:00
|
|
|
# ----------------------------------------------------------------------------------------------------
|
2021-09-30 04:02:55 +02:00
|
|
|
def test_regenerate_with_invalid_search_type():
|
|
|
|
# Act
|
|
|
|
response = client.get(f"/regenerate?t=invalid_search_type")
|
|
|
|
|
|
|
|
# Assert
|
|
|
|
assert response.status_code == 422
|
|
|
|
|
|
|
|
|
2021-09-30 05:47:58 +02:00
|
|
|
# ----------------------------------------------------------------------------------------------------
|
2021-09-30 04:02:55 +02:00
|
|
|
def test_regenerate_with_valid_search_type():
|
|
|
|
# Arrange
|
|
|
|
for search_type in ["notes", "ledger", "music", "image"]:
|
|
|
|
# Act
|
|
|
|
response = client.get(f"/regenerate?t={search_type}")
|
|
|
|
# Assert
|
|
|
|
assert response.status_code == 200
|
|
|
|
|
|
|
|
|
2021-08-17 12:27:16 +02:00
|
|
|
# ----------------------------------------------------------------------------------------------------
|
2021-09-30 05:24:27 +02:00
|
|
|
def test_notes_search():
|
2021-08-22 04:21:38 +02:00
|
|
|
# Arrange
|
2021-09-30 11:04:04 +02:00
|
|
|
search_config = SearchConfig()
|
|
|
|
search_config.notes = TextSearchConfig(
|
|
|
|
input_files = [Path('tests/data/main_readme.org'), Path('tests/data/interface_emacs_readme.org')],
|
|
|
|
input_filter = None,
|
|
|
|
compressed_jsonl = Path('tests/data/.test.jsonl.gz'),
|
|
|
|
embeddings_file = Path('tests/data/.test_embeddings.pt'),
|
|
|
|
verbose = 0)
|
2021-08-22 04:21:38 +02:00
|
|
|
|
2021-08-17 12:27:16 +02:00
|
|
|
# Act
|
2021-09-30 05:24:27 +02:00
|
|
|
# Regenerate embeddings during asymmetric setup
|
2021-09-30 11:04:04 +02:00
|
|
|
notes_model = asymmetric.setup(search_config.notes, regenerate=True)
|
2021-08-17 12:27:16 +02:00
|
|
|
|
|
|
|
# Assert
|
2021-09-30 05:24:27 +02:00
|
|
|
assert len(notes_model.entries) == 10
|
|
|
|
assert len(notes_model.corpus_embeddings) == 10
|
|
|
|
|
|
|
|
# Arrange
|
|
|
|
model.notes_search = notes_model
|
|
|
|
user_query = "How to call semantic search from Emacs?"
|
|
|
|
|
|
|
|
# Act
|
|
|
|
response = client.get(f"/search?q={user_query}&n=1&t=notes")
|
|
|
|
|
|
|
|
# Assert
|
|
|
|
assert response.status_code == 200
|
|
|
|
# assert actual_data contains "Semantic Search via Emacs"
|
|
|
|
search_result = response.json()[0]["Entry"]
|
|
|
|
assert "Semantic Search via Emacs" in search_result
|
|
|
|
|
|
|
|
|
2021-09-30 12:29:31 +02:00
|
|
|
# ----------------------------------------------------------------------------------------------------
|
|
|
|
def test_image_search():
|
|
|
|
# Arrange
|
|
|
|
search_config = SearchConfig()
|
|
|
|
search_config.image = ImageSearchConfig(
|
|
|
|
input_directory = Path('tests/data'),
|
|
|
|
embeddings_file = Path('tests/data/.image_embeddings.pt'),
|
|
|
|
batch_size = 10,
|
|
|
|
use_xmp_metadata = False,
|
|
|
|
verbose = 2)
|
|
|
|
|
|
|
|
# Act
|
|
|
|
model.image_search = image_search.setup(search_config.image, regenerate=True)
|
|
|
|
|
|
|
|
# Assert
|
|
|
|
assert len(model.image_search.image_names) == 3
|
|
|
|
assert len(model.image_search.image_embeddings) == 3
|
|
|
|
|
|
|
|
# Arrange
|
|
|
|
for query, expected_image_name in [("kitten in a park", "kitten_park.jpg"),
|
|
|
|
("horse and dog in a farm", "horse_dog.jpg"),
|
|
|
|
("A guinea pig eating grass", "guineapig_grass.jpg")]:
|
|
|
|
# Act
|
|
|
|
hits = image_search.query(
|
|
|
|
query,
|
|
|
|
count = 1,
|
|
|
|
model = model.image_search)
|
|
|
|
|
|
|
|
results = image_search.collate_results(
|
|
|
|
hits,
|
|
|
|
model.image_search.image_names,
|
|
|
|
search_config.image.input_directory,
|
|
|
|
count=1)
|
|
|
|
|
|
|
|
actual_image = results[0]["Entry"]
|
|
|
|
expected_image = resolve_absolute_path(search_config.image.input_directory.joinpath(expected_image_name))
|
|
|
|
|
|
|
|
# Assert
|
|
|
|
assert expected_image == actual_image
|
|
|
|
|
|
|
|
|
2021-09-30 11:04:04 +02:00
|
|
|
# ----------------------------------------------------------------------------------------------------
|
|
|
|
def test_notes_regenerate():
|
|
|
|
# Arrange
|
|
|
|
search_config = SearchConfig()
|
|
|
|
search_config.notes = TextSearchConfig(
|
|
|
|
input_files = [Path('tests/data/main_readme.org'), Path('tests/data/interface_emacs_readme.org')],
|
|
|
|
input_filter = None,
|
|
|
|
compressed_jsonl = Path('tests/data/.test.jsonl.gz'),
|
|
|
|
embeddings_file = Path('tests/data/.test_embeddings.pt'),
|
|
|
|
verbose = 0)
|
|
|
|
|
|
|
|
# Act
|
|
|
|
# Regenerate embeddings during asymmetric setup
|
|
|
|
notes_model = asymmetric.setup(search_config.notes, regenerate=True)
|
|
|
|
|
|
|
|
# Assert
|
|
|
|
assert len(notes_model.entries) == 10
|
|
|
|
assert len(notes_model.corpus_embeddings) == 10
|
|
|
|
|
|
|
|
# Arrange
|
|
|
|
model.notes_search = notes_model
|
|
|
|
|
|
|
|
# Act
|
|
|
|
response = client.get(f"/regenerate?t=notes")
|
|
|
|
|
|
|
|
# Assert
|
|
|
|
assert response.status_code == 200
|