source: main/waeup.futminna/trunk/src/waeup/futminna/interswitch/tests.py @ 8907

Last change on this file since 8907 was 8619, checked in by Henrik Bettermann, 12 years ago

Replace uniben by futminna.

  • Property svn:keywords set to Id
File size: 6.7 KB
RevLine 
[7894]1## $Id: tests.py 8619 2012-06-03 17:56:05Z 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##
18from hurry.workflow.interfaces import IWorkflowState
19from waeup.kofa.students.tests.test_browser import StudentsFullSetup
[8266]20from waeup.kofa.applicants.tests.test_browser import ApplicantsFullSetup
21from waeup.kofa.configuration import SessionConfiguration
[8619]22from waeup.futminna.testing import FunctionalLayer
[7894]23
[7970]24# Also run tests that send requests to external servers?
25#   If you enable this, please make sure the external services
26#   do exist really and are not bothered by being spammed by a test programme.
[8271]27EXTERNAL_TESTS = False
[7970]28
29def external_test(func):
30    if not EXTERNAL_TESTS:
31        myself = __file__
32        if myself.endswith('.pyc'):
33            myself = myself[:-2]
34        print "WARNING: external tests are skipped!"
35        print "WARNING: edit %s to enable them." % myself
36        return
37    return func
38
39
[8266]40class InterswitchTestsStudents(StudentsFullSetup):
[7929]41    """Tests for the Interswitch payment gateway.
[7894]42    """
43
44    layer = FunctionalLayer
45
[7970]46    def setUp(self):
[8266]47        super(InterswitchTestsStudents, self).setUp()
[7970]48        self.browser.addHeader('Authorization', 'Basic mgr:mgrpw')
[7995]49        self.browser.open(self.payments_path)
[7970]50        IWorkflowState(self.student).setState('cleared')
[7995]51        self.browser.open(self.payments_path + '/addop')
[7970]52        self.browser.getControl("Create ticket").click()
53        self.assertMatches('...ticket created...',
54                           self.browser.contents)
55        ctrl = self.browser.getControl(name='val_id')
56        value = ctrl.options[0]
57        self.browser.getLink(value).click()
58        self.assertMatches('...Amount Authorized...',
59                           self.browser.contents)
[8266]60        self.assertMatches(
61            '...<span>40000.0</span>...',
62            self.browser.contents)
[7970]63        self.payment_url = self.browser.url
64
65
[8263]66#    def callback_url(self, payment_url, resp, apprAmt):
67#        return payment_url + (
68#            '/isw_callback?echo=' +
69#            '&resp=%s' +
70#            '&desc=Something went wrong' +
71#            '&txnRef=p1331792385335' +
72#            '&payRef=' + '&retRef=' +
73#            '&cardNum=0' +
74#            '&apprAmt=%s' +
75#            '&url=http://xyz') % (resp, apprAmt)
[7894]76
[7970]77    def test_interswitch_form(self):
[7894]78
79        # Manager can access InterswitchForm
80        self.browser.getLink("CollegePAY", index=0).click()
81        self.assertMatches('...Total Amount Authorized:...',
82                           self.browser.contents)
[8266]83        # The total amount to be processed by Interswitch
84        # has been reduced by the Interswitch fee of 150 Nairas
[7894]85        self.assertMatches(
[8276]86            '...<input type="hidden" name="amount" value="4000000.0" />...',
[7894]87            self.browser.contents)
88
[8263]89#    @external_test
90#    def test_callback(self):
[7970]91
[7894]92        # Manager can call callback manually
[8263]93#        self.browser.open(self.callback_url(self.payment_url, 'XX', '300'))
94#        self.assertMatches('...Unsuccessful callback: Something went wrong...',
95#                          self.browser.contents)
96#        self.assertMatches('...Failed...',
97#                           self.browser.contents)
98#        self.browser.open(self.payment_url + '/isw_callback')
99#        self.assertMatches('...Unsuccessful callback: Incomplete query string...',
100#                          self.browser.contents)
101#        self.assertMatches('...Failed...',
102#                           self.browser.contents)
103#        self.browser.open(self.callback_url(self.payment_url, '00', '300000'))
104#        self.assertMatches('...Wrong amount...',
105#                          self.browser.contents)
106#        self.browser.open(self.callback_url(self.payment_url, '00', '4000000'))
107#        self.assertMatches('...Valid callback received...',
108#                          self.browser.contents)
[7930]109
[7970]110    @external_test
[7930]111    def test_webservice(self):
112
[7970]113        self.browser.open(self.payment_url + '/request_webservice')
[7930]114        self.assertMatches('...Unsuccessful callback...',
115                          self.browser.contents)
[8266]116        # The payment is now in state failed
117        self.assertMatches('...<span>Failed</span>...',
118                          self.browser.contents)
119
120class InterswitchTestsApplicants(ApplicantsFullSetup):
121    """Tests for the Interswitch payment gateway.
122    """
123
124    layer = FunctionalLayer
125
126    def setUp(self):
127        super(InterswitchTestsApplicants, self).setUp()
128        self.browser.addHeader('Authorization', 'Basic mgr:mgrpw')
129        self.browser.open(self.manage_path)
130        #IWorkflowState(self.student).setState('started')
131        super(InterswitchTestsApplicants, self).fill_correct_values()
[8526]132        self.applicantscontainer.application_fee = 1000.0
[8266]133        self.browser.getControl(name="transition").value = ['start']
134        self.browser.getControl("Save").click()
135        self.browser.getControl("Add online").click()
136        self.assertMatches('...ticket created...',
137                           self.browser.contents)
[8281]138        #ctrl = self.browser.getControl(name='val_id')
139        #value = ctrl.options[0]
140        #self.browser.getLink(value).click()
[8266]141        self.assertMatches('...Amount Authorized...',
142                           self.browser.contents)
143        self.assertMatches(
144            '...<span>1000.0</span>...',
145            self.browser.contents)
146        self.payment_url = self.browser.url
147
148
149    def test_interswitch_form(self):
150
151        # Manager can access InterswitchForm
152        self.browser.getLink("CollegePAY", index=0).click()
153        self.assertMatches('...Total Amount Authorized:...',
154                           self.browser.contents)
155        self.assertMatches(
[8276]156            '...<input type="hidden" name="amount" value="100000.0" />...',
[8266]157            self.browser.contents)
158
159    @external_test
160    def test_webservice(self):
161
162        self.browser.open(self.payment_url + '/request_webservice')
163        self.assertMatches('...Unsuccessful callback...',
164                          self.browser.contents)
165        # The payment is now in state failed
166        self.assertMatches('...<span>Failed</span>...',
167                          self.browser.contents)
Note: See TracBrowser for help on using the repository browser.