Browse Source

unittest 90Testserver angepasst

refactor
Ulrich 5 months ago
parent
commit
3ed019fdd5
  1. 2
      basic/Testserver.py
  2. 49
      model/entity.py
  3. 2
      model/prelease.csv
  4. 6
      model/project.py
  5. 4
      model/table.py
  6. 10
      test/test_90testserver.py
  7. 5
      tools/db_abstract.py
  8. 11
      tools/dbmysql_tool.py

2
basic/Testserver.py

@ -16,7 +16,7 @@ import tools.data_tool
COMP_NAME = B.ATTR_INST_TESTSERVER COMP_NAME = B.ATTR_INST_TESTSERVER
# class Testserver(basic.component.Component): # class Testserver(basic.component.Component):
class Testserver(): class Testserver:
""" """
the Testserver represents the workspace with all resources for the automation the Testserver represents the workspace with all resources for the automation

49
model/entity.py

@ -63,7 +63,7 @@ class Entity:
LIST_SUBTABLES = [] LIST_SUBTABLES = []
PREFIX_SUBTABLE = "" PREFIX_SUBTABLE = ""
def __init__(self, job, entityname: str="" , name: str="", args: dict={}): def __init__(self, job, entityname: str = "", name: str = "", args: dict = {}):
import model.table import model.table
self.job = job self.job = job
if entityname == "": if entityname == "":
@ -110,7 +110,8 @@ class Entity:
self.ddls[entityname][model.table.LISTNAME_FIELDS] = listFields self.ddls[entityname][model.table.LISTNAME_FIELDS] = listFields
self.ddls[entityname][model.table.LISTNAME_NODES] = listNodes self.ddls[entityname][model.table.LISTNAME_NODES] = listNodes
self.ddls[entityname][model.table.LISTNAME_SUBTABLE] = listSubtables self.ddls[entityname][model.table.LISTNAME_SUBTABLE] = listSubtables
# check LISTEN # check LISTEN ... hard coded vs. configuered
# TODO why hard coded const ??
for f in listFields: for f in listFields:
if f not in self.LIST_FIELDS: if f not in self.LIST_FIELDS:
raise Exception(entityname + " " + str(self) + " a check list <-> LIST_FIELDS " + f) raise Exception(entityname + " " + str(self) + " a check list <-> LIST_FIELDS " + f)
@ -133,15 +134,17 @@ class Entity:
raise Exception(entityname + " " + str(self) + " b check list <-> LIST_SUBTABLES " + f) raise Exception(entityname + " " + str(self) + " b check list <-> LIST_SUBTABLES " + f)
def get_unique_names(self, job, storage="", project="", application="", gran="", args={}, ttype: str=""): def get_unique_names(self, job, storage = "", project = "", application = "", gran = "",
ttype: str = "", args: dict = {}) -> list:
""" """
gets the entity-names from the defined storage - the field name must be an unique identifier gets the entity-names from the defined storage - the field name must be an unique identifier
:param job: :param job:
:param opt. storage: values db / files - default files :param storage: opt. values db / files - default files
:param opt. project: select-criteria if used and defined :param project: opt. select-criteria if used and defined
:param opt. application: select-criteria if used and defined :param application: opt. select-criteria if used and defined
:param opt. gran: granularity values testcase / testsuite / testplan :param gran: opt. granularity values testcase / testsuite / testplan
:param opt. args additional args :param ttype: opt. ddd
:param args: opt. additional args
:return: list of entity-names :return: list of entity-names
""" """
entityNames = [] entityNames = []
@ -157,10 +160,10 @@ class Entity:
""" """
reads the entity-names from file-storage reads the entity-names from file-storage
:param job: :param job:
:param opt. project: select-criteria if used and defined :param project: opt. select-criteria if used and defined
:param opt. application: select-criteria if used and defined :param application: opt. select-criteria if used and defined
:param opt. gran: granularity values testcase / testsuite / testplan :param gran: opt. granularity values testcase / testsuite / testplan
:param opt. args additional args :param args: opt. additional args
:return: list of entity-names :return: list of entity-names
""" """
raise Exception(B.EXCEPT_NOT_IMPLEMENT) raise Exception(B.EXCEPT_NOT_IMPLEMENT)
@ -169,11 +172,11 @@ class Entity:
""" """
gets the entity-names from the defined storage gets the entity-names from the defined storage
:param job: :param job:
:param opt. storage: values db / files - default files :param storage: opt. values db / files - default files
:param opt. project: select-criteria if used and defined :param project: opt. select-criteria if used and defined
:param opt. application: select-criteria if used and defined :param application: opt. select-criteria if used and defined
:param opt. gran: granularity values testcase / testsuite / testplan :param gran: opt. granularity values testcase / testsuite / testplan
:param opt. args additional args :param args: opt. additional args
:return: list of entity-names :return: list of entity-names
""" """
entities = [] entities = []
@ -194,10 +197,10 @@ class Entity:
""" """
reads the entity-names from file-storage reads the entity-names from file-storage
:param job: :param job:
:param opt. project: select-criteria if used and defined :param project: select-criteria if used and defined
:param opt. application: select-criteria if used and defined :param application: select-criteria if used and defined
:param opt. gran: granularity values testcase / testsuite / testplan :param gran: granularity values testcase / testsuite / testplan
:param opt. args additional args :param args additional args
:return: list of entity-names :return: list of entity-names
""" """
raise Exception(B.EXCEPT_NOT_IMPLEMENT) raise Exception(B.EXCEPT_NOT_IMPLEMENT)
@ -603,6 +606,9 @@ class Entity:
sql = dbi.getSchemaIndex(table, "actual") + "\n" sql = dbi.getSchemaIndex(table, "actual") + "\n"
return sql return sql
def get_schema(self, tableName, tableObject):
pass
def insert_entity(self, job): def insert_entity(self, job):
""" """
inserts the entity into the database inserts the entity into the database
@ -634,3 +640,4 @@ def read_spec(job, testentity, testgran, specpath):
spec[key] = val spec[key] = val
return spec return spec

