Exemplo 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))
Exemplo n.º 2
0
 def test_non_existing_builtin(self):
     self.assertRaises(
         ValueError,
         lambda: utils.resolve_schematron_filepath('@notexists'))
Exemplo 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)
Exemplo n.º 4
0
 def test_builtin_lookup(self):
     for name, path in self.sch_schemas.items():
         self.assertEqual(utils.resolve_schematron_filepath('@' + name),
                          path)
Exemplo n.º 5
0
 def test_resolve_unsupported_types(self):
     self.assertRaises(TypeError,
                       lambda: utils.resolve_schematron_filepath(None))
Exemplo 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))
Exemplo 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)
Exemplo n.º 8
0
 def test_non_existing_builtin(self):
     self.assertRaises(ValueError, 
             lambda: utils.resolve_schematron_filepath('@notexists'))
Exemplo n.º 9
0
 def test_resolve_unsupported_types(self):
     self.assertRaises(TypeError,
             lambda: utils.resolve_schematron_filepath(None))
Exemplo n.º 10
0
 def test_builtin_lookup(self):
     for name, path in self.sch_schemas.items():
         self.assertEqual(utils.resolve_schematron_filepath('@'+name), path)