[15586] | 1 | ## $Id: tests.py 17783 2024-05-14 08:46:27Z henrik $ |
---|
[15585] | 2 | ## |
---|
| 3 | ## Copyright (C) 2017 Uli Fouquet & Henrik Bettermann |
---|
| 4 | ## This program is free software; you can redistribute it and/or modify |
---|
| 5 | ## it under the terms of the GNU General Public License as published by |
---|
| 6 | ## the Free Software Foundation; either version 2 of the License, or |
---|
| 7 | ## (at your option) any later version. |
---|
| 8 | ## |
---|
| 9 | ## This program is distributed in the hope that it will be useful, |
---|
| 10 | ## but WITHOUT ANY WARRANTY; without even the implied warranty of |
---|
| 11 | ## MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the |
---|
| 12 | ## GNU General Public License for more details. |
---|
| 13 | ## |
---|
| 14 | ## You should have received a copy of the GNU General Public License |
---|
| 15 | ## along with this program; if not, write to the Free Software |
---|
| 16 | ## Foundation, Inc., 59 Temple Place, Suite 330, Boston, MA 02111-1307 USA |
---|
| 17 | ## |
---|
| 18 | import os |
---|
| 19 | import unittest |
---|
| 20 | import random |
---|
| 21 | import json |
---|
| 22 | import hashlib |
---|
[15589] | 23 | import httplib |
---|
| 24 | from urllib import urlencode |
---|
[15585] | 25 | from datetime import datetime, timedelta, date |
---|
| 26 | from zope.component import createObject, getUtility |
---|
| 27 | from zope.catalog.interfaces import ICatalog |
---|
| 28 | from hurry.workflow.interfaces import IWorkflowState |
---|
| 29 | from waeup.kofa.students.tests.test_browser import StudentsFullSetup |
---|
| 30 | from waeup.kofa.applicants.tests.test_browser import ApplicantsFullSetup |
---|
| 31 | from waeup.kofa.configuration import SessionConfiguration |
---|
| 32 | from kofacustom.nigeria.students.payments import NigeriaStudentOnlinePayment |
---|
| 33 | from kofacustom.nigeria.testing import FunctionalLayer |
---|
[15734] | 34 | from kofacustom.nigeria.etranzact.helpers import ( |
---|
[17730] | 35 | query_history, query_payoutlet, ERROR_PART1, ERROR_PART2, |
---|
| 36 | ) |
---|
[15585] | 37 | |
---|
| 38 | #from kofacustom.nigeria.etranzact.helpers import (query_etranzact) |
---|
| 39 | |
---|
| 40 | # Also run tests that send requests to external servers? |
---|
| 41 | # If you enable this, please make sure the external services |
---|
| 42 | # do exist really and are not bothered by being spammed by a test programme. |
---|
| 43 | |
---|
[15755] | 44 | EXTERNAL_TESTS = False |
---|
[15585] | 45 | |
---|
[15730] | 46 | TERMINAL_ID = '5003021194' |
---|
[16784] | 47 | HOST = 'demo.etranzactng.com' |
---|
[15585] | 48 | HTTPS = True |
---|
| 49 | SECRET_KEY = 'DEMO_KEY' |
---|
| 50 | LOGO_URL = 'https://iuokada.waeup.org/static_custom/iou_logo.png' |
---|
[15755] | 51 | GATEWAY_AMT = 500.0 |
---|
[15585] | 52 | |
---|
[15702] | 53 | # Valid transaction id in Etranzact system |
---|
[15598] | 54 | TID = 'p5689785145198' |
---|
| 55 | |
---|
[15585] | 56 | def external_test(func): |
---|
| 57 | if not EXTERNAL_TESTS: |
---|
| 58 | myself = __file__ |
---|
| 59 | if myself.endswith('.pyc'): |
---|
| 60 | myself = myself[:-1] |
---|
| 61 | print "WARNING: external tests are skipped!" |
---|
| 62 | print "WARNING: edit %s to enable them." % myself |
---|
| 63 | return |
---|
| 64 | return func |
---|
| 65 | |
---|
[15589] | 66 | def post_caller(host, https, terminal_id, transaction_id, responseurl, |
---|
| 67 | amount_auth, email, phone, display_fullname, hashvalue, |
---|
| 68 | logo_url): |
---|
| 69 | headers={"Content-type": "application/x-www-form-urlencoded", |
---|
| 70 | "Accept": "text/plain"} |
---|
| 71 | url = "/webconnect/v3/caller.jsp" |
---|
| 72 | if https: |
---|
| 73 | h = httplib.HTTPSConnection(host) |
---|
| 74 | else: |
---|
| 75 | h = httplib.HTTPConnection(host) |
---|
| 76 | args = {'TERMINAL_ID': terminal_id, |
---|
| 77 | 'TRANSACTION_ID': transaction_id, |
---|
| 78 | 'RESPONSE_URL': responseurl, |
---|
| 79 | 'AMOUNT': amount_auth, |
---|
| 80 | 'EMAIL': email, |
---|
| 81 | 'PHONENO': phone, |
---|
| 82 | 'FULL_NAME': display_fullname, |
---|
| 83 | 'CURRENCY_CODE': 'NGN', |
---|
| 84 | 'CHECKSUM': hashvalue, |
---|
| 85 | 'LOGO_URL': logo_url, |
---|
| 86 | } |
---|
| 87 | h.request('POST', url, urlencode(args), headers) |
---|
| 88 | return |
---|
| 89 | response = h.getresponse() |
---|
| 90 | if response.status!=200: |
---|
| 91 | return 'Connection error (%s, %s)' % (response.status, response.reason) |
---|
| 92 | resp = response.read() |
---|
| 93 | return resp |
---|
| 94 | |
---|
| 95 | def create_transaction(transaction_id): |
---|
| 96 | responseurl = 'http://xxxx' |
---|
| 97 | amount = '4444.0' |
---|
| 98 | email = 'aa@aa.ng' |
---|
| 99 | phone = '12324' |
---|
| 100 | display_fullname = 'Tester' |
---|
| 101 | logo_url = 'http://xxxx' |
---|
| 102 | hashargs = amount + TERMINAL_ID + transaction_id \ |
---|
| 103 | + responseurl + 'DEMO_KEY' |
---|
| 104 | hashvalue = hashlib.md5(hashargs).hexdigest() |
---|
| 105 | response = post_caller(HOST, HTTPS, TERMINAL_ID, |
---|
| 106 | transaction_id, responseurl, |
---|
| 107 | amount, email, phone, |
---|
| 108 | display_fullname, hashvalue, |
---|
| 109 | logo_url) |
---|
| 110 | return response |
---|
| 111 | |
---|
| 112 | |
---|
[15585] | 113 | class HelperTests(unittest.TestCase): |
---|
| 114 | |
---|
| 115 | terminal_id = TERMINAL_ID |
---|
| 116 | |
---|
| 117 | @external_test |
---|
[15589] | 118 | def test_query_history(self): |
---|
[15585] | 119 | transaction_id = str(random.randint(100000000, 999999999)) |
---|
[15596] | 120 | raw, formvars = query_history(HOST, self.terminal_id, |
---|
| 121 | transaction_id, HTTPS) |
---|
[15593] | 122 | self.assertTrue( |
---|
[15585] | 123 | 'Transaction with the given transaction_id (%s) not found' |
---|
[15596] | 124 | % transaction_id in raw) |
---|
[15585] | 125 | # Okay, let's create a transaction |
---|
[15589] | 126 | caller_response = create_transaction(transaction_id) |
---|
[15585] | 127 | self.assertEqual(caller_response, None) |
---|
| 128 | # It seems that the transaction has been created but we don't get a |
---|
| 129 | # useful response |
---|
[15596] | 130 | raw, formvars = query_history(HOST, self.terminal_id, |
---|
| 131 | transaction_id, HTTPS) |
---|
[15593] | 132 | self.assertTrue( |
---|
| 133 | '<!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 4.01 Transitional//EN"\r\n ' |
---|
[15596] | 134 | '"http://www.w3.org/TR/html4/loose.dtd">' in raw) |
---|
[15585] | 135 | # The same, an 'empty' response obviously means that the transaction |
---|
[15593] | 136 | # was found but no result was sent to the response_url because the |
---|
| 137 | # payment was cancelled. |
---|
| 138 | |
---|
| 139 | # Peter: No response would be returned because payment status information |
---|
| 140 | # was not saved. Whenever you get a null response, means payment was |
---|
| 141 | # not received only payments with error code 0 is successful. |
---|
| 142 | # So in this case transaction fails. |
---|
| 143 | |
---|
[15598] | 144 | # We manually created and tried to pay a transaction |
---|
| 145 | # which seems to be valid till next restart of the demo portal. |
---|
| 146 | raw, formvars = query_history(HOST, self.terminal_id, TID, HTTPS) |
---|
[15702] | 147 | # Now Etranzact is redirecting but the response is still useless |
---|
[15596] | 148 | self.assertTrue('Redirecting...' in raw) |
---|
[15598] | 149 | self.assertEqual(formvars['TRANSACTION_ID'], TID) |
---|
[15585] | 150 | return |
---|
| 151 | |
---|
[15730] | 152 | @external_test |
---|
| 153 | def test_query_payoutlet(self): |
---|
| 154 | # We've got some test numbers from Etranzact for testing |
---|
| 155 | payment = NigeriaStudentOnlinePayment() |
---|
| 156 | payment.p_id = 'p5723474039401' |
---|
| 157 | success, msg, log = query_payoutlet( |
---|
| 158 | HOST, '5003021194', '500854291572447457669', payment, True) |
---|
| 159 | self.assertTrue(msg, 'Wrong amount') |
---|
| 160 | payment.amount_auth = 200000.0 |
---|
| 161 | success, msg, log = query_payoutlet( |
---|
| 162 | HOST, '5003021194', '500854291572447457669', payment, True) |
---|
| 163 | self.assertTrue(success) |
---|
| 164 | payment.p_id = 'xyz' |
---|
| 165 | success, msg, log = query_payoutlet( |
---|
| 166 | HOST, '5003021194', '500854291572447457669', payment, True) |
---|
| 167 | self.assertTrue(msg, 'Wrong payment id') |
---|
| 168 | return |
---|
| 169 | |
---|
[17730] | 170 | |
---|
| 171 | |
---|
[15585] | 172 | class EtranzactTestsApplicants(ApplicantsFullSetup): |
---|
| 173 | """Tests for the Etranzact payment gateway. |
---|
| 174 | """ |
---|
| 175 | |
---|
| 176 | layer = FunctionalLayer |
---|
| 177 | |
---|
| 178 | def setUp(self): |
---|
| 179 | super(EtranzactTestsApplicants, self).setUp() |
---|
| 180 | configuration = SessionConfiguration() |
---|
| 181 | configuration.academic_session = datetime.now().year - 2 |
---|
[15702] | 182 | configuration.etranzact_webconnect_enabled = True |
---|
| 183 | configuration.etranzact_payoutlet_enabled = True |
---|
[15585] | 184 | self.app['configuration'].addSessionConfiguration(configuration) |
---|
| 185 | self.browser.addHeader('Authorization', 'Basic mgr:mgrpw') |
---|
| 186 | self.browser.open(self.manage_path) |
---|
| 187 | #IWorkflowState(self.student).setState('started') |
---|
| 188 | super(EtranzactTestsApplicants, self).fill_correct_values() |
---|
[15598] | 189 | self.applicantscontainer.application_fee = 3333.0 |
---|
[15585] | 190 | self.browser.getControl(name="form.nationality").value = ['NG'] |
---|
| 191 | self.browser.getControl(name="transition").value = ['start'] |
---|
| 192 | self.browser.getControl("Save").click() |
---|
| 193 | self.browser.getControl("Add online").click() |
---|
| 194 | self.assertMatches('...ticket created...', |
---|
| 195 | self.browser.contents) |
---|
| 196 | self.payment = self.applicant.values()[0] |
---|
| 197 | self.payment_url = self.browser.url |
---|
| 198 | |
---|
| 199 | @external_test |
---|
[15600] | 200 | def test_applicant_views(self): |
---|
[15702] | 201 | # Manager can access Etranzact form |
---|
[16246] | 202 | self.browser.getLink("Pay via Etranzact WebConnect").click() |
---|
[15585] | 203 | self.assertTrue("Pay now" in self.browser.contents) |
---|
[15598] | 204 | # Means of testing end here. |
---|
| 205 | # We requery an existing paiment now. |
---|
| 206 | self.payment.p_id = TID |
---|
| 207 | self.browser.open(self.payment_url) |
---|
[16246] | 208 | self.browser.getLink("Requery Etranzact WebConnect History").click() |
---|
[15598] | 209 | self.assertTrue('Wrong checksum.' in self.browser.contents) |
---|
| 210 | # ... probably because responseurl of the transaction stored in the |
---|
| 211 | # system and the responseurl generated in process_response are |
---|
| 212 | # different |
---|
| 213 | # Means of testing end here again. |
---|
[15585] | 214 | return |
---|
| 215 | |
---|
[15600] | 216 | class EtranzactTestsStudents(StudentsFullSetup): |
---|
| 217 | """Tests for the Etranzact payment gateway. |
---|
| 218 | """ |
---|
[15585] | 219 | |
---|
[15600] | 220 | layer = FunctionalLayer |
---|
| 221 | |
---|
| 222 | def setUp(self): |
---|
| 223 | super(EtranzactTestsStudents, self).setUp() |
---|
[15702] | 224 | self.app['configuration']['2004'].etranzact_webconnect_enabled = True |
---|
| 225 | self.app['configuration']['2004'].etranzact_payoutlet_enabled = True |
---|
[15600] | 226 | self.browser.addHeader('Authorization', 'Basic mgr:mgrpw') |
---|
| 227 | self.browser.open(self.payments_path) |
---|
| 228 | IWorkflowState(self.student).setState('cleared') |
---|
| 229 | self.student.nationality = u'NG' |
---|
| 230 | self.browser.open(self.payments_path + '/addop') |
---|
| 231 | self.browser.getControl(name="form.p_category").value = ['schoolfee'] |
---|
| 232 | self.browser.getControl("Create ticket").click() |
---|
| 233 | self.assertMatches('...ticket created...', |
---|
| 234 | self.browser.contents) |
---|
[16378] | 235 | self.browser.open(self.payments_path) |
---|
[15600] | 236 | ctrl = self.browser.getControl(name='val_id') |
---|
| 237 | self.value = ctrl.options[0] |
---|
| 238 | self.browser.getLink(self.value).click() |
---|
| 239 | self.assertMatches('...Amount Authorized...', |
---|
| 240 | self.browser.contents) |
---|
| 241 | self.assertTrue('<span>40000.0</span>', self.browser.contents) |
---|
| 242 | self.payment_url = self.browser.url |
---|
| 243 | self.payment = self.student['payments'][self.value] |
---|
| 244 | |
---|
| 245 | @external_test |
---|
| 246 | def test_student_views(self): |
---|
[15702] | 247 | # Manager can access Etranzact form |
---|
[16246] | 248 | self.browser.getLink("Pay via Etranzact WebConnect").click() |
---|
[15600] | 249 | self.assertTrue("Pay now" in self.browser.contents) |
---|
| 250 | # Means of testing end here. |
---|
| 251 | # We requery an existing paiment now. |
---|
| 252 | self.payment.p_id = TID |
---|
| 253 | self.browser.open(self.payment_url) |
---|
[16246] | 254 | self.browser.getLink("Requery Etranzact WebConnect History").click() |
---|
[15600] | 255 | self.assertTrue('Wrong checksum.' in self.browser.contents) |
---|
| 256 | # ... probably because responseurl and amount stored in the |
---|
| 257 | # system and the responseurl generated in process_response are |
---|
| 258 | # different |
---|
| 259 | # Means of testing end here again. |
---|
| 260 | return |
---|
[15702] | 261 | |
---|
| 262 | @external_test |
---|
| 263 | def test_student_payoutlet_views(self): |
---|
[16246] | 264 | self.browser.getLink("Pay via Etranzact PayOutlet").click() |
---|
[15730] | 265 | self.browser.getControl(name="confirmation_number").value = '600854291572447457669' |
---|
[16484] | 266 | self.browser.getControl("Requery now").click() |
---|
[15730] | 267 | # This response is strange |
---|
| 268 | self.assertTrue('-3:Wrong Setup' in self.browser.contents) |
---|
[16246] | 269 | self.browser.getLink("Pay via Etranzact PayOutlet").click() |
---|
[15730] | 270 | # This confirmation number exists |
---|
| 271 | self.browser.getControl(name="confirmation_number").value = '500854291572447457669' |
---|
[16484] | 272 | self.browser.getControl("Requery now").click() |
---|
[15730] | 273 | self.assertTrue('Wrong amount' in self.browser.contents) |
---|
| 274 | # Some attributes have been set |
---|
| 275 | self.assertEqual(self.payment.r_desc, 'Test Test Test-CLEARANCE -001-p5723474039401') |
---|
| 276 | return |
---|
[15734] | 277 | |
---|
| 278 | def test_webservice(self): |
---|
| 279 | self.browser.open( |
---|
| 280 | 'http://localhost/app/feerequest?PAYEE_ID=%s&PAYMENT_TYPE=SCHOOLFEE' |
---|
| 281 | % self.payment.p_id) |
---|
| 282 | self.assertEqual(self.browser.contents, |
---|
| 283 | 'PayeeName=Anna Tester~' |
---|
| 284 | 'Faculty=fac1~Department=dep1~' |
---|
| 285 | 'Level=100~ProgrammeType=CERT1~' |
---|
| 286 | 'StudyType=ug_ft~Session=2004/2005~' |
---|
| 287 | 'PayeeID=%s~' |
---|
| 288 | 'Amount=40000.0~FeeStatus=unpaid~' |
---|
| 289 | 'Semester=N/A~PaymentType=School Fee~' |
---|
| 290 | 'MatricNumber=234~Email=aa@aa.ng~' |
---|
| 291 | 'PhoneNumber=1234' % self.payment.p_id) |
---|
| 292 | self.browser.open('http://localhost/app/feerequest') |
---|
| 293 | self.assertEqual(self.browser.contents, ERROR_PART1 + 'Missing PAYEE_ID' + ERROR_PART2) |
---|
| 294 | |
---|
| 295 | self.browser.open('http://localhost/app/feerequest?NONSENSE=nonsense') |
---|
| 296 | self.assertEqual(self.browser.contents, ERROR_PART1 + 'Missing PAYEE_ID' + ERROR_PART2) |
---|
| 297 | |
---|
| 298 | self.browser.open( |
---|
| 299 | 'http://localhost/app/feerequest?PAYEE_ID=nonsense&PAYMENT_TYPE=SCHOOLFEE') |
---|
| 300 | self.assertEqual(self.browser.contents, ERROR_PART1 + 'Invalid PAYEE_ID' + ERROR_PART2) |
---|
| 301 | |
---|
| 302 | self.browser.open( |
---|
| 303 | 'http://localhost/app/feerequest?PAYEE_ID=%s&PAYMENT_TYPE=NONSENSE' |
---|
| 304 | % self.payment.p_id) |
---|
| 305 | self.assertEqual(self.browser.contents, ERROR_PART1 + 'Invalid PAYMENT_TYPE' + ERROR_PART2) |
---|
| 306 | |
---|
| 307 | self.browser.open( |
---|
| 308 | 'http://localhost/app/feerequest?PAYEE_ID=%s' % self.payment.p_id) |
---|
| 309 | self.assertEqual(self.browser.contents, ERROR_PART1 + 'Invalid PAYMENT_TYPE' + ERROR_PART2) |
---|
| 310 | |
---|
| 311 | self.browser.open( |
---|
| 312 | 'http://localhost/app/feerequest?PAYEE_ID=%s&PAYMENT_TYPE=CLEARANCE' |
---|
| 313 | % self.payment.p_id) |
---|
| 314 | self.assertEqual(self.browser.contents, ERROR_PART1 + 'Wrong PAYMENT_TYPE' + ERROR_PART2) |
---|
| 315 | |
---|
| 316 | # Change payment state |
---|
| 317 | self.student['payments'][self.payment.p_id].p_state = 'paid' |
---|
| 318 | |
---|
| 319 | self.browser.open( |
---|
| 320 | 'http://localhost/app/feerequest?PAYEE_ID=%s&PAYMENT_TYPE=SCHOOLFEE' |
---|
| 321 | % self.payment.p_id) |
---|
| 322 | self.assertEqual(self.browser.contents, ERROR_PART1 + 'PAYEE_ID already used' + ERROR_PART2) |
---|
[17730] | 323 | |
---|
| 324 | # Credo tests |
---|
| 325 | |
---|
| 326 | from kofacustom.nigeria.etranzact.helpers import ( |
---|
| 327 | query_credo_payment, get_JSON_response_initialize) |
---|
| 328 | |
---|
| 329 | SECRET_API_KEY = "0PRI0500LB11cBSSLcW0DcW1BcWgmf45" |
---|
| 330 | API_PUBLIC_KEY = "0PUB0500wuoOe9sdtSOLj5peqHKc8Q9W" |
---|
| 331 | EXTERNAL_TESTS_CREDO = True |
---|
| 332 | CREDO_HOST = "api.credodemo.com" |
---|
| 333 | |
---|
| 334 | def external_test_credo(func): |
---|
| 335 | if not EXTERNAL_TESTS_CREDO: |
---|
| 336 | myself = __file__ |
---|
| 337 | if myself.endswith('.pyc'): |
---|
| 338 | myself = myself[:-1] |
---|
| 339 | print "WARNING: external Credo tests are skipped!" |
---|
| 340 | print "WARNING: edit %s to enable them." % myself |
---|
| 341 | return |
---|
| 342 | return func |
---|
| 343 | |
---|
| 344 | class CredoTestsStudents(StudentsFullSetup): |
---|
| 345 | |
---|
| 346 | layer = FunctionalLayer |
---|
| 347 | |
---|
| 348 | P_ID = 'p7120340727304' # works only if such a payment was made on the test platform |
---|
| 349 | |
---|
| 350 | def setUp(self): |
---|
| 351 | super(CredoTestsStudents, self).setUp() |
---|
| 352 | self.app['configuration']['2004'].etranzact_credo_enabled = True |
---|
| 353 | payment = createObject('waeup.StudentOnlinePayment') |
---|
| 354 | payment.p_id = self.P_ID |
---|
| 355 | payment.p_category = 'schoolfee' |
---|
| 356 | payment.amount_auth = 100000.0 |
---|
| 357 | self.student['payments'][payment.p_id] = payment |
---|
| 358 | self.payment2 = payment |
---|
| 359 | |
---|
| 360 | @external_test_credo |
---|
| 361 | def test_initialize(self): |
---|
| 362 | |
---|
| 363 | public_api_key = API_PUBLIC_KEY |
---|
| 364 | callbackUrl = 'aa.aa.aa' |
---|
[17783] | 365 | response = get_JSON_response_initialize(self.payment2, CREDO_HOST, callbackUrl, public_api_key, None) |
---|
[17730] | 366 | |
---|
| 367 | ## A typical response |
---|
| 368 | |
---|
| 369 | #{u'status': 200, |
---|
| 370 | # u'execTime': 5.109764, |
---|
| 371 | # u'message': u'Successfully processed', |
---|
| 372 | # u'data': |
---|
| 373 | # {u'credoReference': u'vsb200B5oM0521Mb00og', |
---|
| 374 | # u'reference': u'xyz', |
---|
| 375 | # u'authorizationUrl': u'https://pay.credodemo.com/vsb200B5oM0521Mb00og' |
---|
| 376 | # }, |
---|
| 377 | # u'error': [] |
---|
| 378 | #} |
---|
| 379 | |
---|
| 380 | # Payment already exists |
---|
[17783] | 381 | self.assertEqual(response, {'error': u'Reference must be unique. '}) |
---|
[17730] | 382 | |
---|
| 383 | #self.assertEqual(response['status'], 200) |
---|
| 384 | #self.assertEqual(response['message'], 'Successfully processed') |
---|
| 385 | #self.assertEqual(response['data']['reference'], self.P_ID) |
---|
| 386 | #self.assertTrue('https://pay.credodemo.com/' in response['data']['authorizationUrl']) |
---|
| 387 | return |
---|
| 388 | |
---|
| 389 | @external_test_credo |
---|
| 390 | def test_verify(self): |
---|
| 391 | self.payment2.p_id = 'anything' |
---|
| 392 | success, msg, log = query_credo_payment(self.payment2, CREDO_HOST, SECRET_API_KEY) |
---|
| 393 | self.assertEqual(log, 'Transaction with ref# anything not found') |
---|
| 394 | self.payment2.p_id = self.P_ID # manually paid |
---|
| 395 | success, msg, log = query_credo_payment(self.payment2, CREDO_HOST, SECRET_API_KEY) |
---|
| 396 | self.assertEqual(msg, 'Successful callback received') |
---|
| 397 | self.assertEqual(self.payment2.r_code, '0') |
---|
| 398 | self.assertEqual(self.payment2.r_desc, 'Successfully processed') |
---|
| 399 | self.assertEqual(self.payment2.p_state, 'paid') |
---|
| 400 | return |
---|
| 401 | |
---|
| 402 | @external_test_credo |
---|
| 403 | def test_student_credo_views(self): |
---|
| 404 | self.browser.addHeader('Authorization', 'Basic mgr:mgrpw') |
---|
| 405 | self.browser.open(self.payments_path) |
---|
| 406 | self.browser.getLink(self.P_ID).click() |
---|
| 407 | self.browser.getLink("Requery Etranzact Credo").click() |
---|
| 408 | self.assertTrue('<span>Successfully processed</span>' in self.browser.contents) |
---|
| 409 | self.assertEqual(self.payment2.r_desc, 'Successfully processed') |
---|
| 410 | return |
---|
| 411 | |
---|
| 412 | class CredoTestsApplicants(ApplicantsFullSetup): |
---|
| 413 | |
---|
| 414 | layer = FunctionalLayer |
---|
| 415 | |
---|
| 416 | P_ID = 'p7120808915674' # works only if such a payment was made on the test platform |
---|
| 417 | |
---|
| 418 | def setUp(self): |
---|
| 419 | super(CredoTestsApplicants, self).setUp() |
---|
| 420 | # Add session configuration object |
---|
| 421 | configuration = SessionConfiguration() |
---|
| 422 | configuration.academic_session = self.applicant.__parent__.year |
---|
| 423 | configuration.etranzact_credo_enabled = True |
---|
| 424 | self.app['configuration'].addSessionConfiguration(configuration) |
---|
| 425 | payment = createObject('waeup.ApplicantOnlinePayment') |
---|
| 426 | payment.p_id = self.P_ID |
---|
| 427 | payment.p_category = 'application' |
---|
| 428 | payment.amount_auth = 5000.0 |
---|
| 429 | self.applicant.email = 'xx@xx.xx' |
---|
| 430 | self.applicant[payment.p_id] = payment |
---|
| 431 | self.payment2 = payment |
---|
| 432 | |
---|
| 433 | @external_test_credo |
---|
| 434 | def test_initialize(self): |
---|
| 435 | |
---|
| 436 | public_api_key = API_PUBLIC_KEY |
---|
| 437 | callbackUrl = 'aa.aa.aa' |
---|
[17783] | 438 | response = get_JSON_response_initialize(self.payment2, CREDO_HOST, callbackUrl, public_api_key, None) |
---|
[17730] | 439 | |
---|
| 440 | # Payment already exists |
---|
[17783] | 441 | self.assertEqual(response, {'error': u'Reference must be unique. '}) |
---|
[17730] | 442 | |
---|
| 443 | #self.assertEqual(response['status'], 200) |
---|
| 444 | #self.assertEqual(response['message'], 'Successfully processed') |
---|
| 445 | #self.assertEqual(response['data']['reference'], self.P_ID) |
---|
| 446 | #self.assertTrue('https://pay.credodemo.com/' in response['data']['authorizationUrl']) |
---|
| 447 | return |
---|
| 448 | |
---|
| 449 | @external_test_credo |
---|
| 450 | def test_verify(self): |
---|
| 451 | self.payment2.p_id = 'anything' |
---|
| 452 | success, msg, log = query_credo_payment(self.payment2, CREDO_HOST, SECRET_API_KEY) |
---|
| 453 | self.assertEqual(log, 'Transaction with ref# anything not found') |
---|
| 454 | self.payment2.p_id = self.P_ID # manually paid |
---|
| 455 | success, msg, log = query_credo_payment(self.payment2, CREDO_HOST, SECRET_API_KEY) |
---|
| 456 | self.assertEqual(msg, 'Successful callback received') |
---|
| 457 | self.assertEqual(self.payment2.r_code, '0') |
---|
| 458 | self.assertEqual(self.payment2.r_desc, 'Successfully processed') |
---|
| 459 | self.assertEqual(self.payment2.p_state, 'paid') |
---|
| 460 | return |
---|
| 461 | |
---|
| 462 | @external_test_credo |
---|
| 463 | def test_applicant_credo_views(self): |
---|
| 464 | IWorkflowState(self.applicant).setState('started') |
---|
| 465 | self.browser.addHeader('Authorization', 'Basic mgr:mgrpw') |
---|
| 466 | self.browser.open(self.view_path) |
---|
| 467 | self.browser.getLink(self.P_ID).click() |
---|
| 468 | self.browser.getLink("Requery Etranzact Credo").click() |
---|
| 469 | self.assertTrue('<span>Successfully processed</span>' in self.browser.contents) |
---|
| 470 | self.assertEqual(self.payment2.r_desc, 'Successfully processed') |
---|
| 471 | self.assertEqual(self.applicant.state, 'paid') |
---|
| 472 | return |
---|