コード例 #1
0
    def test_parse_xml_data_file(self):
        self.robotfile = RobotFiles(self.DATAPATH, self.OUTPATH)
        self.robotfile.print_config()
        self.robotfile.mk_outdir()
        self.robotfile.gunzip()
        self.robotfile.parse_xml_data_file()

        print("tests: {}".format(len(self.robotfile.pdata)))
        # test_id = "s1-s1-s4-t28"
        test_id = "s1-t1"
        if test_id not in self.robotfile.pdata:
            self.fail("wrong test_id")
        pdata = self.robotfile.pdata[test_id]
        print("\n{} test id = {} - {}".format(1, test_id, pdata['name']))
        if 0:
            for nindex, (node, ndata) in enumerate(pdata['nodes'].items()):
                print("{}: node = {}".format(nindex, node))
                for cindex, (command, cdata) in enumerate(ndata.items()):
                    print("{}: command = {}\n{}".format(
                        cindex, command, cdata))
        if 0:
            for mindex, (model,
                         mdata) in enumerate(sorted(pdata['models'].items())):
                print("{}: model = {} - {}".format(mindex, model, mdata))

        self.robotfile.write_pdata()
        self.robotfile.write_debug_pdata()
コード例 #2
0
 def test_mk_outdir(self):
     self.robotfile = RobotFiles(self.DATAPATH, self.OUTPATH)
     self.robotfile.mk_outdir()
     self.assertTrue(os.path.isdir(self.robotfile.outdir))
コード例 #3
0
 def test_gunzip_xml_data_file(self):
     self.robotfile = RobotFiles(self.DATAPATH, self.OUTPATH)
     self.robotfile.mk_outdir()
     self.robotfile.gunzip()
     self.assertTrue(os.path.isfile(self.robotfile.datafilepath))
コード例 #4
0
class TestRobotFiles(unittest.TestCase):
    DATAPATH = "/tmp/output_02_l3.xml.gz"
    OUTPATH = "/tmp/robotjob"

    def setUp(self):
        logg.Logger(logging.INFO, logging.DEBUG)

    def test_mk_outdir(self):
        self.robotfile = RobotFiles(self.DATAPATH, self.OUTPATH)
        self.robotfile.mk_outdir()
        self.assertTrue(os.path.isdir(self.robotfile.outdir))

    def test_gunzip_xml_data_file(self):
        self.robotfile = RobotFiles(self.DATAPATH, self.OUTPATH)
        self.robotfile.mk_outdir()
        self.robotfile.gunzip()
        self.assertTrue(os.path.isfile(self.robotfile.datafilepath))

    @unittest.skip("skipping")
    def test_parse_xml_data_file(self):
        self.robotfile = RobotFiles(self.DATAPATH, self.OUTPATH)
        self.robotfile.print_config()
        self.robotfile.mk_outdir()
        self.robotfile.gunzip()
        self.robotfile.parse_xml_data_file()

        print("tests: {}".format(len(self.robotfile.pdata)))
        # test_id = "s1-s1-s4-t28"
        test_id = "s1-t1"
        if test_id not in self.robotfile.pdata:
            self.fail("wrong test_id")
        pdata = self.robotfile.pdata[test_id]
        print("\n{} test id = {} - {}".format(1, test_id, pdata['name']))
        if 0:
            for nindex, (node, ndata) in enumerate(pdata['nodes'].items()):
                print("{}: node = {}".format(nindex, node))
                for cindex, (command, cdata) in enumerate(ndata.items()):
                    print("{}: command = {}\n{}".format(
                        cindex, command, cdata))
        if 0:
            for mindex, (model,
                         mdata) in enumerate(sorted(pdata['models'].items())):
                print("{}: model = {} - {}".format(mindex, model, mdata))

        self.robotfile.write_pdata()
        self.robotfile.write_debug_pdata()