## $Id: tests.py 7897 2012-03-16 09:51:50Z henrik $ ## ## Copyright (C) 2011 Uli Fouquet & Henrik Bettermann ## This program is free software; you can redistribute it and/or modify ## it under the terms of the GNU General Public License as published by ## the Free Software Foundation; either version 2 of the License, or ## (at your option) any later version. ## ## This program is distributed in the hope that it will be useful, ## but WITHOUT ANY WARRANTY; without even the implied warranty of ## MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the ## GNU General Public License for more details. ## ## You should have received a copy of the GNU General Public License ## along with this program; if not, write to the Free Software ## Foundation, Inc., 59 Temple Place, Suite 330, Boston, MA 02111-1307 USA ## from hurry.workflow.interfaces import IWorkflowState from waeup.kofa.students.tests.test_browser import StudentsFullSetup from waeup.custom.testing import FunctionalLayer class StudentUITests(StudentsFullSetup): """Tests for customized student class views and pages """ layer = FunctionalLayer def callback_url(self, payment_url, resp, apprAmt): return payment_url + ( '/callback?echo=' + '&resp=%s' + '&desc=Something went wrong' + '&txnRef=p1331792385335' + '&payRef=' + '&retRef=' + '&cardNum=0' + '&apprAmt=%s' + '&url=http://xyz') % (resp, apprAmt) def test_manage_payments(self): # Managers can add online payment tickets self.browser.addHeader('Authorization', 'Basic mgr:mgrpw') self.browser.open(self.payments_student_path) IWorkflowState(self.student).setState('cleared') self.browser.open(self.payments_student_path + '/addop') self.browser.getControl("Create ticket").click() self.assertMatches('...ticket created...', self.browser.contents) ctrl = self.browser.getControl(name='val_id') value = ctrl.options[0] self.browser.getLink(value).click() self.assertMatches('...Amount Authorized...', self.browser.contents) payment_url = self.browser.url # Manager can access InterswitchForm self.browser.getLink("CollegePAY", index=0).click() self.assertMatches('...Total Amount Authorized:...', self.browser.contents) self.assertMatches( '......', self.browser.contents) # Manager can call callback manually self.browser.open(self.callback_url(payment_url, 'XX', '300')) self.assertMatches('...Unsuccessful callback: Something went wrong...', self.browser.contents) self.assertMatches('...Failed...', self.browser.contents) self.browser.open(payment_url + '/callback') self.assertMatches('...Unsuccessful callback: Incomplete query string...', self.browser.contents) self.assertMatches('...Failed...', self.browser.contents) self.browser.open(self.callback_url(payment_url, '00', '300')) self.assertMatches('...Wrong amount...', self.browser.contents) self.browser.open(self.callback_url(payment_url, '00', '40000')) self.assertMatches('...Valid callback received...', self.browser.contents)