2
model/prelease.csv

@ -5,4 +5,6 @@ table:prelease;_field;type;format;index;generic;aggregat;key;acceptance;alias;de
;reference;str;vchar(256);N;;;;;; ;reference;str;vchar(256);N;;;;;;
;project;string;vchar(256);I;;;;;; ;project;string;vchar(256);I;;;;;;
;attributes;string;jlob;N;;;;;; ;attributes;string;jlob;N;;;;;;
;applications;subtable;subtable;N;;;;;;
;stories;subtable;subtable;N;;;;;;

1 table:prelease _field type format index generic aggregat key acceptance alias description
5 reference str vchar(256) N
6 project string vchar(256) I
7 attributes string jlob N
8 applications subtable subtable N
9 stories subtable subtable N
10

6
model/project.py

@ -167,7 +167,9 @@ class Project(model.entity.Entity):
:param name: :param name:
:return: :return:
""" """
if table == "" and len(self.ddls) == 0: if table == "":
table = self.entityname
if len(self.ddls) == 0:
self.insert_entity(job, name=name, table=self.entityname, rows=rows) self.insert_entity(job, name=name, table=self.entityname, rows=rows)
# self.setDbAttributes(job, [TABLE_NAME]) # self.setDbAttributes(job, [TABLE_NAME])
dbi = basic.toolHandling.getDbTool(job, self, job.conf[B.TOPIC_NODE_DB]["type"]) dbi = basic.toolHandling.getDbTool(job, self, job.conf[B.TOPIC_NODE_DB]["type"])
@ -184,7 +186,7 @@ class Project(model.entity.Entity):
rows = [] rows = []
row = {} row = {}
for f in self.ddls[table]: for f in self.ddls[table]:
row[f] = getattr(self, f) row[f] = getattr(self, f, "")
rows.append(row) rows.append(row)
dbi.insertRows(job, table, rows) dbi.insertRows(job, table, rows)

4
model/table.py

@ -297,7 +297,7 @@ class Table(model.entity.Entity):
return self.read_ddl(job, name, args=args) return self.read_ddl(job, name, args=args)
# table is not an real entity # table is not an real entity
def read_ddl(self, job, name, args: dict={}): def read_ddl(self, job: any, name: str, args: dict = {}):
""" """
reads the ddl of the table depending on context reads the ddl of the table depending on context
a) component: the ddl is read from specific or general component-folder a) component: the ddl is read from specific or general component-folder
@ -305,7 +305,7 @@ class Table(model.entity.Entity):
c) testserver: the ddl is read from model-folder c) testserver: the ddl is read from model-folder
:param job: :param job:
:param name: :param name:
:param context: :param args:
:return: :return:
""" """
config = {} config = {}

10
test/test_90testserver.py

