Esempio n. 1
0
 def test_non_existing_filepath(self):
     path = list(self.sch_schemas.values())[0] + '.notexists'
     self.assertRaises(ValueError,
                       lambda: utils.resolve_schematron_filepath(path))
Esempio n. 2
0
 def test_non_existing_builtin(self):
     self.assertRaises(
         ValueError,
         lambda: utils.resolve_schematron_filepath('@notexists'))
Esempio n. 3
0
 def test_existing_filepath(self):
     path = list(self.sch_schemas.values())[0]  # get the first item
     self.assertEqual(utils.resolve_schematron_filepath(path), path)
Esempio n. 4
0
 def test_builtin_lookup(self):
     for name, path in self.sch_schemas.items():
         self.assertEqual(utils.resolve_schematron_filepath('@' + name),
                          path)
Esempio n. 5
0
 def test_resolve_unsupported_types(self):
     self.assertRaises(TypeError,
                       lambda: utils.resolve_schematron_filepath(None))
Esempio n. 6
0
 def test_non_existing_filepath(self):
     path = list(self.sch_schemas.values())[0] + '.notexists'
     self.assertRaises(ValueError, 
             lambda: utils.resolve_schematron_filepath(path))
Esempio n. 7
0
 def test_existing_filepath(self):
     path = list(self.sch_schemas.values())[0]  # get the first item
     self.assertEqual(utils.resolve_schematron_filepath(path), path)
Esempio n. 8
0
 def test_non_existing_builtin(self):
     self.assertRaises(ValueError, 
             lambda: utils.resolve_schematron_filepath('@notexists'))
Esempio n. 9
0
 def test_resolve_unsupported_types(self):
     self.assertRaises(TypeError,
             lambda: utils.resolve_schematron_filepath(None))
Esempio n. 10
0
 def test_builtin_lookup(self):
     for name, path in self.sch_schemas.items():
         self.assertEqual(utils.resolve_schematron_filepath('@'+name), path)