2022-06-29 21:09:48 +02:00
|
|
|
# System Packages
|
|
|
|
from pathlib import Path
|
|
|
|
|
2021-10-03 05:28:33 +02:00
|
|
|
# Internal Packages
|
2022-08-06 02:05:35 +02:00
|
|
|
from src.utils.state import model
|
2022-07-21 16:05:43 +02:00
|
|
|
from src.search_type import text_search
|
2022-01-15 02:54:38 +01:00
|
|
|
from src.utils.rawconfig import ContentConfig, SearchConfig
|
2022-07-21 16:05:43 +02:00
|
|
|
from src.processor.org_mode.org_to_jsonl import org_to_jsonl
|
2021-10-03 05:28:33 +02:00
|
|
|
|
|
|
|
|
|
|
|
# Test
|
|
|
|
# ----------------------------------------------------------------------------------------------------
|
2022-01-15 02:54:38 +01:00
|
|
|
def test_asymmetric_setup(content_config: ContentConfig, search_config: SearchConfig):
|
2021-10-03 05:28:33 +02:00
|
|
|
# Act
|
|
|
|
# Regenerate notes embeddings during asymmetric setup
|
2022-09-05 00:05:13 +02:00
|
|
|
notes_model = text_search.setup(org_to_jsonl, content_config.org, search_config.asymmetric, regenerate=True)
|
2021-10-03 05:28:33 +02:00
|
|
|
|
|
|
|
# Assert
|
|
|
|
assert len(notes_model.entries) == 10
|
|
|
|
assert len(notes_model.corpus_embeddings) == 10
|
|
|
|
|
|
|
|
|
|
|
|
# ----------------------------------------------------------------------------------------------------
|
2022-01-15 02:54:38 +01:00
|
|
|
def test_asymmetric_search(content_config: ContentConfig, search_config: SearchConfig):
|
2021-10-03 05:28:33 +02:00
|
|
|
# Arrange
|
2022-09-05 00:05:13 +02:00
|
|
|
model.notes_search = text_search.setup(org_to_jsonl, content_config.org, search_config.asymmetric, regenerate=False)
|
2021-10-03 05:28:33 +02:00
|
|
|
query = "How to git install application?"
|
|
|
|
|
|
|
|
# Act
|
2022-07-21 16:05:43 +02:00
|
|
|
hits, entries = text_search.query(
|
2021-10-03 05:28:33 +02:00
|
|
|
query,
|
2022-07-26 20:56:36 +02:00
|
|
|
model = model.notes_search,
|
|
|
|
rank_results=True)
|
2021-10-03 05:28:33 +02:00
|
|
|
|
2022-07-21 16:05:43 +02:00
|
|
|
results = text_search.collate_results(
|
2021-10-03 05:28:33 +02:00
|
|
|
hits,
|
2022-07-12 16:48:49 +02:00
|
|
|
entries,
|
2021-10-03 05:28:33 +02:00
|
|
|
count=1)
|
|
|
|
|
|
|
|
# Assert
|
2022-07-19 16:26:16 +02:00
|
|
|
# Actual_data should contain "Khoj via Emacs" entry
|
2022-07-20 18:33:27 +02:00
|
|
|
search_result = results[0]["entry"]
|
2021-10-03 05:28:33 +02:00
|
|
|
assert "git clone" in search_result
|
2022-06-29 21:09:48 +02:00
|
|
|
|
|
|
|
|
|
|
|
# ----------------------------------------------------------------------------------------------------
|
|
|
|
def test_asymmetric_reload(content_config: ContentConfig, search_config: SearchConfig):
|
|
|
|
# Arrange
|
2022-09-05 00:05:13 +02:00
|
|
|
initial_notes_model= text_search.setup(org_to_jsonl, content_config.org, search_config.asymmetric, regenerate=False)
|
2022-06-29 21:09:48 +02:00
|
|
|
|
|
|
|
assert len(initial_notes_model.entries) == 10
|
|
|
|
assert len(initial_notes_model.corpus_embeddings) == 10
|
|
|
|
|
|
|
|
file_to_add_on_reload = Path(content_config.org.input_filter).parent / "reload.org"
|
|
|
|
content_config.org.input_files = [f'{file_to_add_on_reload}']
|
|
|
|
|
|
|
|
# append Org-Mode Entry to first Org Input File in Config
|
|
|
|
with open(file_to_add_on_reload, "w") as f:
|
|
|
|
f.write("\n* A Chihuahua doing Tango\n- Saw a super cute video of a chihuahua doing the Tango on Youtube\n")
|
|
|
|
|
|
|
|
# regenerate notes jsonl, model embeddings and model to include entry from new file
|
2022-09-05 00:05:13 +02:00
|
|
|
regenerated_notes_model = text_search.setup(org_to_jsonl, content_config.org, search_config.asymmetric, regenerate=True)
|
2022-06-29 21:09:48 +02:00
|
|
|
|
|
|
|
# Act
|
|
|
|
# reload embeddings, entries, notes model from previously generated notes jsonl and model embeddings files
|
2022-09-05 00:05:13 +02:00
|
|
|
initial_notes_model = text_search.setup(org_to_jsonl, content_config.org, search_config.asymmetric, regenerate=False)
|
2022-06-29 21:09:48 +02:00
|
|
|
|
|
|
|
# Assert
|
|
|
|
assert len(regenerated_notes_model.entries) == 11
|
|
|
|
assert len(regenerated_notes_model.corpus_embeddings) == 11
|
|
|
|
|
|
|
|
# verify new entry loaded from updated embeddings, entries
|
|
|
|
assert len(initial_notes_model.entries) == 11
|
|
|
|
assert len(initial_notes_model.corpus_embeddings) == 11
|
|
|
|
|
|
|
|
# Cleanup
|
|
|
|
# delete reload test file added
|
2022-07-06 23:25:31 +02:00
|
|
|
content_config.org.input_files = []
|
2022-06-29 21:09:48 +02:00
|
|
|
file_to_add_on_reload.unlink()
|