-
Notifications
You must be signed in to change notification settings - Fork 192
/
Copy pathtest_models.py
70 lines (56 loc) · 1.91 KB
/
test_models.py
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
import pytest
import logging
from vectordb_bench.models import (
TaskConfig, CaseConfig,
CaseResult, TestResult,
Metric, CaseType
)
from vectordb_bench.backend.clients import (
DB,
IndexType
)
from vectordb_bench import config
log = logging.getLogger("vectordb_bench")
class TestModels:
@pytest.mark.skip("runs locally")
def test_test_result(self):
result = CaseResult(
task_config=TaskConfig(
db=DB.Milvus,
db_config=DB.Milvus.config(),
db_case_config=DB.Milvus.case_config_cls(index=IndexType.Flat)(),
case_config=CaseConfig(case_id=CaseType.Performance10M),
),
metrics=Metric(),
)
test_result = TestResult(run_id=10000, results=[result])
test_result.flush()
with pytest.raises(ValueError):
result = TestResult.read_file('nosuchfile.json')
def test_test_result_read_write(self):
result_dir = config.RESULTS_LOCAL_DIR
for json_file in result_dir.rglob("result*.json"):
res = TestResult.read_file(json_file)
res.flush()
def test_test_result_merge(self):
result_dir = config.RESULTS_LOCAL_DIR
all_results = []
first_result = None
for json_file in result_dir.glob("*.json"):
res = TestResult.read_file(json_file)
for cr in res.results:
all_results.append(cr)
if not first_result:
first_result = res
tr = TestResult(
run_id=first_result.run_id,
task_label="standard",
results=all_results,
)
tr.flush()
def test_test_result_display(self):
result_dir = config.RESULTS_LOCAL_DIR
for json_file in result_dir.rglob("result*.json"):
log.info(json_file)
res = TestResult.read_file(json_file)
res.display()