1 | ## $Id: tests.py 17927 2024-09-13 10:45:39Z 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 | from datetime import datetime, date, timedelta |
---|
20 | from zope.component import createObject, getUtility |
---|
21 | from zope.catalog.interfaces import ICatalog |
---|
22 | from hurry.workflow.interfaces import IWorkflowState |
---|
23 | from waeup.kofa.students.tests.test_browser import StudentsFullSetup |
---|
24 | from waeup.kofa.applicants.tests.test_browser import ApplicantsFullSetup |
---|
25 | from waeup.kofa.configuration import SessionConfiguration |
---|
26 | from kofacustom.edopoly.testing import FunctionalLayer |
---|
27 | |
---|
28 | # Also run tests that send requests to external servers? |
---|
29 | # If you enable this, please make sure the external services |
---|
30 | # do exist really and are not bothered by being spammed by a test programme. |
---|
31 | EXTERNAL_TESTS = False |
---|
32 | |
---|
33 | def external_test(func): |
---|
34 | if not EXTERNAL_TESTS: |
---|
35 | myself = __file__ |
---|
36 | if myself.endswith('.pyc'): |
---|
37 | myself = myself[:-2] |
---|
38 | print "WARNING: external tests are skipped!" |
---|
39 | print "WARNING: edit %s to enable them." % myself |
---|
40 | return |
---|
41 | return func |
---|
42 | |
---|
43 | |
---|
44 | class InterswitchTestsStudents(StudentsFullSetup): |
---|
45 | """Tests for the Interswitch payment gateway. |
---|
46 | """ |
---|
47 | |
---|
48 | layer = FunctionalLayer |
---|
49 | |
---|
50 | def setUp(self): |
---|
51 | super(InterswitchTestsStudents, self).setUp() |
---|
52 | self.app['configuration']['2004'].interswitch_enabled = True |
---|
53 | |
---|
54 | def test_interswitch_form(self): |
---|
55 | # Manager can access InterswitchForm |
---|
56 | # School Fee |
---|
57 | self.browser.addHeader('Authorization', 'Basic mgr:mgrpw') |
---|
58 | self.browser.open(self.payments_path) |
---|
59 | IWorkflowState(self.student).setState('cleared') |
---|
60 | self.student.nationality = u'NG' |
---|
61 | self.browser.open(self.payments_path + '/addop') |
---|
62 | self.browser.getControl(name="form.p_category").value = ['schoolfee'] |
---|
63 | self.browser.getControl("Create ticket").click() |
---|
64 | self.assertTrue( |
---|
65 | 'Pay ICT, Student Union and Logbook fee(s) first.' in self.browser.contents) |
---|
66 | |
---|
67 | # Add required payments first. |
---|
68 | payment = createObject('waeup.StudentOnlinePayment') |
---|
69 | payment.p_state = 'paid' |
---|
70 | payment.p_category = 'ict_entre' |
---|
71 | payment.p_id = '123' |
---|
72 | payment.p_session = 2004 |
---|
73 | self.student['payments']['123'] = payment |
---|
74 | payment = createObject('waeup.StudentOnlinePayment') |
---|
75 | payment.p_state = 'paid' |
---|
76 | payment.p_category = 'logbook_combo' |
---|
77 | payment.p_id = '123' |
---|
78 | payment.p_session = 2004 |
---|
79 | self.student['payments']['234'] = payment |
---|
80 | payment = createObject('waeup.StudentOnlinePayment') |
---|
81 | payment.p_state = 'paid' |
---|
82 | payment.p_category = 'siwess_combo' |
---|
83 | payment.p_id = '123' |
---|
84 | payment.p_session = 2004 |
---|
85 | self.student['payments']['345'] = payment |
---|
86 | payment = createObject('waeup.StudentOnlinePayment') |
---|
87 | payment.p_state = 'paid' |
---|
88 | payment.p_category = 'union' |
---|
89 | payment.p_id = '567' |
---|
90 | payment.p_session = 2004 |
---|
91 | self.student['payments']['567'] = payment |
---|
92 | self.browser.open(self.payments_path + '/addop') |
---|
93 | self.browser.getControl(name="form.p_category").value = ['schoolfee'] |
---|
94 | self.browser.getControl("Create ticket").click() |
---|
95 | self.assertMatches('...ticket created...', |
---|
96 | self.browser.contents) |
---|
97 | self.assertMatches('...Amount Authorized...', |
---|
98 | self.browser.contents) |
---|
99 | self.assertTrue( |
---|
100 | '<span>40000.0</span>' in self.browser.contents) |
---|
101 | self.payment_url = self.browser.url |
---|
102 | self.browser.getLink("Pay via Interswitch", index=0).click() |
---|
103 | self.assertTrue('<input type="hidden" name="pay_item_id" value="101" />' in |
---|
104 | self.browser.contents) |
---|
105 | self.assertEqual(self.student.current_mode, 'ug_ft') |
---|
106 | self.assertTrue( |
---|
107 | '<input type="hidden" name="amount" value="4000000" />' in |
---|
108 | self.browser.contents) |
---|
109 | self.assertTrue( |
---|
110 | 'item_name="Tuition/Exams Fee" item_amt="3975000" bank_id="121" acct_num="0068241848"' in |
---|
111 | self.browser.contents) |
---|
112 | # Clearance Fee |
---|
113 | self.browser.open(self.payments_path + '/addop') |
---|
114 | self.browser.getControl(name="form.p_category").value = ['clearance'] |
---|
115 | self.browser.getControl("Create ticket").click() |
---|
116 | self.assertMatches('...ticket created...', |
---|
117 | self.browser.contents) |
---|
118 | self.assertTrue( |
---|
119 | '<span>3456.0</span>' in self.browser.contents) |
---|
120 | self.payment_url = self.browser.url |
---|
121 | self.browser.getLink("Pay via Interswitch", index=0).click() |
---|
122 | self.assertTrue('<input type="hidden" name="pay_item_id" value="101" />' in |
---|
123 | self.browser.contents) |
---|
124 | self.assertTrue( |
---|
125 | '<input type="hidden" name="amount" value="345600" />' in |
---|
126 | self.browser.contents) |
---|
127 | self.assertTrue( |
---|
128 | 'item_name="Acceptance Fee" item_amt="170600" bank_id="121" acct_num="0068241848"' in |
---|
129 | self.browser.contents) |
---|
130 | |
---|
131 | def test_interswitch_form_ticket_expired(self): |
---|
132 | self.browser.addHeader('Authorization', 'Basic mgr:mgrpw') |
---|
133 | acc_payment = createObject('waeup.StudentOnlinePayment') |
---|
134 | acc_payment.p_state = 'unpaid' |
---|
135 | acc_payment.p_category = 'clearance' |
---|
136 | acc_payment.p_id = 'xyz' |
---|
137 | acc_payment.pay_item_id = '123' |
---|
138 | acc_payment.amount_auth = 876.0 |
---|
139 | self.student['payments']['xyz'] = acc_payment |
---|
140 | self.browser.open(self.payments_path + '/xyz') |
---|
141 | self.browser.getLink("Pay via Interswitch", index=0).click() |
---|
142 | self.assertMatches('...<input type="hidden" name="pay_item_id" value="101" />...', |
---|
143 | self.browser.contents) |
---|
144 | self.assertMatches('...Total Amount Authorized:...', |
---|
145 | self.browser.contents) |
---|
146 | self.assertEqual(self.student.current_mode, 'ug_ft') |
---|
147 | self.assertMatches( |
---|
148 | '...<input type="hidden" name="amount" value="87600" />...', |
---|
149 | self.browser.contents) |
---|
150 | delta = timedelta(days=8) |
---|
151 | acc_payment.creation_date -= delta |
---|
152 | self.browser.open(self.payments_path + '/xyz') |
---|
153 | self.browser.getLink("Pay via Interswitch", index=0).click() |
---|
154 | self.assertMatches( |
---|
155 | '...This payment ticket is too old. Please create a new ticket...', |
---|
156 | self.browser.contents) |
---|
157 | delta = timedelta(days=2) |
---|
158 | acc_payment.creation_date += delta |
---|
159 | self.browser.open(self.payments_path + '/xyz') |
---|
160 | self.browser.getLink("Pay via Interswitch", index=0).click() |
---|
161 | self.assertMatches('...Total Amount Authorized:...', |
---|
162 | self.browser.contents) |
---|
163 | |
---|
164 | @external_test |
---|
165 | def test_webservice(self): |
---|
166 | self.browser.addHeader('Authorization', 'Basic mgr:mgrpw') |
---|
167 | self.browser.open(self.payments_path) |
---|
168 | IWorkflowState(self.student).setState('cleared') |
---|
169 | self.student.nationality = u'NG' |
---|
170 | self.browser.open(self.payments_path + '/addop') |
---|
171 | self.browser.getControl(name="form.p_category").value = ['schoolfee'] |
---|
172 | self.browser.getControl("Create ticket").click() |
---|
173 | self.assertMatches('...ticket created...', |
---|
174 | self.browser.contents) |
---|
175 | ctrl = self.browser.getControl(name='val_id') |
---|
176 | self.value = ctrl.options[0] |
---|
177 | self.browser.getLink(self.value).click() |
---|
178 | self.payment_url = self.browser.url |
---|
179 | # First we have open InterswitchPageStudent to set provider_amt |
---|
180 | # and gateway_amt |
---|
181 | self.browser.open(self.payment_url + '/goto_interswitch') |
---|
182 | # Now we can call the webservice |
---|
183 | self.browser.open(self.payment_url + '/request_webservice') |
---|
184 | self.assertMatches('...Unsuccessful callback...', |
---|
185 | self.browser.contents) |
---|
186 | # The payment is now in state failed ... |
---|
187 | self.assertMatches('...<span>Failed</span>...', |
---|
188 | self.browser.contents) |
---|
189 | # ... and the catalog has been updated |
---|
190 | cat = getUtility(ICatalog, name='payments_catalog') |
---|
191 | results = list( |
---|
192 | cat.searchResults(p_state=('failed', 'failed'))) |
---|
193 | self.assertEqual(len(results), 1) |
---|
194 | self.assertEqual(results[0].p_state, 'failed') |
---|
195 | |
---|
196 | # Let's replace the p_id with a valid p_id of the Uniben |
---|
197 | # live system. This is definitely not an appropriate |
---|
198 | # solution for testing, but we have no choice since |
---|
199 | # Interswitch doesn't provide any interface |
---|
200 | # for testing. |
---|
201 | payment = self.student['payments'][self.value] |
---|
202 | payment.p_id = 'p3547789850240' |
---|
203 | self.browser.open(self.payment_url + '/request_webservice') |
---|
204 | self.assertMatches('...Callback amount does not match...', |
---|
205 | self.browser.contents) |
---|
206 | # The payment is now in state failed ... |
---|
207 | self.assertMatches('...<span>Failed</span>...', |
---|
208 | self.browser.contents) |
---|
209 | # Let's replace the amount autorized with the amount of the |
---|
210 | # live system payment |
---|
211 | payment.amount_auth = payment.r_amount_approved |
---|
212 | self.browser.open(self.payment_url + '/request_webservice') |
---|
213 | self.assertMatches('...Successful payment...', |
---|
214 | self.browser.contents) |
---|
215 | # The payment is now in state paid ... |
---|
216 | self.assertMatches('...<span>Paid</span>...', |
---|
217 | self.browser.contents) |
---|
218 | # ... and the catalog has been updated |
---|
219 | cat = getUtility(ICatalog, name='payments_catalog') |
---|
220 | results = list( |
---|
221 | cat.searchResults(p_state=('paid', 'paid'))) |
---|
222 | self.assertEqual(len(results), 1) |
---|
223 | self.assertEqual(results[0].p_state, 'paid') |
---|
224 | # Approval is logged in students.log ... |
---|
225 | logfile = os.path.join( |
---|
226 | self.app['datacenter'].storage, 'logs', 'students.log') |
---|
227 | logcontent = open(logfile).read() |
---|
228 | self.assertTrue( |
---|
229 | 'zope.mgr - ' |
---|
230 | 'kofacustom.edopoly.interswitch.browser.CustomInterswitchPaymentRequestWebservicePageStudent - ' |
---|
231 | 'X1000000 - successful schoolfee payment: p3547789850240\n' |
---|
232 | in logcontent) |
---|
233 | # ... and in payments.log |
---|
234 | logfile = os.path.join( |
---|
235 | self.app['datacenter'].storage, 'logs', 'payments.log') |
---|
236 | logcontent = open(logfile).read() |
---|
237 | self.assertTrue( |
---|
238 | '"zope.mgr",X1000000,p3547789850240,schoolfee,' |
---|
239 | '12000.0,00,0.0,150.0,0.0,,,\n' |
---|
240 | in logcontent) |
---|
241 | |
---|
242 | |
---|
243 | class InterswitchTestsApplicants(ApplicantsFullSetup): |
---|
244 | """Tests for the Interswitch payment gateway. |
---|
245 | """ |
---|
246 | |
---|
247 | layer = FunctionalLayer |
---|
248 | |
---|
249 | def setUp(self): |
---|
250 | super(InterswitchTestsApplicants, self).setUp() |
---|
251 | configuration = SessionConfiguration() |
---|
252 | configuration.academic_session = datetime.now().year - 2 |
---|
253 | self.app['configuration'].addSessionConfiguration(configuration) |
---|
254 | self.configuration = configuration |
---|
255 | self.browser.addHeader('Authorization', 'Basic mgr:mgrpw') |
---|
256 | self.browser.open(self.manage_path) |
---|
257 | #IWorkflowState(self.student).setState('started') |
---|
258 | super(InterswitchTestsApplicants, self).fill_correct_values() |
---|
259 | self.applicantscontainer.application_fee = 1000.0 |
---|
260 | self.browser.getControl(name="form.nationality").value = ['NG'] |
---|
261 | self.browser.getControl(name="transition").value = ['start'] |
---|
262 | self.browser.getControl("Save").click() |
---|
263 | self.browser.getControl("Add online").click() |
---|
264 | self.assertMatches('...ticket created...', |
---|
265 | self.browser.contents) |
---|
266 | #ctrl = self.browser.getControl(name='val_id') |
---|
267 | #value = ctrl.options[0] |
---|
268 | #self.browser.getLink(value).click() |
---|
269 | self.assertMatches('...Amount Authorized...', |
---|
270 | self.browser.contents) |
---|
271 | self.assertMatches( |
---|
272 | '...<span>1000.0</span>...', |
---|
273 | self.browser.contents) |
---|
274 | self.payment_url = self.browser.url |
---|
275 | |
---|
276 | |
---|
277 | def test_interswitch_form(self): |
---|
278 | # Manager can access InterswitchForm |
---|
279 | self.browser.getLink("Pay via Interswitch", index=0).click() |
---|
280 | self.assertMatches('...Total Amount Authorized:...', |
---|
281 | self.browser.contents) |
---|
282 | self.assertMatches( |
---|
283 | '...<input type="hidden" name="amount" value="100000" />...', |
---|
284 | self.browser.contents) |
---|
285 | delta = timedelta(days=8) |
---|
286 | self.applicant.values()[0].creation_date -= delta |
---|
287 | self.browser.open(self.payment_url) |
---|
288 | self.browser.getLink("Pay via Interswitch", index=0).click() |
---|
289 | self.assertMatches( |
---|
290 | '...This payment ticket is too old. Please create a new ticket...', |
---|
291 | self.browser.contents) |
---|
292 | |
---|
293 | @external_test |
---|
294 | def test_webservice(self): |
---|
295 | |
---|
296 | self.browser.open(self.payment_url + '/request_webservice') |
---|
297 | self.assertMatches('...Unsuccessful callback...', |
---|
298 | self.browser.contents) |
---|
299 | # The payment is now in state failed |
---|
300 | self.assertMatches('...<span>Failed</span>...', |
---|
301 | self.browser.contents) |
---|