Fixing requirement names.

This commit is contained in:
Vitaliy Zakaznikov 2021-01-27 10:01:47 -05:00
parent 48884d2231
commit 01d3d0aeca
5 changed files with 6 additions and 6 deletions

View File

@ -182,7 +182,7 @@ def encrypt(self, mysql_datatype):
@TestFeature
@Name("database engine")
@Requirements(
RQ_SRS008_AES_Functions_Compatability_Engine_Database_MySQL("1.0")
RQ_SRS008_AES_Functions_Compatibility_Engine_Database_MySQL("1.0")
)
def feature(self, node="clickhouse1", mysql_node="mysql1"):
"""Check usage of encryption functions with [MySQL database engine].

View File

@ -237,7 +237,7 @@ def decrypt(self, mysql_datatype):
@TestFeature
@Name("dictionary")
@Requirements(
RQ_SRS008_AES_Functions_Compatability_Dictionaries("1.0")
RQ_SRS008_AES_Functions_Compatibility_Dictionaries("1.0")
)
def feature(self, node="clickhouse1", mysql_node="mysql1"):
"""Check usage of encryption functions with [MySQL dictionary].

View File

@ -5,7 +5,7 @@ from aes_encryption.requirements import *
@TestFeature
@Name("mysql")
@Requirements(
RQ_SRS008_AES_Functions_Compatability_MySQL("1.0")
RQ_SRS008_AES_Functions_Compatibility_MySQL("1.0")
)
def feature(self, node="clickhouse1"):
"""Check encryption functions usage compatibility with MySQL.

View File

@ -188,7 +188,7 @@ def encrypt(self, mysql_datatype):
@TestFeature
@Name("table engine")
@Requirements(
RQ_SRS008_AES_Functions_Compatability_Engine_Table_MySQL("1.0")
RQ_SRS008_AES_Functions_Compatibility_Engine_Table_MySQL("1.0")
)
def feature(self, node="clickhouse1", mysql_node="mysql1"):
"""Check usage of encryption functions with [MySQL table engine].

View File

@ -169,7 +169,7 @@ def encrypt(self, mysql_datatype):
@TestFeature
@Name("table function")
@Requirements(
RQ_SRS008_AES_Functions_Compatability_TableFunction_MySQL("1.0")
RQ_SRS008_AES_Functions_Compatibility_TableFunction_MySQL("1.0")
)
def feature(self, node="clickhouse1", mysql_node="mysql1"):
"""Check usage of encryption functions with [MySQL table function].
@ -180,4 +180,4 @@ def feature(self, node="clickhouse1", mysql_node="mysql1"):
self.context.mysql_node = self.context.cluster.node(mysql_node)
for scenario in loads(current_module(), Scenario):
Scenario(run=scenario, flags=TE)
Scenario(run=scenario, flags=TE)