mirror of
https://gitee.com/milvus-io/milvus.git
synced 2024-11-29 18:38:44 +08:00
[skip e2e] Add search test case (#16044)
Signed-off-by: Binbin Lv <binbin.lv@zilliz.com>
This commit is contained in:
parent
6079a3dfaa
commit
1ca71a2a65
@ -549,6 +549,35 @@ class TestCollectionSearchInvalid(TestcaseBase):
|
||||
"ids": insert_res.primary_keys,
|
||||
"limit": default_limit})
|
||||
|
||||
@pytest.mark.tags(CaseLabel.L2)
|
||||
def test_search_with_empty_collection_with_partition(self):
|
||||
"""
|
||||
target: test search with empty collection
|
||||
method: 1. collection an empty collection with partitions
|
||||
2. load
|
||||
3. search
|
||||
expected: return 0 result
|
||||
"""
|
||||
# 1. initialize without data
|
||||
collection_w = self.init_collection_general(prefix, partition_num=1)[0]
|
||||
par = collection_w.partitions
|
||||
# 2. search collection without data after load
|
||||
collection_w.load()
|
||||
collection_w.search(vectors[:default_nq], default_search_field, default_search_params,
|
||||
default_limit, default_search_exp,
|
||||
check_task=CheckTasks.check_search_results,
|
||||
check_items={"nq": default_nq,
|
||||
"ids": [],
|
||||
"limit": 0})
|
||||
# 2. search a partition without data after load
|
||||
collection_w.search(vectors[:default_nq], default_search_field, default_search_params,
|
||||
default_limit, default_search_exp,
|
||||
[par[1].name],
|
||||
check_task=CheckTasks.check_search_results,
|
||||
check_items={"nq": default_nq,
|
||||
"ids": [],
|
||||
"limit": 0})
|
||||
|
||||
@pytest.mark.tags(CaseLabel.L1)
|
||||
def test_search_partition_deleted(self):
|
||||
"""
|
||||
|
Loading…
Reference in New Issue
Block a user