コード例 #1
0
ファイル: test_validator.py プロジェクト: cbeer/aeneas
 def test_check_task_configuration_20(self):
     logger = Logger()
     validator = Validator(logger=logger)
     string = "task_language=it|is_text_type=plain|os_task_file_name=output.txt|os_task_file_format=smil|os_task_file_smil_page_ref=page.xhtml|os_task_file_smil_audio_ref=../Audio/audio.mp3"
     result = validator.check_task_configuration(string)
     self.assertTrue(result.passed)
     self.assertEqual(len(result.errors), 0)
コード例 #2
0
ファイル: validate.py プロジェクト: fduch2k/aeneas
def main():
    """ Entry point """
    if len(sys.argv) < 3:
        usage()
        return
    validator = Validator()
    mode = sys.argv[1]
    result = None
    msg = ""

    if mode == "config":
        if sys.argv[2].endswith(".txt"):
            try:
                config_file = open(sys.argv[2], "r")
                config_contents = config_file.read()
                config_file.close()
                result = validator.check_contents_txt_config_file(config_contents, True)
                msg = "TXT configuration"
            except:
                print "[ERRO] Unable to read file %s" % sys.argv[2]
        elif sys.argv[2].endswith(".xml"):
            try:
                config_file = open(sys.argv[2], "r")
                config_contents = config_file.read()
                config_file.close()
                result = validator.check_contents_xml_config_file(config_contents)
                msg = "XML configuration"
            except:
                print "[ERRO] Unable to read file %s" % sys.argv[2]
        else:
            usage()
            return
    elif mode == "container":
        result = validator.check_container(sys.argv[2])
        msg = "container"
    elif mode == "job":
        result = validator.check_job_configuration(sys.argv[2])
        msg = "job configuration string"
    elif mode == "task":
        result = validator.check_task_configuration(sys.argv[2])
        msg = "task configuration string"
    elif mode == "wizard":
        if len(sys.argv) < 4:
            usage()
            return
        result = validator.check_container_from_wizard(sys.argv[2], sys.argv[3])
        msg = "container + configuration string from wizard"
    else:
        usage()
        return

    if result.passed:
        print "[INFO] Valid %s" % msg
        if len(result.warnings) > 0:
            for warning in result.warnings:
                print "[WARN] " + warning
    else:
        print "[INFO] Invalid %s" % msg
        for error in result.errors:
            print "[ERRO] " + error
コード例 #3
0
ファイル: test_validator.py プロジェクト: cbeer/aeneas
 def test_check_task_configuration_23(self):
     logger = Logger()
     validator = Validator(logger=logger)
     string = "task_language=it|is_text_type=plain|os_task_file_name=output.txt|os_task_file_format=smil"
     result = validator.check_task_configuration(string)
     self.assertFalse(result.passed)
     self.assertGreater(len(result.errors), 0)
コード例 #4
0
ファイル: test_validator.py プロジェクト: cbeer/aeneas
 def test_check_task_configuration_16(self):
     logger = Logger()
     validator = Validator(logger=logger)
     string = "task_language=it|is_text_type=unparsed|is_text_unparsed_id_regex=f[0-9]*|is_text_unparsed_id_sort=numeric|os_task_file_name=output.txt|os_task_file_format=txt"
     result = validator.check_task_configuration(string)
     self.assertTrue(result.passed)
     self.assertEqual(len(result.errors), 0)
コード例 #5
0
ファイル: test_validator.py プロジェクト: cbeer/aeneas
 def test_check_task_configuration_19(self):
     logger = Logger()
     validator = Validator(logger=logger)
     string = "task_language=it|is_text_type=unparsed|is_text_unparsed_class_regex=ra|is_text_unparsed_id_regex=f[0-9]*|os_task_file_name=output.txt|os_task_file_format=txt"
     result = validator.check_task_configuration(string)
     self.assertFalse(result.passed)
     self.assertGreater(len(result.errors), 0)
