source: main/kofacustom.unidel/trunk/src/kofacustom/unidel/students/tests/test_browser.py @ 17556

Last change on this file since 17556 was 17554, checked in by Henrik Bettermann, 13 months ago

Add application type and category.

Add examination clearance slip.

  • Property svn:keywords set to Id
File size: 2.7 KB
Line 
1## $Id: test_browser.py 17554 2023-08-22 13:47:07Z 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##
18import os
19import shutil
20import tempfile
21from StringIO import StringIO
22from hurry.workflow.interfaces import IWorkflowState, IWorkflowInfo
23from zope.securitypolicy.interfaces import IPrincipalRoleManager
24from zope.component.hooks import setSite, clearSite
25from zope.component import getUtility, createObject
26from zope.interface import verify
27from zope.event import notify
28from waeup.kofa.authentication import LocalRoleSetEvent
29from waeup.kofa.app import University
30from waeup.kofa.students.tests.test_browser import StudentsFullSetup
31from waeup.kofa.students.accommodation import BedTicket
32from waeup.kofa.testing import FunctionalTestCase
33from waeup.kofa.interfaces import (
34    IExtFileStore, IFileStoreNameChooser)
35from waeup.kofa.browser.tests.test_pdf import samples_dir
36from waeup.kofa.students.interfaces import IStudentsUtils
37from kofacustom.unidel.testing import FunctionalLayer
38
39
40class StudentsContainerUITests(StudentsFullSetup):
41    # Tests for StudentsContainer class views and pages
42
43    layer = FunctionalLayer
44
45    def test_student_examclearance_slip(self):
46        self.certificate.study_mode = 'ug_ft'
47        # Student cant login if their password is not set
48        IWorkflowState(self.student).setState('courses registered')
49        self.browser.open(self.login_path)
50        self.browser.getControl(name="form.login").value = self.student_id
51        self.browser.getControl(name="form.password").value = 'spwd'
52        self.browser.getControl("Login").click()
53        self.assertMatches(
54            '...You logged in...', self.browser.contents)
55        self.browser.getLink("Base Data").click()
56        self.browser.getLink("Download examination clearance slip").click()
57        self.assertEqual(self.browser.headers['Status'], '200 Ok')
58        self.assertEqual(self.browser.headers['Content-Type'], 'application/pdf')
59        path = os.path.join(samples_dir(), 'examclearance_slip.pdf')
60        open(path, 'wb').write(self.browser.contents)
61        print "Sample exampclearance_slip.pdf written to %s" % path
Note: See TracBrowser for help on using the repository browser.