mirror of
https://github.com/khoj-ai/khoj.git
synced 2024-11-23 15:38:55 +01:00
216acf545f
- Partition configuration for indexing local data based on user accounts - Store indexed data in an underlying postgres db using the `pgvector` extension - Add migrations for all relevant user data and embeddings generation. Very little performance optimization has been done for the lookup time - Apply filters using SQL queries - Start removing many server-level configuration settings - Configure GitHub test actions to run during any PR. Update the test action to run in a containerized environment with a DB. - Update the Docker image and docker-compose.yml to work with the new application design
50 lines
1.6 KiB
Python
50 lines
1.6 KiB
Python
# Standard Modules
|
|
from pathlib import Path
|
|
from random import random
|
|
|
|
# Internal Packages
|
|
from khoj.utils.cli import cli
|
|
from khoj.utils.helpers import resolve_absolute_path
|
|
|
|
|
|
# Test
|
|
# ----------------------------------------------------------------------------------------------------
|
|
def test_cli_minimal_default():
|
|
# Act
|
|
actual_args = cli([])
|
|
|
|
# Assert
|
|
assert actual_args.config_file == resolve_absolute_path(Path("~/.khoj/khoj.yml"))
|
|
assert actual_args.regenerate == False
|
|
assert actual_args.verbose == 0
|
|
|
|
|
|
# ----------------------------------------------------------------------------------------------------
|
|
def test_cli_invalid_config_file_path():
|
|
# Arrange
|
|
non_existent_config_file = f"non-existent-khoj-{random()}.yml"
|
|
|
|
# Act
|
|
actual_args = cli([f"-c={non_existent_config_file}"])
|
|
|
|
# Assert
|
|
assert actual_args.config_file == resolve_absolute_path(non_existent_config_file)
|
|
assert actual_args.config == None
|
|
|
|
|
|
# ----------------------------------------------------------------------------------------------------
|
|
def test_cli_config_from_file():
|
|
# Act
|
|
actual_args = cli(["-c=tests/data/config.yml", "--regenerate", "-vvv"])
|
|
|
|
# Assert
|
|
assert actual_args.config_file == resolve_absolute_path(Path("tests/data/config.yml"))
|
|
assert actual_args.regenerate == True
|
|
assert actual_args.config is not None
|
|
assert actual_args.verbose == 3
|
|
|
|
# Ensure content config is loaded from file
|
|
assert actual_args.config.content_type.org.input_files == [
|
|
Path("~/first_from_config.org"),
|
|
Path("~/second_from_config.org"),
|
|
]
|