コード例 #6
0
ファイル: test_validator.py プロジェクト: cbeer/aeneas
 def test_check_task_configuration_08(self):
     logger = Logger()
     validator = Validator(logger=logger)
     string = "task_language=it|is_text_type=plain|missing=other"
     result = validator.check_task_configuration(string)
     self.assertFalse(result.passed)
     self.assertGreater(len(result.errors), 0)
コード例 #7
0
ファイル: test_validator.py プロジェクト: cbeer/aeneas
 def test_check_task_configuration_06(self):
     logger = Logger()
     validator = Validator(logger=logger)
     string = "not=relevant|config=string"
     result = validator.check_task_configuration(string)
     self.assertFalse(result.passed)
     self.assertGreater(len(result.errors), 0)
コード例 #8
0
ファイル: test_validator.py プロジェクト: cbeer/aeneas
 def test_check_task_configuration_05(self):
     logger = Logger()
     validator = Validator(logger=logger)
     string = "malformed="
     result = validator.check_task_configuration(string)
     self.assertFalse(result.passed)
     self.assertGreater(len(result.errors), 0)
コード例 #9
0
ファイル: test_validator.py プロジェクト: cbeer/aeneas
 def test_check_task_configuration_02(self):
     logger = Logger()
     validator = Validator(logger=logger)
     string = "dummy config string with ~ reserved characters"
     result = validator.check_task_configuration(string)
     self.assertFalse(result.passed)
     self.assertGreater(len(result.errors), 0)
コード例 #10
0
ファイル: test_validator.py プロジェクト: cbeer/aeneas
 def test_check_task_configuration_01(self):
     logger = Logger()
     validator = Validator(logger=logger)
     string = u"dummy config string with bad encoding é".encode("latin-1")
     result = validator.check_task_configuration(string)
     self.assertFalse(result.passed)
     self.assertGreater(len(result.errors), 0)
コード例 #11
0
 def tc(self, string, expected):
     validator = Validator()
     result = validator.check_task_configuration(string)
     self.assertEqual(result.passed, expected)
     if expected:
         self.assertEqual(len(result.errors), 0)
     else:
         self.assertGreater(len(result.errors), 0)
コード例 #12
0
ファイル: validate.py プロジェクト: fduch2k/aeneas
def main():
    """ Entry point """
    if len(sys.argv) < 3:
        usage()
        return
    validator = Validator()
    mode = sys.argv[1]
    result = None
    msg = ""

    if mode == "config":
        if sys.argv[2].endswith(".txt"):
            try:
                config_file = open(sys.argv[2], "r")
                config_contents = config_file.read()
                config_file.close()
                result = validator.check_contents_txt_config_file(
                    config_contents, True)
                msg = "TXT configuration"
            except:
                print "[ERRO] Unable to read file %s" % sys.argv[2]
        elif sys.argv[2].endswith(".xml"):
            try:
                config_file = open(sys.argv[2], "r")
                config_contents = config_file.read()
                config_file.close()
                result = validator.check_contents_xml_config_file(
                    config_contents)
                msg = "XML configuration"
            except:
                print "[ERRO] Unable to read file %s" % sys.argv[2]
        else:
            usage()
            return
    elif mode == "container":
        result = validator.check_container(sys.argv[2])
        msg = "container"
    elif mode == "job":
        result = validator.check_job_configuration(sys.argv[2])
        msg = "job configuration string"
    elif mode == "task":
        result = validator.check_task_configuration(sys.argv[2])
        msg = "task configuration string"
    elif mode == "wizard":
        if len(sys.argv) < 4:
            usage()
            return
        result = validator.check_container_from_wizard(sys.argv[2],
                                                       sys.argv[3])
        msg = "container + configuration string from wizard"
    else:
        usage()
        return

    if result.passed:
        print "[INFO] Valid %s" % msg
        if len(result.warnings) > 0:
            for warning in result.warnings:
                print "[WARN] " + warning
    else:
        print "[INFO] Invalid %s" % msg
        for error in result.errors:
            print "[ERRO] " + error