invalid iban testcase
This commit is contained in:
parent
0082ee2bad
commit
d22d3b61e8
2 changed files with 50 additions and 0 deletions
14
test.py
14
test.py
|
@ -71,6 +71,20 @@ class TestValidation(tornado.testing.AsyncHTTPTestCase):
|
||||||
self.assertIn('valid', validation_result, "Key 'valid' expected in validation result")
|
self.assertIn('valid', validation_result, "Key 'valid' expected in validation result")
|
||||||
self.assertTrue(validation_result['valid'], "Validation result is expected to be valid==true")
|
self.assertTrue(validation_result['valid'], "Validation result is expected to be valid==true")
|
||||||
|
|
||||||
|
def test_invalid_entity(self):
|
||||||
|
entity_file = json.load(open('test_cases/invalid/invalid_iban.json','r'))
|
||||||
|
|
||||||
|
response = self.fetch('/v0/validate',
|
||||||
|
method='POST',
|
||||||
|
body=json.dumps(entity_file))
|
||||||
|
|
||||||
|
self.assertEqual(200, response.code, "Validation must always return 200")
|
||||||
|
|
||||||
|
validation_result = json.loads(response.body.decode())
|
||||||
|
|
||||||
|
self.assertIn('valid', validation_result, "Key 'valid' expected in validation result")
|
||||||
|
self.assertFalse(validation_result['valid'], "Validation result is expected to be valid==false")
|
||||||
|
|
||||||
|
|
||||||
if __name__ == "__main__":
|
if __name__ == "__main__":
|
||||||
unittest.main()
|
unittest.main()
|
||||||
|
|
36
test_cases/invalid/invalid_iban.json
Normal file
36
test_cases/invalid/invalid_iban.json
Normal file
|
@ -0,0 +1,36 @@
|
||||||
|
{
|
||||||
|
"finanzdaten": {
|
||||||
|
"bic": "PBNKDEFFXXX",
|
||||||
|
"holder": "",
|
||||||
|
"iban": "DX89370400440532013000",
|
||||||
|
"issuance": "2012-01-01",
|
||||||
|
"reference": "0042",
|
||||||
|
"scan-sepa-mandate": ""
|
||||||
|
},
|
||||||
|
"mitgliederdaten": {
|
||||||
|
"bis": "",
|
||||||
|
"mitgliedsbeitrag": "30",
|
||||||
|
"scan-antrag": "",
|
||||||
|
"schliessberechtigung": "Ja",
|
||||||
|
"spendenbeitrag": "0",
|
||||||
|
"status": "V",
|
||||||
|
"von": "2012-01-01"
|
||||||
|
},
|
||||||
|
"stammdaten": {
|
||||||
|
"address_code": "39104",
|
||||||
|
"address_country": "DE",
|
||||||
|
"address_label": "Max Hackerberg\nLeibnizstr. 32\n39104 Magdeburg",
|
||||||
|
"address_locality": "Magdeburg",
|
||||||
|
"address_region": "",
|
||||||
|
"address_street": "Leibnizstr. 32",
|
||||||
|
"birth_date": "1970-01-01",
|
||||||
|
"birth_location": "Hackstadt",
|
||||||
|
"email": "max.hackerberg@netz39.de",
|
||||||
|
"fullname": "Max Hackerberg",
|
||||||
|
"nickname": "maxH",
|
||||||
|
"pgp-key": "",
|
||||||
|
"ssh-key": ""
|
||||||
|
},
|
||||||
|
"timestamp": "2020-03-25T23:58:11",
|
||||||
|
"id": "6af68"
|
||||||
|
}
|
Loading…
Reference in a new issue