Ejemplo n.º 1
0
 def test_config(self):
     """
     Test Config object
     """
     print("Start test of Config class...")
     c = Config('MSF21ADT', 'AMPSTC21ADT', 'CIM_2_NSTMMC21_AMPSTCADT')
     c.set_derived_val('NSTMMC21_MSFADT_VALID_2_MAP',
                       'NSTMMC21_MSFADT_MAP_2_CIM', 'NSTMMC21')
     data = vars(c)
     result = len(data)
     self.assertEqual(result, 6)
     self.assertDictEqual(data, self.cfgdict)
Ejemplo n.º 2
0
 def test_flows(self):
     """
     Test Flows object
     """
     print("Start test of Flows class...")
     c = Config('MSF21ADT', 'AMPSTC21ADT', 'CIM_2_NSTMMC21_AMPSTCADT')
     c.set_derived_val('NSTMMC21_MSFADT_VALID_2_MAP',
                       'NSTMMC21_MSFADT_MAP_2_CIM', 'NSTMMC21')
     flow = Flows(c.dstFlowName,
                  FlowType.VF,
                  vars(c),
                  patternType=PatternType.AMP)
     data = vars(flow)
     #result = len(data)
     #self.assertEqual(result, 6)
     self.assertDictEqual(data, self.flowdict)
Ejemplo n.º 3
0
from core.Config import Config
from core.Flows import FlowType, PatternType, Flows

c = Config('MSF21ADT', 'AMPSTC21ADT', 'CIM_2_NSTMMC21_AMPSTCADT')
c.set_derived_val('NSTMMC21_MSFADT_VALID_2_MAP', 'NSTMMC21_MSFADT_MAP_2_CIM',
                  'NSTMMC21')
#c.display()
print(" - Config Vars   - ")
print(vars(c))

flow = Flows(c.dstFlowName, FlowType.VF, vars(c), patternType=PatternType.AMP)
print(" - Flow Vars   - ")
print(vars(flow))