## $Id: test_browser.py 10589 2013-09-05 12:35:14Z henrik $ ## ## Copyright (C) 2013 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 ## """ Test the applicant-related UI components. """ from waeup.uniben.testing import FunctionalLayer from waeup.kofa.applicants.tests.test_browser import ApplicantsFullSetup class CustomApplicantUITests(ApplicantsFullSetup): # Tests for uploading/browsing the passport image of appplicants layer = FunctionalLayer def test_applicant_access(self): # Anonymous users can't see the application fee. self.browser.open(self.container_path) self.assertFalse('Application Fee' in self.browser.contents) # Applicants can edit their record self.browser.open(self.login_path) self.login() self.assertTrue( 'You logged in.' in self.browser.contents) self.browser.open(self.edit_path) self.assertTrue(self.browser.url != self.login_path) self.assertEqual(self.browser.headers['Status'], '200 Ok') self.fill_correct_values() self.browser.getControl("Save").click() self.assertMatches('...Form has been saved...', self.browser.contents) # Applicants can't see the application fee. self.browser.open(self.container_path) self.assertFalse('Application Fee' in self.browser.contents) return