test case in datei ausgelagert
This commit is contained in:
parent
25a0f902ab
commit
6758bb5a44
2 changed files with 38 additions and 40 deletions
42
test.py
42
test.py
|
@ -58,49 +58,11 @@ class TestValidation(tornado.testing.AsyncHTTPTestCase):
|
||||||
self.assertFalse(validation_result['valid'], "Validation result is expected to be valid==false")
|
self.assertFalse(validation_result['valid'], "Validation result is expected to be valid==false")
|
||||||
|
|
||||||
def test_valid_entity(self):
|
def test_valid_entity(self):
|
||||||
entity = {
|
entity_file = json.load(open('test_cases/valid/valid.json','r'))
|
||||||
'finanzdaten':
|
|
||||||
{
|
|
||||||
'bic': 'PBNKDEFFXXX',
|
|
||||||
'holder': '',
|
|
||||||
'iban': 'DE89370400440532013000',
|
|
||||||
'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'
|
|
||||||
}
|
|
||||||
|
|
||||||
response = self.fetch('/v0/validate',
|
response = self.fetch('/v0/validate',
|
||||||
method='POST',
|
method='POST',
|
||||||
body=json.dumps(entity))
|
body=json.dumps(entity_file))
|
||||||
|
|
||||||
self.assertEqual(200, response.code, "Validation must always return 200")
|
self.assertEqual(200, response.code, "Validation must always return 200")
|
||||||
|
|
||||||
|
|
36
test_cases/valid/valid.json
Normal file
36
test_cases/valid/valid.json
Normal file
|
@ -0,0 +1,36 @@
|
||||||
|
{
|
||||||
|
"finanzdaten": {
|
||||||
|
"bic": "PBNKDEFFXXX",
|
||||||
|
"holder": "",
|
||||||
|
"iban": "DE89370400440532013000",
|
||||||
|
"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