milvus/tests20/python_client/base/utility_wrapper.py
yanliang567 a2ac3e040b
[skip ci] Refactor function names (#5621)
Signed-off-by: yanliang567 <yanliang.qiao@zilliz.com>
2021-06-05 10:25:34 +08:00

65 lines
3.8 KiB
Python

from pymilvus_orm import utility
from pymilvus_orm.types import DataType
from pymilvus_orm.default_config import DefaultConfig
import sys
sys.path.append("..")
from check.param_check import *
from check.func_check import *
from utils.util_log import test_log as log
from common.common_type import *
from base.api_request import api_request
class ApiUtilityWrapper:
""" Method of encapsulating utility files """
ut = utility
def loading_progress(self, collection_name, partition_names=[], using="default", check_res=None, check_params=None):
func_name = sys._getframe().f_code.co_name
res, check = api_request([self.ut.loading_progress, collection_name, partition_names, using])
check_result = ResponseChecker(res, func_name, check_res, check_params, check, collection_name=collection_name,
partition_names=partition_names, using=using).run()
return res, check_result
def wait_for_loading_complete(self, collection_name, partition_names=[], timeout=None, using="default", check_res=None, check_params=None):
func_name = sys._getframe().f_code.co_name
res, check = api_request([self.ut.wait_for_loading_complete, collection_name, partition_names, timeout, using])
check_result = ResponseChecker(res, func_name, check_res, check_params, check, collection_name=collection_name,
partition_names=partition_names, timeout=timeout, using=using).run()
return res, check_result
def index_building_progress(self, collection_name, index_name="", using="default", check_res=None, check_params=None):
func_name = sys._getframe().f_code.co_name
res, check = api_request([self.ut.index_building_progress, collection_name, index_name, using])
check_result = ResponseChecker(res, func_name, check_res, check_params, check, collection_name=collection_name, index_name=index_name,
using=using).run()
return res, check_result
def wait_for_index_building_complete(self, collection_name, index_name="", timeout=None, using="default", check_res=None, check_params=None):
func_name = sys._getframe().f_code.co_name
res, check = api_request([self.ut.wait_for_loading_complete, collection_name, index_name, timeout, using])
check_result = ResponseChecker(res, func_name, check_res, check_params, check, collection_name=collection_name, index_name=index_name,
timeout=timeout, using=using).run()
return res, check_result
def has_collection(self, collection_name, using="default", check_res=None, check_params=None):
func_name = sys._getframe().f_code.co_name
res, check = api_request([self.ut.has_collection, collection_name, using])
check_result = ResponseChecker(res, func_name, check_res, check_params, check, collection_name=collection_name, using=using).run()
return res, check_result
def has_partition(self, collection_name, partition_name, using="default", check_res=None, check_params=None):
func_name = sys._getframe().f_code.co_name
res, check = api_request([self.ut.has_partition, collection_name, partition_name, using])
check_result = ResponseChecker(res, func_name, check_res, check_params, check, collection_name=collection_name,
partition_name=partition_name, using=using).run()
return res, check_result
def list_collections(self, timeout=None, using="default", check_res=None, check_params=None):
func_name = sys._getframe().f_code.co_name
res, check = api_request([self.ut.list_collections, timeout, using])
check_result = ResponseChecker(res, func_name, check_res, check_params, check, timeout=timeout, using=using).run()
return res, check_result