Files
milvus-io--milvus/tests/python_client/base/schema_wrapper.py
T
wehub-resource-sync 498b235461
Build and test / Build and test AMD64 Ubuntu 22.04 (push) Failing after 0s
Publish Builder / amazonlinux2023 (push) Failing after 1s
Build and test / UT for Go (push) Has been skipped
Publish KRTE Images / KRTE (push) Failing after 1s
Build and test / Integration Test (push) Has been skipped
Build and test / Upload Code Coverage (push) Has been skipped
Publish Builder / rockylinux9 (push) Failing after 1s
Publish Builder / ubuntu22.04 (push) Failing after 0s
Publish Builder / ubuntu24.04 (push) Failing after 0s
Publish Gpu Builder / publish-gpu-builder (push) Failing after 1s
Publish Test Images / PyTest (push) Failing after 0s
Build and test / UT for Cpp (push) Has been cancelled
chore: import upstream snapshot with attribution
2026-07-13 12:31:17 +08:00

84 lines
3.3 KiB
Python

import sys
sys.path.append("..")
from check.func_check import ResponseChecker
from utils.api_request import api_request
from pymilvus import CollectionSchema, FieldSchema
class ApiCollectionSchemaWrapper:
collection_schema = None
def init_collection_schema(self, fields, description="", check_task=None, check_items=None, **kwargs):
"""In order to distinguish the same name of CollectionSchema"""
func_name = sys._getframe().f_code.co_name
response, is_succ = api_request([CollectionSchema, fields, description], **kwargs)
self.collection_schema = response if is_succ else None
check_result = ResponseChecker(response, func_name, check_task, check_items, is_succ=is_succ, fields=fields,
description=description, **kwargs).run()
return response, check_result
@property
def primary_field(self):
return self.collection_schema.primary_field if self.collection_schema else None
@property
def partition_key_field(self):
return self.collection_schema.partition_key_field if self.collection_schema else None
@property
def fields(self):
return self.collection_schema.fields if self.collection_schema else None
@property
def description(self):
return self.collection_schema.description if self.collection_schema else None
@property
def auto_id(self):
return self.collection_schema.auto_id if self.collection_schema else None
@property
def enable_dynamic_field(self):
return self.collection_schema.enable_dynamic_field if self.collection_schema else None
@property
def to_dict(self):
return self.collection_schema.to_dict if self.collection_schema else None
@property
def verify(self):
return self.collection_schema.verify if self.collection_schema else None
def add_field(self, field_name, datatype, check_task=None, check_items=None, **kwargs):
func_name = sys._getframe().f_code.co_name
response, is_succ = api_request([self.collection_schema.add_field, field_name, datatype], **kwargs)
check_result = ResponseChecker(response, func_name, check_task, check_items,
field_name=field_name, datatype=datatype, **kwargs).run()
return response, check_result
class ApiFieldSchemaWrapper:
field_schema = None
def init_field_schema(self, name, dtype, description="", check_task=None, check_items=None, **kwargs):
"""In order to distinguish the same name of FieldSchema"""
func_name = sys._getframe().f_code.co_name
response, is_succ = api_request([FieldSchema, name, dtype, description], **kwargs)
self.field_schema = response if is_succ else None
check_result = ResponseChecker(response, func_name, check_task, check_items, is_succ, name=name, dtype=dtype,
description=description, **kwargs).run()
return response, check_result
@property
def description(self):
return self.field_schema.description if self.field_schema else None
@property
def params(self):
return self.field_schema.params if self.field_schema else None
@property
def dtype(self):
return self.field_schema.dtype if self.field_schema else None