Ejemplo n.º 1
0
 def test_get_setter(self):
     """Setter is correctly defined."""
     scenario = ScenarioReader("wetest/tests/scenario_example03.yaml")
     tests = TestsGenerator(scenario.get_deserialized())
     setter = get_key(tests.data["tests"][0]["commands"][0],
                      tests.data["tests"][0], "setter")
     self.assertEqual("LockS", setter)
     getter = get_key(tests.data["tests"][0]["commands"][0],
                      tests.data["tests"][0], "getter")
     self.assertEqual("LockR", getter)
Ejemplo n.º 2
0
 def test_get_prefix(self):
     """Prefix is correctly assembled from prefix fields."""
     scenario = ScenarioReader("wetest/tests/scenario_example03.yaml")
     tests = TestsGenerator(scenario.get_deserialized())
     self.assertEqual("LOCATION:DEVICE:", tests.tests_list[0][0].prefix)
Ejemplo n.º 3
0
 def test_device_prefix(self):
     """Device prefix is correctyl used."""
     scenario = ScenarioReader("wetest/tests/scenario_example03.yaml")
     tests = TestsGenerator(scenario.get_deserialized())
     tests.generates(TestsSequence)
Ejemplo n.º 4
0
 def test_generator(self):
     """Test generator can read and generates tests."""
     scenario = ScenarioReader("wetest/tests/mks946.yaml")
     tests = TestsGenerator(scenario.get_deserialized())
     tests.generates(TestsSequence)