source: main/waeup.uniben/trunk/src/waeup/uniben/interswitch/tests.py @ 12634

Last change on this file since 12634 was 12566, checked in by Henrik Bettermann, 10 years ago

Add new application category and type (ticket #966).

Implement hostel application fee payment (ticket #959). Uniben is still waiting for an agrrement with Interwsicth.

  • Property svn:keywords set to Id
File size: 21.9 KB
RevLine 
[7894]1## $Id: tests.py 12566 2015-02-07 10:25:56Z 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##
[9775]18import os
[10836]19from datetime import datetime
[9713]20from zope.component import createObject, getUtility
21from zope.catalog.interfaces import ICatalog
[7894]22from hurry.workflow.interfaces import IWorkflowState
23from waeup.kofa.students.tests.test_browser import StudentsFullSetup
[8266]24from waeup.kofa.applicants.tests.test_browser import ApplicantsFullSetup
[11787]25from waeup.uniben.configuration import CustomSessionConfiguration
[8020]26from waeup.uniben.testing import FunctionalLayer
[7894]27
[7970]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.
[9831]31EXTERNAL_TESTS = False
[7970]32
[11728]33SAMPLE_IMAGE = os.path.join(os.path.dirname(__file__), 'test_image.jpg')
34
[7970]35def external_test(func):
36    if not EXTERNAL_TESTS:
37        myself = __file__
38        if myself.endswith('.pyc'):
39            myself = myself[:-2]
40        print "WARNING: external tests are skipped!"
41        print "WARNING: edit %s to enable them." % myself
42        return
43    return func
44
45
[8266]46class InterswitchTestsStudents(StudentsFullSetup):
[7929]47    """Tests for the Interswitch payment gateway.
[7894]48    """
49
50    layer = FunctionalLayer
51
[7970]52    def setUp(self):
[8266]53        super(InterswitchTestsStudents, self).setUp()
[7970]54        self.browser.addHeader('Authorization', 'Basic mgr:mgrpw')
[7995]55        self.browser.open(self.payments_path)
[7970]56        IWorkflowState(self.student).setState('cleared')
[9006]57        self.student.nationality = u'NG'
[7995]58        self.browser.open(self.payments_path + '/addop')
[9384]59        self.browser.getControl(name="form.p_category").value = ['schoolfee']
[7970]60        self.browser.getControl("Create ticket").click()
[9435]61        self.assertMatches('...ticket created...',
62                           self.browser.contents)
63        ctrl = self.browser.getControl(name='val_id')
[9775]64        self.value = ctrl.options[0]
65        self.browser.getLink(self.value).click()
[9435]66        self.assertMatches('...Amount Authorized...',
67                           self.browser.contents)
68        self.assertMatches(
69            '...<span>40000.0</span>...',
70            self.browser.contents)
71        self.payment_url = self.browser.url
[7970]72
[8263]73#    def callback_url(self, payment_url, resp, apprAmt):
74#        return payment_url + (
75#            '/isw_callback?echo=' +
76#            '&resp=%s' +
77#            '&desc=Something went wrong' +
78#            '&txnRef=p1331792385335' +
79#            '&payRef=' + '&retRef=' +
80#            '&cardNum=0' +
81#            '&apprAmt=%s' +
82#            '&url=http://xyz') % (resp, apprAmt)
[7894]83
[7970]84    def test_interswitch_form(self):
[7894]85        # Manager can access InterswitchForm
86        self.browser.getLink("CollegePAY", index=0).click()
[8266]87        # The total amount to be processed by Interswitch
88        # has been reduced by the Interswitch fee of 150 Nairas
[9389]89        self.assertMatches('...<input type="hidden" name="pay_item_id" value="5700" />...',
90                           self.browser.contents)
[9384]91        self.assertMatches('...Total Amount Authorized:...',
92                           self.browser.contents)
[9460]93        self.assertEqual(self.student.current_mode, 'ug_ft')
[7894]94        self.assertMatches(
[11771]95            '...<input type="hidden" name="amount" value="4000000" />...',
[7894]96            self.browser.contents)
[9384]97        self.assertMatches(
[9460]98            '...item_name="School Fee" item_amt="3835000" bank_id="8" acct_num="2017506430"...',
[9384]99            self.browser.contents)
100        self.assertMatches(
101            '...item_name="BT Education" item_amt="150000" bank_id="117" acct_num="1010764827"...',
102            self.browser.contents)
[7894]103
[9520]104        # Create school fee ticket for returning students. Payment is made
105        # for next session.
106        current_payment_key = self.student['payments'].keys()[0]
[9389]107        self.certificate.study_mode = u'ug_pt'
108        IWorkflowState(self.student).setState('returning')
109        configuration = createObject('waeup.SessionConfiguration')
110        configuration.academic_session = 2005
111        self.app['configuration'].addSessionConfiguration(configuration)
[9384]112        self.browser.open(self.payments_path + '/addop')
[9389]113        self.browser.getControl(name="form.p_category").value = ['schoolfee']
[9384]114        self.browser.getControl("Create ticket").click()
[9570]115
116        ## Next session payment can't be made ...
117        #self.assertMatches(
118        #    '...You have not yet paid your current/active session...',
119        #    self.browser.contents)
120        ## current session payment must be approved first.
121        #self.student['payments'][current_payment_key].approve()
122        #self.browser.open(self.payments_path + '/addop')
123        #self.browser.getControl(name="form.p_category").value = ['schoolfee']
124        #self.browser.getControl("Create ticket").click()
125
[9384]126        ctrl = self.browser.getControl(name='val_id')
127        value = ctrl.options[1]
[9775]128        self.assertEqual(self.student['payments'][value].provider_amt, 0.0)
129        self.assertEqual(self.student['payments'][value].gateway_amt, 0.0)
[9384]130        self.browser.getLink(value).click()
[9389]131        self.browser.getLink("CollegePAY", index=0).click()
[9775]132        # Split amounts have been set.
133        self.assertEqual(self.student['payments'][value].provider_amt, 1500.0)
134        self.assertEqual(self.student['payments'][value].gateway_amt, 150.0)
[9389]135        self.assertMatches('...<input type="hidden" name="pay_item_id" value="5701" />...',
[9384]136                           self.browser.contents)
137        self.assertMatches(
[11771]138            '...<input type="hidden" name="amount" value="2000000" />...',
[9389]139            self.browser.contents)
140        self.assertMatches(
[9460]141            '...item_name="School Fee" item_amt="1835000" bank_id="16" acct_num="0122009929"...',
[9389]142            self.browser.contents)
143        self.assertMatches(
144            '...item_name="BT Education" item_amt="150000" bank_id="117" acct_num="1010764827"...',
145            self.browser.contents)
146
147        # Create clearance fee ticket
[10902]148        #self.browser.open(self.payments_path + '/addop')
149        #self.browser.getControl(name="form.p_category").value = ['clearance']
150        #self.browser.getControl("Create ticket").click()
151        #ctrl = self.browser.getControl(name='val_id')
152        #value = ctrl.options[2]
153        #self.browser.getLink(value).click()
154        #self.assertMatches(
155        #    '...<span>45000.0</span>...',
156        #    self.browser.contents)
157        ## Manager can access InterswitchForm
158        #self.browser.getLink("CollegePAY", index=0).click()
159        #self.assertEqual(self.student['payments'][value].provider_amt, 1500.0)
160        #self.assertEqual(self.student['payments'][value].gateway_amt, 150.0)
161        #self.assertMatches('...<input type="hidden" name="pay_item_id" value="5702" />...',
162        #                   self.browser.contents)
163        #self.assertMatches('...Total Amount Authorized:...',
164        #                   self.browser.contents)
165        #self.assertMatches(
166        #    '...<input type="hidden" name="amount" value="4500000.0" />...',
167        #    self.browser.contents)
168        #self.assertMatches(
169        #    '...item_name="Acceptance Fee" item_amt="4335000" bank_id="7" acct_num="1003475516"...',
170        #    self.browser.contents)
171        #self.assertMatches(
172        #    '...item_name="BT Education" item_amt="150000" bank_id="117" acct_num="1010764827"...',
173        #    self.browser.contents)
[9384]174
[9515]175        # Create gown fee ticket
176        configuration.maint_fee = 987.0
177        self.app['configuration']['2004'].gown_fee = 234.0
178        self.browser.open(self.payments_path + '/addop')
179        self.browser.getControl(name="form.p_category").value = ['gown']
180        self.browser.getControl("Create ticket").click()
181        ctrl = self.browser.getControl(name='val_id')
[10902]182        value = ctrl.options[2]
[9515]183        self.browser.getLink(value).click()
184        self.assertMatches(
185            '...<span>234.0</span>...',
186            self.browser.contents)
187        # Manager can access InterswitchForm
188        self.browser.getLink("CollegePAY", index=0).click()
[9775]189        self.assertEqual(self.student['payments'][value].provider_amt, 0.0)
190        self.assertEqual(self.student['payments'][value].gateway_amt, 150.0)
[9515]191        self.assertMatches('...<input type="hidden" name="pay_item_id" value="5704" />...',
192                           self.browser.contents)
193        self.assertMatches('...Total Amount Authorized:...',
194                           self.browser.contents)
195        self.assertMatches(
[11771]196            '...<input type="hidden" name="amount" value="23400" />...',
[9515]197            self.browser.contents)
198        self.assertMatches(
[11478]199            '...<item_detail item_id="1" item_name="Gown Hire Fee" item_amt="8400" bank_id="16" acct_num="0122011401" />...',
[9515]200            self.browser.contents)
201        self.assertFalse(
202            'item_name="BT Education"' in self.browser.contents)
[9384]203
[12566]204        # Create hostel application ticket
205        self.browser.open(self.payments_path + '/addop')
206        self.browser.getControl(name="form.p_category").value = ['hostel_application']
207        self.browser.getControl("Create ticket").click()
208        ctrl = self.browser.getControl(name='val_id')
209        value = ctrl.options[3]
210        self.browser.getLink(value).click()
211        self.assertMatches(
212            '...<span>1000.0</span>...',
213            self.browser.contents)
214        self.student['payments'][value].approve()
215
[9727]216        # Create temp maint fee ticket
217        self.browser.open(self.payments_path + '/addop')
218        self.browser.getControl(name="form.p_category").value = ['tempmaint_1']
219        self.browser.getControl("Create ticket").click()
220        ctrl = self.browser.getControl(name='val_id')
[12566]221        value = ctrl.options[4]
[9727]222        self.browser.getLink(value).click()
223        self.assertMatches(
[9728]224            '...<span>8150.0</span>...',
[9727]225            self.browser.contents)
226        # Manager can access InterswitchForm
227        self.browser.getLink("CollegePAY", index=0).click()
[9775]228        self.assertEqual(self.student['payments'][value].provider_amt, 0.0)
229        self.assertEqual(self.student['payments'][value].gateway_amt, 150.0)
[9727]230        self.assertMatches('...<input type="hidden" name="pay_item_id" value="5705" />...',
231                           self.browser.contents)
232        self.assertMatches('...Total Amount Authorized:...',
233                           self.browser.contents)
234        self.assertMatches(
[11771]235            '...<input type="hidden" name="amount" value="815000" />...',
[9727]236            self.browser.contents)
237        self.assertMatches(
[12566]238            '...<item_detail item_id="1" item_name="Hostel Maintenance Fee" item_amt="800000" bank_id="129" acct_num="0014419432" />...',
[9727]239            self.browser.contents)
[9728]240        self.assertFalse(
241            'item_name="BT Education"' in self.browser.contents)
[9727]242
[9863]243        # Create previous session fee ticket
244        configuration = createObject('waeup.SessionConfiguration')
245        configuration.academic_session = 2003
246        configuration.clearance_fee = 3456.0
247        self.app['configuration'].addSessionConfiguration(configuration)
248        self.student['studycourse'].entry_session = 2002
[10902]249        #self.browser.open(self.payments_path + '/addpp')
250        #self.browser.getControl(name="form.p_category").value = ['clearance']
251        #self.browser.getControl(name="form.p_session").value = ['2003']
252        #self.browser.getControl(name="form.p_level").value = ['300']
253        #self.browser.getControl("Create ticket").click()
254        #ctrl = self.browser.getControl(name='val_id')
255        #value = ctrl.options[5]
256        #self.browser.getLink(value).click()
257        #self.assertMatches(
258        #    '...<span>45000.0</span>...',
259        #    self.browser.contents)
260        ## Manager can access InterswitchForm
261        #self.browser.getLink("CollegePAY", index=0).click()
262        #self.assertEqual(self.student['payments'][value].provider_amt, 1500.0)
263        #self.assertEqual(self.student['payments'][value].gateway_amt, 150.0)
264        #self.assertMatches('...<input type="hidden" name="pay_item_id" value="5702" />...',
265        #                   self.browser.contents)
266        #self.assertMatches('...Total Amount Authorized:...',
267        #                   self.browser.contents)
268        ##self.assertMatches(
269        #    '...<input type="hidden" name="amount" value="4500000.0" />...',
270        #    self.browser.contents)
271        #self.assertMatches(
272        #    '...<item_detail item_id="1" item_name="Acceptance Fee" item_amt="4335000" bank_id="7" acct_num="1003475516" />...',
273        #    self.browser.contents)
[9863]274
[9869]275        # Create balance payment ticket
276        self.browser.open(self.payments_path + '/addbp')
277        self.browser.getControl(name="form.p_category").value = ['schoolfee']
278        self.browser.getControl(name="form.balance_session").value = ['2003']
279        self.browser.getControl(name="form.balance_level").value = ['300']
280        self.browser.getControl(name="form.balance_amount").value = '200'
281        self.browser.getControl("Create ticket").click()
282        ctrl = self.browser.getControl(name='val_id')
[12566]283        value = ctrl.options[5]
[9869]284        self.browser.getLink(value).click()
285        self.assertMatches(
286            '...<span>200.0</span>...',
287            self.browser.contents)
288        # Manager can access InterswitchForm
289        self.browser.getLink("CollegePAY", index=0).click()
290        self.assertEqual(self.student['payments'][value].provider_amt, 0.0)
291        self.assertEqual(self.student['payments'][value].gateway_amt, 150.0)
292        self.assertMatches('...<input type="hidden" name="pay_item_id" value="5701" />...',
293                           self.browser.contents)
294        self.assertMatches(
[11771]295            '...<input type="hidden" name="amount" value="20000" />...',
[9869]296            self.browser.contents)
297        self.assertMatches(
298            '...item_name="School Fee" item_amt="5000" bank_id="16" acct_num="0122009929"...',
299            self.browser.contents)
300        self.assertFalse(
301            'item_name="BT Education"' in self.browser.contents)
[9863]302
[8263]303#    @external_test
304#    def test_callback(self):
[7970]305
[7894]306        # Manager can call callback manually
[8263]307#        self.browser.open(self.callback_url(self.payment_url, 'XX', '300'))
308#        self.assertMatches('...Unsuccessful callback: Something went wrong...',
309#                          self.browser.contents)
310#        self.assertMatches('...Failed...',
311#                           self.browser.contents)
312#        self.browser.open(self.payment_url + '/isw_callback')
313#        self.assertMatches('...Unsuccessful callback: Incomplete query string...',
314#                          self.browser.contents)
315#        self.assertMatches('...Failed...',
316#                           self.browser.contents)
317#        self.browser.open(self.callback_url(self.payment_url, '00', '300000'))
318#        self.assertMatches('...Wrong amount...',
319#                          self.browser.contents)
320#        self.browser.open(self.callback_url(self.payment_url, '00', '4000000'))
321#        self.assertMatches('...Valid callback received...',
322#                          self.browser.contents)
[7930]323
[11645]324    def test_pay_twice(self):
325        # Create second ticket
326        self.browser.open(self.payments_path + '/addop')
327        self.browser.getControl(name="form.p_category").value = ['schoolfee']
328        self.browser.getControl("Create ticket").click()
329        # Pay first ticket
330        self.student['payments'][self.value].approve()
331        # Try to pay second ticket
332        self.browser.open(self.payments_path)
333        ctrl = self.browser.getControl(name='val_id')
334        value = ctrl.options[1]
335        self.browser.getLink(value).click()
336        self.browser.getLink("CollegePAY", index=0).click()
337        self.assertMatches(
338            '...alert alert-danger">This type of payment has already been made...',
339            self.browser.contents)
340
[7970]341    @external_test
[7930]342    def test_webservice(self):
[9775]343        # First we have open InterswitchPageStudent to set provider_amt
344        # and gateway_amt
345        self.browser.open(self.payment_url + '/goto_interswitch')
346        # Now we can call the webservice
[7970]347        self.browser.open(self.payment_url + '/request_webservice')
[7930]348        self.assertMatches('...Unsuccessful callback...',
349                          self.browser.contents)
[9713]350        # The payment is now in state failed ...
[8266]351        self.assertMatches('...<span>Failed</span>...',
352                          self.browser.contents)
[9713]353        # ... and the catalog has been updated
354        cat = getUtility(ICatalog, name='payments_catalog')
355        results = list(
356            cat.searchResults(p_state=('failed', 'failed')))
357        self.assertEqual(len(results), 1)
358        self.assertEqual(results[0].p_state, 'failed')
[8266]359
[9775]360        # Let's replace the p_id with a valid p_id of the Uniben
361        # live system. This is definitely not an appropriate
362        # solution for testing, but we have no choice since
363        # Interswitch doesn't provide any interface
364        # for testing.
365        payment = self.student['payments'][self.value]
366        payment.p_id = 'p3547789850240'
367        self.browser.open(self.payment_url + '/request_webservice')
368        self.assertMatches('...Callback amount does not match...',
369                          self.browser.contents)
370        # The payment is now in state failed ...
371        self.assertMatches('...<span>Failed</span>...',
372                          self.browser.contents)
373        # Let's replace the amount autorized with the amount of the
374        # live system payment
375        payment.amount_auth = payment.r_amount_approved
376        self.browser.open(self.payment_url + '/request_webservice')
377        self.assertMatches('...Successful payment...',
378                          self.browser.contents)
379        # The payment is now in state paid ...
380        self.assertMatches('...<span>Paid</span>...',
381                          self.browser.contents)
382        # ... and the catalog has been updated
383        cat = getUtility(ICatalog, name='payments_catalog')
384        results = list(
385            cat.searchResults(p_state=('paid', 'paid')))
386        self.assertEqual(len(results), 1)
387        self.assertEqual(results[0].p_state, 'paid')
388        # Approval is logged in students.log ...
389        logfile = os.path.join(
390            self.app['datacenter'].storage, 'logs', 'students.log')
391        logcontent = open(logfile).read()
392        self.assertTrue(
393            'zope.mgr - '
[11633]394            'waeup.uniben.interswitch.browser.CustomInterswitchPaymentRequestWebservicePageStudent - '
[9775]395            'B1000000 - successful schoolfee payment: p3547789850240\n'
396            in logcontent)
397        # ... and in payments.log
398        logfile = os.path.join(
399            self.app['datacenter'].storage, 'logs', 'payments.log')
400        logcontent = open(logfile).read()
401        self.assertTrue(
402            '"zope.mgr",B1000000,p3547789850240,schoolfee,'
403            '12000.0,00,1500.0,150.0,0.0,,,\n'
404            in logcontent)
405
406
[8266]407class InterswitchTestsApplicants(ApplicantsFullSetup):
408    """Tests for the Interswitch payment gateway.
409    """
410
411    layer = FunctionalLayer
412
413    def setUp(self):
414        super(InterswitchTestsApplicants, self).setUp()
[11787]415        configuration = CustomSessionConfiguration()
[10836]416        configuration.academic_session = datetime.now().year - 2
417        self.app['configuration'].addSessionConfiguration(configuration)
[8266]418        self.browser.addHeader('Authorization', 'Basic mgr:mgrpw')
419        self.browser.open(self.manage_path)
420        #IWorkflowState(self.student).setState('started')
[11728]421        self.applicantscontainer.application_fee = 1000.0
[8266]422        super(InterswitchTestsApplicants, self).fill_correct_values()
[11728]423        self.browser.getControl("Add online").click()
[11752]424        self.assertMatches('...passport photo before making payment...',
[11728]425                           self.browser.contents)
426        self.browser.open(self.manage_path)
427        super(InterswitchTestsApplicants, self).fill_correct_values()
428        #self.browser.getControl(name="form.nationality").value = ['NG']
429        #self.browser.getControl(name="transition").value = ['start']
430        image = open(SAMPLE_IMAGE, 'rb')
431        ctrl = self.browser.getControl(name='form.passport')
432        file_ctrl = ctrl.mech_control
433        file_ctrl.add_file(image, filename='myphoto.jpg')
[8266]434        self.browser.getControl("Save").click()
435        self.browser.getControl("Add online").click()
436        self.assertMatches('...ticket created...',
437                           self.browser.contents)
[8281]438        #ctrl = self.browser.getControl(name='val_id')
439        #value = ctrl.options[0]
440        #self.browser.getLink(value).click()
[10836]441        self.payment_url = self.browser.url
442
443    def test_interswitch_form(self):
[8266]444        self.assertMatches('...Amount Authorized...',
445                           self.browser.contents)
446        self.assertMatches(
447            '...<span>1000.0</span>...',
448            self.browser.contents)
449        # Manager can access InterswitchForm
450        self.browser.getLink("CollegePAY", index=0).click()
451        self.assertMatches('...Total Amount Authorized:...',
452                           self.browser.contents)
453        self.assertMatches(
[11771]454            '...<input type="hidden" name="amount" value="100000" />...',
[8266]455            self.browser.contents)
456
457    @external_test
458    def test_webservice(self):
459
460        self.browser.open(self.payment_url + '/request_webservice')
461        self.assertMatches('...Unsuccessful callback...',
462                          self.browser.contents)
463        # The payment is now in state failed
464        self.assertMatches('...<span>Failed</span>...',
465                          self.browser.contents)
Note: See TracBrowser for help on using the repository browser.