Data-Test-Executer Framework speziell zum Test von Datenverarbeitungen mit Datengenerierung, Systemvorbereitungen, Einspielungen, ganzheitlicher diversifizierender Vergleich
You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.

36 lines
1.1 KiB

3 years ago
# This is a sample Python script.
import sys#
# import jsonpickle # pip install jsonpickle
import yaml # pip install pyyaml
3 years ago
import basic.program
import basic.componentHandling
import basic.message
3 years ago
import utils.tdata_tool
PROGRAM_NAME = "check_environment"
if __name__ == '__main__':
3 years ago
x = basic.program.Job(PROGRAM_NAME)
3 years ago
print ("x "+str(x))
x.startJob()
x.m.logDebug(str(vars(x.par)) + "\n" + str(vars(x.conf)))
if x.m.isRc("fatal"):
x.stopJob()
exit(x.m.rc * (-1) + 3)
# now in theory the program is runnable
x.m.setMsg("# job initialized")
3 years ago
cm = basic.componentHandling.ComponentManager()
print("cm "+str(cm))
3 years ago
cm.initComponents()
comps = cm.getComponents(x, PROGRAM_NAME)
3 years ago
x.m.setMsg("# Components initialized with these relevant components " + str(comps))
for c in comps:
3 years ago
comp = cm.getComponent(c)
print(str(comp))
3 years ago
comp.check_Instance()
x.m.merge(comp.m)
comp.confs["function"][PROGRAM_NAME] = comp.m.topmessage
x.stopJob()
# See PyCharm help at https://www.jetbrains.com/help/pycharm/