[skip e2e]Create tests for import api (#16053)

Signed-off-by: yanliang567 <yanliang.qiao@zilliz.com>
pull/15155/head
yanliang567 2022-03-15 16:07:21 +08:00 committed by GitHub
parent d3d5a41b76
commit e3379091ef
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23
1 changed files with 35 additions and 0 deletions

View File

@ -0,0 +1,35 @@
import time
import pytest
from base.client_base import TestcaseBase
from common import common_func as cf
from common import common_type as ct
from common.common_type import CaseLabel
from utils.util_log import test_log as log
class TestRowBasedImport(TestcaseBase):
@pytest.mark.tags(CaseLabel.L3)
def test_default(self):
pass
class TestColumnBasedImport(TestcaseBase):
@pytest.mark.tags(CaseLabel.L3)
def test_default(self):
pass
class TestImportInvalidParams(TestcaseBase):
@pytest.mark.tags(CaseLabel.L3)
def test_default(self):
pass
class TestImportAdvanced(TestcaseBase):
"""Validate data consistency and availability during import"""
@pytest.mark.tags(CaseLabel.L3)
def test_default(self):
pass