Ejemplo n.º 1
0
 def test_get_file_error__process(self):
     self.assertIsInstance(get_file_error('process', 'test'), ProcessError)
Ejemplo n.º 2
0
 def test_get_file_error__reporting(self):
     self.assertIsInstance(get_file_error('reporting', 'test'), ReportingError)
Ejemplo n.º 3
0
 def test_get_file_error__oed(self):
     self.assertIsInstance(get_file_error('oed', 'test'), OedError)
Ejemplo n.º 4
0
 def test_get_file_error__command(self):
     self.assertIsInstance(get_file_error('command', 'test'), CommandError)
Ejemplo n.º 5
0
 def test_get_file_error__non_oed_schema(self):
     self.assertIsInstance(get_file_error('non oed schema', 'test'), NonOedSchemaError)
Ejemplo n.º 6
0
 def test_get_file_error__null_data_in_non_null_column(self):
     self.assertIsInstance(get_file_error('null data in non null column', 'test'), NullDataInNonNullColumnError)
Ejemplo n.º 7
0
 def test_get_file_error__non_oed_data(self):
     self.assertIsInstance(get_file_error('non oed data', 'test'), NonOedDataError)
Ejemplo n.º 8
0
 def test_get_file_error__non_oed_schema_and_column(self):
     self.assertIsInstance(get_file_error('non oed schema and column', 'test'), NonOedSchemaAndColumnError)
Ejemplo n.º 9
0
 def test_get_file_error__non_oed_column(self):
     self.assertIsInstance(get_file_error('non oed column', 'test'), NonOedColumnError)
Ejemplo n.º 10
0
 def test_get_file_error__missing_required_column(self):
     self.assertIsInstance(get_file_error('missing required column', 'test'), MissingRequiredColumnError)
Ejemplo n.º 11
0
 def test_get_file_error__invalid_data_type(self):
     self.assertIsInstance(get_file_error('invalid data type', 'test'), InvalidDataTypeError)
Ejemplo n.º 12
0
 def test_get_file_error__empty_file(self):
     self.assertIsInstance(get_file_error('empty file', 'test'), EmptyFileError)
Ejemplo n.º 13
0
 def test_get_file_error__data_out_of_range(self):
     self.assertIsInstance(get_file_error('data out of range', 'test'), DataOutOfRangeError)