@ -12,7 +12,7 @@ import basic.constants as B
# the list of TEST_FUNCTIONS defines which function will be really tested. # the list of TEST_FUNCTIONS defines which function will be really tested.
# if you minimize the list you can check the specific test-function # if you minimize the list you can check the specific test-function
TEST_FUNCTIONS = ["test_01createTestserver", "test_02getDBSchema", "test_11createDBTables", "test_11syncApplication"] TEST_FUNCTIONS = ["test_01createTestserver", "test_02getDBSchema", "test_11createDBTables", "test_11syncApplication"]
TEST_FUNCTIONS = ["test_02getDBSchema"] #TEST_FUNCTIONS = ["test_02getDBSchema"]
# with this variable you can switch prints on and off # with this variable you can switch prints on and off
verbose = False verbose = False
@ -34,8 +34,9 @@ class MyTestCase(unittest.TestCase):
if B.TOPIC_NODE_DB in job.conf: if B.TOPIC_NODE_DB in job.conf:
self.assertIn(B.TOPIC_NODE_DB, testserver.conf[B.TOPIC_CONN]) self.assertIn(B.TOPIC_NODE_DB, testserver.conf[B.TOPIC_CONN])
self.assertIn(B.ATTR_DB_DATABASE, testserver.conf[B.TOPIC_CONN][B.TOPIC_NODE_DB]) self.assertIn(B.ATTR_DB_DATABASE, testserver.conf[B.TOPIC_CONN][B.TOPIC_NODE_DB])
self.assertIn(B.DATA_NODE_DDL, testserver.conf) # 2024-04-21 auskommentiert, Testserver war neu aufgestellt
self.assertIn("application", testserver.conf[B.DATA_NODE_DDL]) # self.assertIn(B.DATA_NODE_DDL, testserver.conf)
# self.assertIn("application", testserver.conf[B.DATA_NODE_DDL])
MyTestCase.mymsg += "\n----- "+actfunction+" : "+str(cnttest) MyTestCase.mymsg += "\n----- "+actfunction+" : "+str(cnttest)
def test_02getDBSchema(self): def test_02getDBSchema(self):
@ -91,6 +92,8 @@ class MyTestCase(unittest.TestCase):
if actfunction not in TEST_FUNCTIONS: if actfunction not in TEST_FUNCTIONS:
return return
job = test.testtools.getJob() job = test.testtools.getJob()
"""
2024-04-21: auskommentiert, denn createDBTables durch createAdminTables erstellt
if B.TOPIC_NODE_DB not in job.conf: if B.TOPIC_NODE_DB not in job.conf:
job.conf[B.TOPIC_NODE_DB] = {} job.conf[B.TOPIC_NODE_DB] = {}
job.conf[B.TOPIC_NODE_DB][B.ATTR_TYPE] = "rel" job.conf[B.TOPIC_NODE_DB][B.ATTR_TYPE] = "rel"
@ -101,6 +104,7 @@ class MyTestCase(unittest.TestCase):
sql = testserver.model[t].get_schema(tableName=t, tableObject=testserver.model[t]) sql = testserver.model[t].get_schema(tableName=t, tableObject=testserver.model[t])
print(sql) print(sql)
#testserver.createDBTables(job) #testserver.createDBTables(job)
"""
def test_zzz(self): def test_zzz(self):
if verbose: print(MyTestCase.mymsg) if verbose: print(MyTestCase.mymsg)

5
tools/db_abstract.py

@ -480,6 +480,11 @@ class DbFcts():
return "idx_"+table+"_"+attr return "idx_"+table+"_"+attr
def getInsertFields(self, ddl): def getInsertFields(self, ddl):
"""
:param ddl:
:return:
"""
outheader = [] outheader = []
if B.DATA_NODE_KEYS in ddl: if B.DATA_NODE_KEYS in ddl:
header = ddl[B.DATA_NODE_KEYS].keys() header = ddl[B.DATA_NODE_KEYS].keys()

11
tools/dbmysql_tool.py

@ -82,8 +82,15 @@ class DbFcts(tools.dbrel_tool.DbFcts):
""" """
verify = -1+job.getDebugLevel("db_tool") verify = -1+job.getDebugLevel("db_tool")
attr = self.getDbAttributes(job, B.SVAL_NULL) attr = self.getDbAttributes(job, B.SVAL_NULL)
insheader = self.getInsertFields(self.comp.conf[B.DATA_NODE_DDL][table]) if hasattr(self, "comp") and hasattr(self.comp, "conf"):
if len(insheader) < len(self.comp.conf[B.DATA_NODE_DDL][table][B.DATA_NODE_HEADER]): tableheader = self.comp.conf[B.DATA_NODE_DDL][table]
insheader = self.getInsertFields(tableheader)
elif hasattr(self, "comp") and hasattr(self.comp, "ddls"):
tableheader = self.comp.getFieldList()
insheader = tableheader
else:
tableheader = []
if len(insheader) < 10: # len(self.comp.conf[B.DATA_NODE_DDL][table][B.DATA_NODE_HEADER]):
lastid = 1 lastid = 1
else: else:
lastid = 0 lastid = 0

Loading…
Cancel
Save