2021-09-22 19:53:54 +08:00
|
|
|
import pytest
|
|
|
|
|
|
|
|
from base.client_base import TestcaseBase
|
2021-09-24 17:39:55 +08:00
|
|
|
from common import common_func as cf
|
2021-09-24 19:25:55 +08:00
|
|
|
from common import common_type as ct
|
2021-09-24 17:39:55 +08:00
|
|
|
from common.common_type import CaseLabel, CheckTasks
|
|
|
|
from utils.utils import *
|
|
|
|
from common.constants import *
|
2021-09-22 19:53:54 +08:00
|
|
|
|
|
|
|
prefix = "alias"
|
2021-09-24 17:39:55 +08:00
|
|
|
exp_name = "name"
|
|
|
|
exp_schema = "schema"
|
|
|
|
default_schema = cf.gen_default_collection_schema()
|
|
|
|
|
2021-09-22 19:53:54 +08:00
|
|
|
|
|
|
|
class TestAliasParams(TestcaseBase):
|
|
|
|
""" Test cases of alias interface parameters"""
|
|
|
|
pass
|
|
|
|
|
2021-09-24 17:39:55 +08:00
|
|
|
|
2021-09-22 19:53:54 +08:00
|
|
|
class TestAliasParamsInvalid(TestcaseBase):
|
|
|
|
""" Negative test cases of alias interface parameters"""
|
|
|
|
pass
|
|
|
|
|
2021-09-24 17:39:55 +08:00
|
|
|
|
2021-09-22 19:53:54 +08:00
|
|
|
class TestAliasOperation(TestcaseBase):
|
|
|
|
""" Test cases of alias interface operations"""
|
2021-09-24 17:39:55 +08:00
|
|
|
|
|
|
|
@pytest.mark.tags(CaseLabel.L1)
|
|
|
|
def test_alias_create_operation_default(self):
|
|
|
|
"""
|
|
|
|
target: test collection create alias
|
|
|
|
method:
|
|
|
|
1.create a collection and create 10 partitions for it
|
|
|
|
2.collection create a alias, then init a collection with this alias name but not create partitions
|
|
|
|
expected: collection is equal to alias
|
|
|
|
"""
|
|
|
|
self._connect()
|
|
|
|
c_name = cf.gen_unique_str("collection")
|
|
|
|
collection_w = self.init_collection_wrap(name=c_name, schema=default_schema,
|
|
|
|
check_task=CheckTasks.check_collection_property,
|
|
|
|
check_items={exp_name: c_name, exp_schema: default_schema})
|
|
|
|
for _ in range(10):
|
|
|
|
partition_name = cf.gen_unique_str("partition")
|
|
|
|
# create partition with different names and check the partition exists
|
|
|
|
self.init_partition_wrap(collection_w, partition_name)
|
|
|
|
assert collection_w.has_partition(partition_name)[0]
|
|
|
|
|
|
|
|
alias_name = cf.gen_unique_str(prefix)
|
|
|
|
collection_w.create_alias(alias_name)
|
|
|
|
collection_alias = self.init_collection_wrap(name=alias_name,
|
|
|
|
check_task=CheckTasks.check_collection_property,
|
|
|
|
check_items={exp_name: alias_name, exp_schema: default_schema})
|
|
|
|
# assert collection is equal to alias
|
|
|
|
assert [p.name for p in collection_w.partitions] == [p.name for p in collection_alias.partitions]
|
|
|
|
|
|
|
|
def test_alias_alter_operation_default(self):
|
|
|
|
"""
|
|
|
|
target: test collection alter alias
|
|
|
|
method:
|
|
|
|
1. create collection_1 with 10 partitions and its alias alias_a
|
|
|
|
2. create collection_2 with 5 partitions and its alias alias_b
|
|
|
|
3. collection_1 alter alias to alias_b
|
|
|
|
expected:
|
|
|
|
in step 1, collection_1 is equal to alias_a
|
|
|
|
in step 2, collection_2 is equal to alias_b
|
|
|
|
in step 3, collection_1 is equal to alias_a and alias_b, and collection_2 is not equal to alias_b any more
|
|
|
|
"""
|
|
|
|
self._connect()
|
|
|
|
|
|
|
|
# create collection_1 with 10 partitions and its alias alias_a
|
|
|
|
c_1_name = cf.gen_unique_str("collection")
|
|
|
|
collection_1 = self.init_collection_wrap(name=c_1_name, schema=default_schema,
|
|
|
|
check_task=CheckTasks.check_collection_property,
|
|
|
|
check_items={exp_name: c_1_name, exp_schema: default_schema})
|
|
|
|
for _ in range(10):
|
|
|
|
partition_name = cf.gen_unique_str("partition")
|
|
|
|
# create partition with different names and check the partition exists
|
|
|
|
self.init_partition_wrap(collection_1, partition_name)
|
|
|
|
assert collection_1.has_partition(partition_name)[0]
|
|
|
|
|
|
|
|
alias_a_name = cf.gen_unique_str(prefix)
|
|
|
|
collection_1.create_alias(alias_a_name)
|
|
|
|
collection_alias_a = self.init_collection_wrap(name=alias_a_name,
|
|
|
|
check_task=CheckTasks.check_collection_property,
|
|
|
|
check_items={exp_name: alias_a_name, exp_schema: default_schema})
|
|
|
|
|
|
|
|
assert [p.name for p in collection_1.partitions] == [p.name for p in collection_alias_a.partitions]
|
|
|
|
|
|
|
|
# create collection_2 with 5 partitions and its alias alias_b
|
|
|
|
c_2_name = cf.gen_unique_str("collection")
|
|
|
|
collection_2 = self.init_collection_wrap(name=c_2_name, schema=default_schema,
|
|
|
|
check_task=CheckTasks.check_collection_property,
|
|
|
|
check_items={exp_name: c_2_name, exp_schema: default_schema})
|
|
|
|
|
|
|
|
|
|
|
|
for _ in range(5):
|
|
|
|
partition_name = cf.gen_unique_str("partition")
|
|
|
|
# create partition with different names and check the partition exists
|
|
|
|
self.init_partition_wrap(collection_2, partition_name)
|
|
|
|
assert collection_2.has_partition(partition_name)[0]
|
|
|
|
|
|
|
|
alias_b_name = cf.gen_unique_str(prefix)
|
|
|
|
collection_2.create_alias(alias_b_name)
|
|
|
|
collection_alias_b = self.init_collection_wrap(name=alias_b_name,
|
|
|
|
check_task=CheckTasks.check_collection_property,
|
|
|
|
check_items={exp_name: alias_b_name, exp_schema: default_schema})
|
|
|
|
|
|
|
|
assert [p.name for p in collection_2.partitions] == [p.name for p in collection_alias_b.partitions]
|
|
|
|
|
|
|
|
# collection_1 alter alias to alias_b
|
|
|
|
# so collection_1 has two alias name, alias_a and alias_b, but collection_2 has no alias
|
|
|
|
collection_1.alter_alias(alias_b_name)
|
|
|
|
|
|
|
|
# assert collection_1 is equal to alias_b
|
|
|
|
# assert collection_1 is equal to alias_a
|
|
|
|
# assert collections_2 is not equal to alias_b
|
|
|
|
assert [p.name for p in collection_1.partitions] == [p.name for p in collection_alias_b.partitions]
|
|
|
|
assert [p.name for p in collection_1.partitions] == [p.name for p in collection_alias_a.partitions]
|
|
|
|
assert [p.name for p in collection_2.partitions] != [p.name for p in collection_alias_b.partitions]
|
|
|
|
|
|
|
|
@pytest.mark.tags(CaseLabel.L1)
|
|
|
|
def test_alias_drop_operation_default(self):
|
|
|
|
"""
|
|
|
|
target: test collection drop alias
|
|
|
|
method:
|
|
|
|
1.create a collection with 10 partitons
|
|
|
|
2.collection create a alias
|
|
|
|
3.collection drop the alias
|
|
|
|
expected:
|
|
|
|
in step 2, collection is equal to alias
|
|
|
|
in step 3, collection is not equal to alias any more
|
|
|
|
"""
|
|
|
|
self._connect()
|
|
|
|
c_name = cf.gen_unique_str("collection")
|
|
|
|
collection_w = self.init_collection_wrap(name=c_name, schema=default_schema,
|
|
|
|
check_task=CheckTasks.check_collection_property,
|
|
|
|
check_items={exp_name: c_name, exp_schema: default_schema})
|
|
|
|
for _ in range(10):
|
|
|
|
partition_name = cf.gen_unique_str("partition")
|
|
|
|
# create partition with different names and check the partition exists
|
|
|
|
self.init_partition_wrap(collection_w, partition_name)
|
|
|
|
assert collection_w.has_partition(partition_name)[0]
|
|
|
|
|
|
|
|
alias_name = cf.gen_unique_str(prefix)
|
|
|
|
collection_w.create_alias(alias_name)
|
|
|
|
collection_alias = self.init_collection_wrap(name=alias_name,
|
|
|
|
check_task=CheckTasks.check_collection_property,
|
|
|
|
check_items={exp_name: alias_name, exp_schema: default_schema})
|
|
|
|
|
|
|
|
assert [p.name for p in collection_w.partitions] == [p.name for p in collection_alias.partitions]
|
|
|
|
|
|
|
|
collection_w.drop_alias(alias_name)
|
|
|
|
|
|
|
|
collection_alias = self.init_collection_wrap(name=alias_name,
|
|
|
|
check_task=CheckTasks.check_collection_property,
|
|
|
|
check_items={exp_name: alias_name, exp_schema: default_schema})
|
|
|
|
|
|
|
|
assert [p.name for p in collection_w.partitions] != [p.name for p in collection_alias.partitions]
|
|
|
|
|
2021-09-22 19:53:54 +08:00
|
|
|
|
|
|
|
class TestAliasOperationInvalid(TestcaseBase):
|
|
|
|
""" Negative test cases of alias interface operations"""
|
2021-09-24 19:25:55 +08:00
|
|
|
|
|
|
|
@pytest.mark.tags(CaseLabel.L1)
|
|
|
|
def test_alias_create_dupcation_alias(self):
|
|
|
|
"""
|
|
|
|
target: test two collections create alias with same name
|
|
|
|
method:
|
|
|
|
1.create a collection_1 with alias name alias_a
|
|
|
|
2.create a collection_2 also with alias name alias_a
|
|
|
|
expected:
|
|
|
|
in step 2, creating alias with a dupcation name is not allowed
|
|
|
|
"""
|
|
|
|
|
|
|
|
self._connect()
|
|
|
|
c_1_name = cf.gen_unique_str("collection")
|
|
|
|
collection_1 = self.init_collection_wrap(name=c_1_name, schema=default_schema,
|
|
|
|
check_task=CheckTasks.check_collection_property,
|
|
|
|
check_items={exp_name: c_1_name, exp_schema: default_schema})
|
|
|
|
alias_a_name = cf.gen_unique_str(prefix)
|
|
|
|
collection_1.create_alias(alias_a_name)
|
|
|
|
|
|
|
|
c_2_name = cf.gen_unique_str("collection")
|
|
|
|
collection_2 = self.init_collection_wrap(name=c_2_name, schema=default_schema,
|
|
|
|
check_task=CheckTasks.check_collection_property,
|
|
|
|
check_items={exp_name: c_2_name, exp_schema: default_schema})
|
|
|
|
error = {ct.err_code: 1, ct.err_msg: "Create alias failed: duplicate collection alias"}
|
|
|
|
collection_2.create_alias(alias_a_name,
|
|
|
|
check_task=CheckTasks.err_res,
|
|
|
|
check_items=error)
|
|
|
|
|
|
|
|
@pytest.mark.tags(CaseLabel.L1)
|
|
|
|
def test_alias_alter_not_exist_alias(self):
|
|
|
|
"""
|
|
|
|
target: test collection alter to alias which is not exist
|
|
|
|
method:
|
|
|
|
1.create a collection with alias
|
|
|
|
2.collection alters to a alias name which is not exist
|
|
|
|
expected:
|
|
|
|
in step 2, alter alias with a not exist name is not allowed
|
|
|
|
"""
|
|
|
|
|
|
|
|
self._connect()
|
|
|
|
c_name = cf.gen_unique_str("collection")
|
|
|
|
collection_w = self.init_collection_wrap(name=c_name, schema=default_schema,
|
|
|
|
check_task=CheckTasks.check_collection_property,
|
|
|
|
check_items={exp_name: c_name, exp_schema: default_schema})
|
|
|
|
alias_name = cf.gen_unique_str(prefix)
|
|
|
|
collection_w.create_alias(alias_name)
|
|
|
|
|
|
|
|
alias_not_exist_name = cf.gen_unique_str(prefix)
|
|
|
|
error = {ct.err_code: 1, ct.err_msg: "Alter alias failed: alias does not exist"}
|
|
|
|
collection_w.alter_alias(alias_not_exist_name,
|
|
|
|
check_task=CheckTasks.err_res,
|
|
|
|
check_items=error)
|
|
|
|
|
|
|
|
@pytest.mark.tags(CaseLabel.L1)
|
|
|
|
def test_alias_drop_not_exist_alias(self):
|
|
|
|
"""
|
|
|
|
target: test collection drop alias which is not exist
|
|
|
|
method:
|
|
|
|
1.create a collection with alias
|
|
|
|
2.collection drop alias which is not exist
|
|
|
|
expected: drop alias failed
|
|
|
|
"""
|
|
|
|
|
|
|
|
self._connect()
|
|
|
|
c_name = cf.gen_unique_str("collection")
|
|
|
|
collection_w = self.init_collection_wrap(name=c_name, schema=default_schema,
|
|
|
|
check_task=CheckTasks.check_collection_property,
|
|
|
|
check_items={exp_name: c_name, exp_schema: default_schema})
|
|
|
|
alias_name = cf.gen_unique_str(prefix)
|
|
|
|
collection_w.create_alias(alias_name)
|
|
|
|
|
|
|
|
alias_not_exist_name = cf.gen_unique_str(prefix)
|
|
|
|
error = {ct.err_code: 1, ct.err_msg: "Drop alias failed: alias does not exist"}
|
|
|
|
collection_w.drop_alias(alias_not_exist_name,
|
|
|
|
check_task=CheckTasks.err_res,
|
|
|
|
check_items=error)
|
|
|
|
|
|
|
|
@pytest.mark.tags(CaseLabel.L1)
|
|
|
|
def test_alias_drop_same_alias_twice(self):
|
|
|
|
"""
|
|
|
|
target: test collection drop same alias twice
|
|
|
|
method:
|
|
|
|
1.create a collection with alias
|
|
|
|
2.collection drop alias
|
|
|
|
3.collection drop alias again
|
|
|
|
expected: drop alias failed
|
|
|
|
"""
|
|
|
|
|
|
|
|
self._connect()
|
|
|
|
c_name = cf.gen_unique_str("collection")
|
|
|
|
collection_w = self.init_collection_wrap(name=c_name, schema=default_schema,
|
|
|
|
check_task=CheckTasks.check_collection_property,
|
|
|
|
check_items={exp_name: c_name, exp_schema: default_schema})
|
|
|
|
alias_name = cf.gen_unique_str(prefix)
|
|
|
|
collection_w.create_alias(alias_name)
|
|
|
|
collection_w.drop_alias(alias_name)
|
|
|
|
|
|
|
|
error = {ct.err_code: 1, ct.err_msg: "Drop alias failed: alias does not exist"}
|
|
|
|
collection_w.drop_alias(alias_name,
|
|
|
|
check_task=CheckTasks.err_res,
|
|
|
|
check_items=error)
|