1 | ## $Id: tests.py 10847 2013-12-15 07:12:58Z henrik $ |
---|
2 | ## |
---|
3 | ## Copyright (C) 2011 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 grok |
---|
20 | import pytz |
---|
21 | from datetime import datetime, date, timedelta |
---|
22 | from hurry.workflow.interfaces import IWorkflowState |
---|
23 | from zope.component import createObject, getUtility |
---|
24 | from zope.catalog.interfaces import ICatalog |
---|
25 | from zope.event import notify |
---|
26 | from waeup.kofa.applicants.container import ApplicantsContainer |
---|
27 | from waeup.kofa.university.faculty import Faculty |
---|
28 | from waeup.kofa.university.department import Department |
---|
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 waeup.kwarapoly.testing import FunctionalLayer |
---|
33 | from waeup.kwarapoly.students.payments import CustomStudentOnlinePayment |
---|
34 | |
---|
35 | # Also run tests that send requests to external servers? |
---|
36 | # If you enable this, please make sure the external services |
---|
37 | # do exist really and are not bothered by being spammed by a test programme. |
---|
38 | EXTERNAL_TESTS = False |
---|
39 | |
---|
40 | def external_test(func): |
---|
41 | if not EXTERNAL_TESTS: |
---|
42 | myself = __file__ |
---|
43 | if myself.endswith('.pyc'): |
---|
44 | myself = myself[:-2] |
---|
45 | print "WARNING: external tests are skipped!" |
---|
46 | print "WARNING: edit %s to enable them." % myself |
---|
47 | return |
---|
48 | return func |
---|
49 | |
---|
50 | |
---|
51 | class InterswitchTestsStudents(StudentsFullSetup): |
---|
52 | """Tests for the Interswitch payment gateway. |
---|
53 | """ |
---|
54 | |
---|
55 | layer = FunctionalLayer |
---|
56 | |
---|
57 | def setUp(self): |
---|
58 | super(InterswitchTestsStudents, self).setUp() |
---|
59 | |
---|
60 | # Create at least one Kwarapoly faculty |
---|
61 | self.app['faculties']['CPGS'] = Faculty(code='CPGS') |
---|
62 | self.app['faculties']['CPGS']['dep1'] = Department(code='dep1') |
---|
63 | self.certificate2 = createObject('waeup.Certificate') |
---|
64 | self.certificate2.code = u'CERT2' |
---|
65 | self.certificate2.application_category = 'basic' |
---|
66 | self.certificate2.study_mode = 'nd_ft' |
---|
67 | self.certificate2.start_level = 100 |
---|
68 | self.certificate2.end_level = 300 |
---|
69 | self.app['faculties']['CPGS']['dep1'].certificates.addCertificate( |
---|
70 | self.certificate2) |
---|
71 | # Set study course attributes of test student |
---|
72 | self.student['studycourse'].certificate = self.certificate2 |
---|
73 | self.student['studycourse'].current_session = 2004 |
---|
74 | self.student['studycourse'].entry_session = 2004 |
---|
75 | self.student['studycourse'].current_verdict = 'A' |
---|
76 | self.student['studycourse'].current_level = 100 |
---|
77 | # Set local lga |
---|
78 | self.student.lga = u'kwara_asa' |
---|
79 | # Update the catalog |
---|
80 | notify(grok.ObjectModifiedEvent(self.student)) |
---|
81 | |
---|
82 | |
---|
83 | def test_schoolfee_ticket_creation(self): |
---|
84 | self.browser.addHeader('Authorization', 'Basic mgr:mgrpw') |
---|
85 | self.browser.open(self.payments_path) |
---|
86 | IWorkflowState(self.student).setState('cleared') |
---|
87 | self.browser.open(self.payments_path + '/addop') |
---|
88 | self.browser.getControl(name="form.p_category").value = ['schoolfee'] |
---|
89 | self.browser.getControl("Create ticket").click() |
---|
90 | self.assertMatches('...Book and pay for accommodation first...', |
---|
91 | self.browser.contents) |
---|
92 | # We add a fake maint. payment ticket to meet the condition |
---|
93 | maint_payment = CustomStudentOnlinePayment() |
---|
94 | self.student['payments']['any_key'] = maint_payment |
---|
95 | maint_payment.p_category = 'hostel_maintenance' |
---|
96 | maint_payment.p_state = 'unpaid' |
---|
97 | maint_payment.p_session = 2004 |
---|
98 | self.browser.getControl(name="form.p_category").value = ['schoolfee'] |
---|
99 | self.browser.getControl("Create ticket").click() |
---|
100 | self.assertMatches('...Book and pay for accommodation first...', |
---|
101 | self.browser.contents) |
---|
102 | # Ticket must be paid |
---|
103 | maint_payment.p_state = 'paid' |
---|
104 | self.browser.getControl(name="form.p_category").value = ['schoolfee'] |
---|
105 | self.browser.getControl("Create ticket").click() |
---|
106 | self.assertMatches('...ticket created...', |
---|
107 | self.browser.contents) |
---|
108 | ctrl = self.browser.getControl(name='val_id') |
---|
109 | self.value = ctrl.options[1] |
---|
110 | self.browser.getLink(self.value).click() |
---|
111 | self.assertMatches('...Amount Authorized...', |
---|
112 | self.browser.contents) |
---|
113 | self.assertMatches( |
---|
114 | '...<span>39400.0</span>...', |
---|
115 | self.browser.contents) |
---|
116 | self.payment_url = self.browser.url |
---|
117 | |
---|
118 | |
---|
119 | # def callback_url(self, payment_url, resp, apprAmt): |
---|
120 | # return payment_url + ( |
---|
121 | # '/isw_callback?echo=' + |
---|
122 | # '&resp=%s' + |
---|
123 | # '&desc=Something went wrong' + |
---|
124 | # '&txnRef=p1331792385335' + |
---|
125 | # '&payRef=' + '&retRef=' + |
---|
126 | # '&cardNum=0' + |
---|
127 | # '&apprAmt=%s' + |
---|
128 | # '&url=http://xyz') % (resp, apprAmt) |
---|
129 | |
---|
130 | def test_interswitch_form(self): |
---|
131 | |
---|
132 | self.browser.addHeader('Authorization', 'Basic mgr:mgrpw') |
---|
133 | self.browser.open(self.payments_path) |
---|
134 | # In KwaraPoly only returning students can create school fee payment |
---|
135 | # without haveing paid accommodation fee |
---|
136 | IWorkflowState(self.student).setState('returning') |
---|
137 | configuration = createObject('waeup.SessionConfiguration') |
---|
138 | configuration.academic_session = 2005 |
---|
139 | self.app['configuration'].addSessionConfiguration(configuration) |
---|
140 | self.browser.open(self.payments_path + '/addop') |
---|
141 | self.browser.getControl(name="form.p_category").value = ['schoolfee'] |
---|
142 | self.browser.getControl("Create ticket").click() |
---|
143 | self.assertMatches('...ticket created...', self.browser.contents) |
---|
144 | ctrl = self.browser.getControl(name='val_id') |
---|
145 | self.value = ctrl.options[0] |
---|
146 | self.browser.getLink(self.value).click() |
---|
147 | self.assertMatches('...Amount Authorized...', self.browser.contents) |
---|
148 | self.assertMatches( |
---|
149 | '...<span>29500.0</span>...', |
---|
150 | self.browser.contents) |
---|
151 | self.payment_url = self.browser.url |
---|
152 | |
---|
153 | # Manager can access InterswitchForm |
---|
154 | self.assertEqual(self.student['payments'][self.value].provider_amt, 0.0) |
---|
155 | self.assertEqual(self.student['payments'][self.value].gateway_amt, 0.0) |
---|
156 | self.assertEqual(self.student['payments'][self.value].thirdparty_amt, 0.0) |
---|
157 | self.browser.getLink("CollegePAY", index=0).click() |
---|
158 | # Split amounts have been set. |
---|
159 | self.assertEqual(self.student['payments'][self.value].provider_amt, 1200.0) |
---|
160 | self.assertEqual(self.student['payments'][self.value].gateway_amt, 300.0) |
---|
161 | self.assertEqual(self.student['payments'][self.value].thirdparty_amt, 1800.0) |
---|
162 | self.assertMatches('...Total Amount Authorized:...', |
---|
163 | self.browser.contents) |
---|
164 | self.assertTrue( |
---|
165 | '<input type="hidden" name="amount" value="2950000.0" />' in |
---|
166 | self.browser.contents) |
---|
167 | self.assertTrue( |
---|
168 | 'item_name="School Fee" item_amt="2620000" bank_id="120" acct_num="1771180233"' in |
---|
169 | self.browser.contents) |
---|
170 | self.assertTrue( |
---|
171 | 'item_name="Dalash" item_amt="180000" bank_id="117" acct_num="1013196791"' in |
---|
172 | self.browser.contents) |
---|
173 | self.assertTrue( |
---|
174 | 'item_name="BT Education" item_amt="120000" bank_id="117" acct_num="1010764827"' in |
---|
175 | self.browser.contents) |
---|
176 | |
---|
177 | # Let's do the same for maintenance fee payment |
---|
178 | |
---|
179 | self.browser.open(self.payments_path) |
---|
180 | self.browser.open(self.payments_path + '/addop') |
---|
181 | self.browser.getControl( |
---|
182 | name="form.p_category").value = ['hostel_maintenance'] |
---|
183 | self.browser.getControl("Create ticket").click() |
---|
184 | self.assertMatches('...You have not yet booked accommodation...', |
---|
185 | self.browser.contents) |
---|
186 | # Students have to book bed first |
---|
187 | self.browser.open(self.acco_path) |
---|
188 | IWorkflowState(self.student).setState('admitted') |
---|
189 | self.browser.getLink("Book accommodation").click() |
---|
190 | self.assertFalse('Activation Code:' in self.browser.contents) |
---|
191 | self.browser.getControl("Create bed ticket").click() |
---|
192 | # Bed is randomly selected but, since there is only |
---|
193 | # one bed for this student, we know that ... |
---|
194 | self.assertMatches('...Hall 1, Block A, Room 101, Bed A...', |
---|
195 | self.browser.contents) |
---|
196 | self.assertMatches('...ticket created...', |
---|
197 | self.browser.contents) |
---|
198 | self.browser.open(self.payments_path + '/addop') |
---|
199 | self.browser.getControl( |
---|
200 | name="form.p_category").value = ['hostel_maintenance'] |
---|
201 | self.browser.getControl("Create ticket").click() |
---|
202 | self.assertMatches('...ticket created...', |
---|
203 | self.browser.contents) |
---|
204 | ctrl = self.browser.getControl(name='val_id') |
---|
205 | value = ctrl.options[1] |
---|
206 | self.browser.getLink(value).click() |
---|
207 | self.assertMatches('...Amount Authorized...', |
---|
208 | self.browser.contents) |
---|
209 | # Maint fee is taken from the hostel object |
---|
210 | self.assertMatches( |
---|
211 | '...<span>876.0</span>...', |
---|
212 | self.browser.contents) |
---|
213 | self.payment_url = self.browser.url |
---|
214 | # Manager can access InterswitchForm |
---|
215 | self.browser.getLink("CollegePAY", index=0).click() |
---|
216 | # Split amounts have been set. |
---|
217 | self.assertEqual(self.student['payments'][value].provider_amt, 0.0) |
---|
218 | self.assertEqual(self.student['payments'][value].thirdparty_amt, 0.0) |
---|
219 | self.assertEqual(self.student['payments'][value].gateway_amt, 300.0) |
---|
220 | # The total amount to be processed by Interswitch |
---|
221 | # has been reduced by the Interswitch fee of 150 Nairas |
---|
222 | self.assertMatches('...Total Amount Authorized:...', |
---|
223 | self.browser.contents) |
---|
224 | self.assertMatches( |
---|
225 | '...<input type="hidden" name="pay_item_id" value="102" />...', |
---|
226 | self.browser.contents) |
---|
227 | self.assertMatches( |
---|
228 | '...<input type="hidden" name="amount" value="87600.0" />...', |
---|
229 | self.browser.contents) |
---|
230 | self.assertMatches( |
---|
231 | '...item_name="Hostel Maintenance Fee" item_amt="57600" bank_id="31" acct_num="0039050937"...', |
---|
232 | self.browser.contents) |
---|
233 | |
---|
234 | # Create carryover ticket |
---|
235 | self.browser.open(self.payments_path + '/addop') |
---|
236 | self.browser.getControl(name="form.p_category").value = ['carryover1'] |
---|
237 | self.browser.getControl("Create ticket").click() |
---|
238 | ctrl = self.browser.getControl(name='val_id') |
---|
239 | value = ctrl.options[2] |
---|
240 | self.browser.getLink(value).click() |
---|
241 | self.assertMatches( |
---|
242 | '...<span>6000.0</span>...', |
---|
243 | self.browser.contents) |
---|
244 | # Manager can access InterswitchForm |
---|
245 | self.browser.getLink("CollegePAY", index=0).click() |
---|
246 | # Split amounts have been set. |
---|
247 | self.assertEqual(self.student['payments'][self.value].provider_amt, 1200.0) |
---|
248 | self.assertEqual(self.student['payments'][self.value].gateway_amt, 300.0) |
---|
249 | self.assertEqual(self.student['payments'][self.value].thirdparty_amt, 1800.0) |
---|
250 | self.assertMatches('...<input type="hidden" name="pay_item_id" value="101" />...', |
---|
251 | self.browser.contents) |
---|
252 | self.assertMatches('...Total Amount Authorized:...', |
---|
253 | self.browser.contents) |
---|
254 | self.assertMatches( |
---|
255 | '...<input type="hidden" name="amount" value="600000.0" />...', |
---|
256 | self.browser.contents) |
---|
257 | self.assertMatches( |
---|
258 | '...item_name="School Fee" item_amt="270000" bank_id="120" acct_num="1771180233"...', |
---|
259 | self.browser.contents) |
---|
260 | self.assertMatches( |
---|
261 | '...item_name="Dalash" item_amt="180000" bank_id="117" acct_num="1013196791"...', |
---|
262 | self.browser.contents) |
---|
263 | self.assertMatches( |
---|
264 | '...item_name="BT Education" item_amt="120000" bank_id="117" acct_num="1010764827"...', |
---|
265 | self.browser.contents) |
---|
266 | |
---|
267 | def test_interswitch_form_new_payment_cats(self): |
---|
268 | # only a few categories covered |
---|
269 | |
---|
270 | self.app['configuration']['2004'].certificate_fee = 6800.0 |
---|
271 | self.browser.addHeader('Authorization', 'Basic mgr:mgrpw') |
---|
272 | self.browser.open(self.payments_path + '/addop') |
---|
273 | self.browser.getControl(name="form.p_category").value = ['certificate'] |
---|
274 | self.browser.getControl("Create ticket").click() |
---|
275 | self.assertMatches('...ticket created...', self.browser.contents) |
---|
276 | ctrl = self.browser.getControl(name='val_id') |
---|
277 | value = ctrl.options[0] |
---|
278 | self.browser.getLink(value).click() |
---|
279 | self.assertMatches('...Amount Authorized...', self.browser.contents) |
---|
280 | self.assertMatches( |
---|
281 | '...<span>6800.0</span>...', self.browser.contents) |
---|
282 | self.browser.getLink("CollegePAY", index=0).click() |
---|
283 | self.assertEqual(self.student['payments'][value].amount_auth, 6800.0) |
---|
284 | self.assertEqual(self.student['payments'][value].provider_amt, 300.0) |
---|
285 | self.assertEqual(self.student['payments'][value].gateway_amt, 300.0) |
---|
286 | self.assertEqual(self.student['payments'][value].thirdparty_amt, 200.0) |
---|
287 | |
---|
288 | self.app['configuration']['2004'].transcript_local_fee = 5000.0 |
---|
289 | self.browser.open(self.payments_path + '/addop') |
---|
290 | self.browser.getControl(name="form.p_category").value = ['transcript_local'] |
---|
291 | self.browser.getControl("Create ticket").click() |
---|
292 | ctrl = self.browser.getControl(name='val_id') |
---|
293 | value = ctrl.options[1] |
---|
294 | self.browser.getLink(value).click() |
---|
295 | self.assertMatches('...Amount Authorized...', self.browser.contents) |
---|
296 | self.assertMatches( |
---|
297 | '...<span>5000.0</span>...', self.browser.contents) |
---|
298 | self.payment_url = self.browser.url |
---|
299 | self.browser.getLink("CollegePAY", index=0).click() |
---|
300 | self.assertEqual(self.student['payments'][value].amount_auth, 5000.0) |
---|
301 | self.assertEqual(self.student['payments'][value].provider_amt, 300.0) |
---|
302 | self.assertEqual(self.student['payments'][value].gateway_amt, 300.0) |
---|
303 | self.assertEqual(self.student['payments'][value].thirdparty_amt, 200.0) |
---|
304 | |
---|
305 | self.app['configuration']['2004'].loss_idcard_fee = 1000.0 |
---|
306 | self.browser.open(self.payments_path + '/addop') |
---|
307 | self.browser.getControl(name="form.p_category").value = ['loss_idcard'] |
---|
308 | self.browser.getControl("Create ticket").click() |
---|
309 | ctrl = self.browser.getControl(name='val_id') |
---|
310 | value = ctrl.options[2] |
---|
311 | self.browser.getLink(value).click() |
---|
312 | self.assertMatches('...Amount Authorized...', self.browser.contents) |
---|
313 | self.assertMatches( |
---|
314 | '...<span>1000.0</span>...', self.browser.contents) |
---|
315 | self.payment_url = self.browser.url |
---|
316 | self.browser.getLink("CollegePAY", index=0).click() |
---|
317 | self.assertEqual(self.student['payments'][value].amount_auth, 1000.0) |
---|
318 | self.assertEqual(self.student['payments'][value].provider_amt, 9.0) |
---|
319 | self.assertEqual(self.student['payments'][value].gateway_amt, 15.0) |
---|
320 | self.assertEqual(self.student['payments'][value].thirdparty_amt, 6.0) |
---|
321 | |
---|
322 | self.app['configuration']['2004'].loss_examcard_fee = 500.0 |
---|
323 | self.browser.open(self.payments_path + '/addop') |
---|
324 | self.browser.getControl(name="form.p_category").value = ['loss_examcard'] |
---|
325 | self.browser.getControl("Create ticket").click() |
---|
326 | ctrl = self.browser.getControl(name='val_id') |
---|
327 | value = ctrl.options[3] |
---|
328 | self.browser.getLink(value).click() |
---|
329 | self.assertMatches('...Amount Authorized...', self.browser.contents) |
---|
330 | self.assertMatches( |
---|
331 | '...<span>500.0</span>...', self.browser.contents) |
---|
332 | self.payment_url = self.browser.url |
---|
333 | self.browser.getLink("CollegePAY", index=0).click() |
---|
334 | self.assertEqual(self.student['payments'][value].amount_auth, 500.0) |
---|
335 | self.assertEqual(self.student['payments'][value].provider_amt, 4.5) |
---|
336 | self.assertEqual(self.student['payments'][value].gateway_amt, 7.5) |
---|
337 | self.assertEqual(self.student['payments'][value].thirdparty_amt, 3) |
---|
338 | |
---|
339 | self.app['configuration']['2004'].change_inst_fee = 6000.0 |
---|
340 | self.browser.open(self.payments_path + '/addop') |
---|
341 | self.browser.getControl(name="form.p_category").value = ['change_inst'] |
---|
342 | self.browser.getControl("Create ticket").click() |
---|
343 | ctrl = self.browser.getControl(name='val_id') |
---|
344 | value = ctrl.options[4] |
---|
345 | self.browser.getLink(value).click() |
---|
346 | self.assertMatches('...Amount Authorized...', self.browser.contents) |
---|
347 | self.assertMatches( |
---|
348 | '...<span>6000.0</span>...', self.browser.contents) |
---|
349 | self.payment_url = self.browser.url |
---|
350 | self.browser.getLink("CollegePAY", index=0).click() |
---|
351 | self.assertEqual(self.student['payments'][value].amount_auth, 6000.0) |
---|
352 | self.assertEqual(self.student['payments'][value].provider_amt, 300.0) |
---|
353 | self.assertEqual(self.student['payments'][value].gateway_amt, 300.0) |
---|
354 | self.assertEqual(self.student['payments'][value].thirdparty_amt, 200.0) |
---|
355 | |
---|
356 | self.app['configuration']['2004'].loss_result_fee = 7000.0 |
---|
357 | self.browser.open(self.payments_path + '/addop') |
---|
358 | self.browser.getControl(name="form.p_category").value = ['loss_result'] |
---|
359 | self.browser.getControl("Create ticket").click() |
---|
360 | ctrl = self.browser.getControl(name='val_id') |
---|
361 | value = ctrl.options[5] |
---|
362 | self.browser.getLink(value).click() |
---|
363 | self.assertMatches('...Amount Authorized...', self.browser.contents) |
---|
364 | self.assertMatches( |
---|
365 | '...<span>7000.0</span>...', self.browser.contents) |
---|
366 | self.payment_url = self.browser.url |
---|
367 | self.browser.getLink("CollegePAY", index=0).click() |
---|
368 | self.assertEqual(self.student['payments'][value].amount_auth, 7000.0) |
---|
369 | self.assertEqual(self.student['payments'][value].provider_amt, 300.0) |
---|
370 | self.assertEqual(self.student['payments'][value].gateway_amt, 300.0) |
---|
371 | self.assertEqual(self.student['payments'][value].thirdparty_amt, 200.0) |
---|
372 | |
---|
373 | @external_test |
---|
374 | def test_webservice(self): |
---|
375 | # First we have open InterswitchPageStudent to set provider_amt |
---|
376 | # and gateway_amt |
---|
377 | self.browser.open(self.payment_url + '/goto_interswitch') |
---|
378 | # Now we can call the webservice |
---|
379 | self.browser.open(self.payment_url + '/request_webservice') |
---|
380 | self.assertMatches('...Unsuccessful callback...', |
---|
381 | self.browser.contents) |
---|
382 | # The payment is now in state failed ... |
---|
383 | self.assertMatches('...<span>Failed</span>...', |
---|
384 | self.browser.contents) |
---|
385 | # ... and the catalog has been updated |
---|
386 | cat = getUtility(ICatalog, name='payments_catalog') |
---|
387 | results = list( |
---|
388 | cat.searchResults(p_state=('failed', 'failed'))) |
---|
389 | self.assertEqual(len(results), 1) |
---|
390 | self.assertEqual(results[0].p_state, 'failed') |
---|
391 | |
---|
392 | # Let's replace the p_id with a valid p_id of the Kwarapoly |
---|
393 | # live system. This is definitely not an appropriate |
---|
394 | # solution for testing, but we have no choice since |
---|
395 | # Interswitch doesn't provide any interface |
---|
396 | # for testing. |
---|
397 | payment = self.student['payments'][self.value] |
---|
398 | payment.p_id = 'p3543612043224' |
---|
399 | self.browser.open(self.payment_url + '/request_webservice') |
---|
400 | self.assertMatches('...Callback amount does not match...', |
---|
401 | self.browser.contents) |
---|
402 | # The payment is now in state failed ... |
---|
403 | self.assertMatches('...<span>Failed</span>...', |
---|
404 | self.browser.contents) |
---|
405 | # Let's replace the amount autorized with the amount of the |
---|
406 | # live system payment |
---|
407 | payment.amount_auth = payment.r_amount_approved |
---|
408 | self.browser.open(self.payment_url + '/request_webservice') |
---|
409 | self.assertMatches('...Successful payment...', |
---|
410 | self.browser.contents) |
---|
411 | # The payment is now in state paid ... |
---|
412 | self.assertMatches('...<span>Paid</span>...', |
---|
413 | self.browser.contents) |
---|
414 | # ... and the catalog has been updated |
---|
415 | cat = getUtility(ICatalog, name='payments_catalog') |
---|
416 | results = list( |
---|
417 | cat.searchResults(p_state=('paid', 'paid'))) |
---|
418 | self.assertEqual(len(results), 1) |
---|
419 | self.assertEqual(results[0].p_state, 'paid') |
---|
420 | # Approval is logged in students.log ... |
---|
421 | logfile = os.path.join( |
---|
422 | self.app['datacenter'].storage, 'logs', 'students.log') |
---|
423 | logcontent = open(logfile).read() |
---|
424 | self.assertTrue( |
---|
425 | 'zope.mgr - ' |
---|
426 | 'waeup.kwarapoly.interswitch.browser.InterswitchPaymentRequestWebservicePageStudent - ' |
---|
427 | 'W1000000 - successful schoolfee payment: p3543612043224\n' |
---|
428 | in logcontent) |
---|
429 | # ... and in payments.log |
---|
430 | logfile = os.path.join( |
---|
431 | self.app['datacenter'].storage, 'logs', 'payments.log') |
---|
432 | logcontent = open(logfile).read() |
---|
433 | self.assertTrue( |
---|
434 | '"zope.mgr",W1000000,p3543612043224,schoolfee,' |
---|
435 | '52100.0,00,1200.0,300.0,1800.0,,,\n' |
---|
436 | in logcontent) |
---|
437 | |
---|
438 | |
---|
439 | class InterswitchTestsApplicants(ApplicantsFullSetup): |
---|
440 | """Tests for the Interswitch payment gateway. |
---|
441 | """ |
---|
442 | |
---|
443 | layer = FunctionalLayer |
---|
444 | |
---|
445 | def setUp(self): |
---|
446 | super(InterswitchTestsApplicants, self).setUp() |
---|
447 | configuration = SessionConfiguration() |
---|
448 | configuration.academic_session = datetime.now().year - 2 |
---|
449 | self.app['configuration'].addSessionConfiguration(configuration) |
---|
450 | self.configuration = configuration |
---|
451 | # Create at least one Kwarapoly faculty |
---|
452 | self.app['faculties']['CPGS'] = Faculty(code='CPGS') |
---|
453 | self.app['faculties']['CPGS']['dep1'] = Department(code='dep1') |
---|
454 | self.certificate2 = createObject('waeup.Certificate') |
---|
455 | self.certificate2.code = u'CERT2' |
---|
456 | self.certificate2.application_category = 'ndft' |
---|
457 | self.certificate2.study_mode = 'nd_ft' |
---|
458 | self.certificate2.start_level = 100 |
---|
459 | self.certificate2.end_level = 300 |
---|
460 | self.app['faculties']['CPGS']['dep1'].certificates.addCertificate( |
---|
461 | self.certificate2) |
---|
462 | self.applicantscontainer.application_category = 'ndft' |
---|
463 | self.applicant.applicant_id = u'nd_anything' |
---|
464 | |
---|
465 | self.browser.addHeader('Authorization', 'Basic mgr:mgrpw') |
---|
466 | self.browser.open(self.manage_path) |
---|
467 | #IWorkflowState(self.student).setState('started') |
---|
468 | super(InterswitchTestsApplicants, self).fill_correct_values() |
---|
469 | self.browser.getControl(name="form.course1").value = ['CERT2'] |
---|
470 | self.applicantscontainer.application_fee = 3333.0 |
---|
471 | self.browser.getControl(name="form.nationality").value = ['NG'] |
---|
472 | self.browser.getControl(name="transition").value = ['start'] |
---|
473 | self.browser.getControl("Save").click() |
---|
474 | self.browser.getControl("Add online").click() |
---|
475 | self.assertMatches('...ticket created...', |
---|
476 | self.browser.contents) |
---|
477 | #ctrl = self.browser.getControl(name='val_id') |
---|
478 | #value = ctrl.options[0] |
---|
479 | #self.browser.getLink(value).click() |
---|
480 | self.assertMatches('...Amount Authorized...', |
---|
481 | self.browser.contents) |
---|
482 | self.assertMatches( |
---|
483 | '...<span>3333.0</span>...', |
---|
484 | self.browser.contents) |
---|
485 | self.payment_url = self.browser.url |
---|
486 | |
---|
487 | |
---|
488 | def test_interswitch_form(self): |
---|
489 | |
---|
490 | # Manager can access InterswitchForm |
---|
491 | self.browser.getLink("CollegePAY", index=0).click() |
---|
492 | self.assertMatches('...Total Amount Authorized:...', |
---|
493 | self.browser.contents) |
---|
494 | self.assertTrue( |
---|
495 | '<input type="hidden" name="amount" value="333300.0" />' |
---|
496 | in self.browser.contents) |
---|
497 | self.assertTrue( |
---|
498 | '<item_detail item_id="1" item_name="application" ' |
---|
499 | 'item_amt="253300" bank_id="8" acct_num="2014191363" />' |
---|
500 | in self.browser.contents) |
---|
501 | |
---|
502 | # hndft fee goes to another account |
---|
503 | self.applicant.applicant_id = u'hnd_anything' |
---|
504 | self.browser.open(self.manage_path) |
---|
505 | ctrl = self.browser.getControl(name='val_id') |
---|
506 | value = ctrl.options[0] |
---|
507 | self.browser.getLink(value).click() |
---|
508 | self.browser.getLink("CollegePAY", index=0).click() |
---|
509 | self.assertTrue( |
---|
510 | '<item_detail item_id="1" item_name="application" ' |
---|
511 | 'item_amt="253300" bank_id="9" acct_num="7000016724" />' |
---|
512 | in self.browser.contents) |
---|
513 | # Commission or bribe? |
---|
514 | self.assertTrue( |
---|
515 | '<item_detail item_id="2" item_name="Dalash" item_amt="20000" ' |
---|
516 | 'bank_id="117" acct_num="1013196791" />' |
---|
517 | in self.browser.contents) |
---|
518 | self.assertTrue( |
---|
519 | '<item_detail item_id="3" item_name="BT Education" ' |
---|
520 | 'item_amt="30000" bank_id="117" acct_num="1010764827" />' |
---|
521 | in self.browser.contents) |
---|
522 | |
---|
523 | # prehndft fee goes to another account |
---|
524 | self.applicant.applicant_id = u'prehnd_anything' |
---|
525 | self.browser.open(self.manage_path) |
---|
526 | ctrl = self.browser.getControl(name='val_id') |
---|
527 | value = ctrl.options[0] |
---|
528 | self.browser.getLink(value).click() |
---|
529 | self.browser.getLink("CollegePAY", index=0).click() |
---|
530 | self.assertTrue( |
---|
531 | '<item_detail item_id="1" item_name="application" ' |
---|
532 | 'item_amt="303300" bank_id="8" acct_num="2013910271" />' |
---|
533 | in self.browser.contents) |
---|
534 | # No 'commission', no provider fee |
---|
535 | self.assertFalse('Dalash' in self.browser.contents) |
---|
536 | self.assertFalse('BT Education' in self.browser.contents) |
---|
537 | |
---|
538 | # prejambites fee goes to another account |
---|
539 | self.applicant.applicant_id = u'prejambites_anything' |
---|
540 | self.browser.open(self.manage_path) |
---|
541 | ctrl = self.browser.getControl(name='val_id') |
---|
542 | value = ctrl.options[0] |
---|
543 | self.browser.getLink(value).click() |
---|
544 | self.browser.getLink("CollegePAY", index=0).click() |
---|
545 | self.assertTrue( |
---|
546 | '<item_detail item_id="1" item_name="application" ' |
---|
547 | 'item_amt="303300" bank_id="10" acct_num="0106259811" />' |
---|
548 | in self.browser.contents) |
---|
549 | # No 'commission', no provider fee |
---|
550 | self.assertFalse('Dalash' in self.browser.contents) |
---|
551 | self.assertFalse('BT Education' in self.browser.contents) |
---|
552 | |
---|
553 | |
---|
554 | def prepare_special_container(self): |
---|
555 | # Add special application container |
---|
556 | container_name = u'special%s' % (datetime.now().year - 2) |
---|
557 | applicantscontainer = ApplicantsContainer() |
---|
558 | applicantscontainer.code = container_name |
---|
559 | applicantscontainer.prefix = 'special' |
---|
560 | applicantscontainer.year = datetime.now().year - 2 |
---|
561 | applicantscontainer.title = u'This is a special app container' |
---|
562 | applicantscontainer.application_category = 'no' |
---|
563 | applicantscontainer.mode = 'create' |
---|
564 | delta = timedelta(days=10) |
---|
565 | applicantscontainer.startdate = datetime.now(pytz.utc) - delta |
---|
566 | applicantscontainer.enddate = datetime.now(pytz.utc) + delta |
---|
567 | applicantscontainer.strict_deadline = True |
---|
568 | self.app['applicants'][container_name] = applicantscontainer |
---|
569 | # Add an applicant |
---|
570 | applicant = createObject('waeup.Applicant') |
---|
571 | # reg_number is the only field which has to be preset here |
---|
572 | # because managers are allowed to edit this required field |
---|
573 | applicant.reg_number = u'12345' |
---|
574 | applicant.firstname = u'Vorname' |
---|
575 | applicant.lastname = u'Nachname' |
---|
576 | applicant.email = 'aa@aa.aa' |
---|
577 | applicant.special_application = u'transcript_local' |
---|
578 | applicant.applicant_id = u'special_anything' |
---|
579 | self.app['applicants'][container_name].addApplicant(applicant) |
---|
580 | self.special_applicant = applicant |
---|
581 | self.configuration.transcript_local_fee = 5300.0 |
---|
582 | self.special_manage_path = 'http://localhost/app/applicants/%s/%s/%s' % ( |
---|
583 | container_name, applicant.application_number, 'manage') |
---|
584 | |
---|
585 | def test_interswitch_form_special(self): |
---|
586 | self.prepare_special_container() |
---|
587 | self.browser.open(self.special_manage_path) |
---|
588 | self.browser.getControl("Add online").click() |
---|
589 | self.assertMatches('...ticket created...', |
---|
590 | self.browser.contents) |
---|
591 | self.browser.getLink("CollegePAY", index=0).click() |
---|
592 | self.assertTrue( |
---|
593 | '<item_detail item_id="1" item_name="transcript_local" ' |
---|
594 | 'item_amt="450000" bank_id="10" acct_num="0131959715" />' |
---|
595 | in self.browser.contents) |
---|