source: main/waeup.uniben/trunk/src/waeup/uniben/students/tests/test_browser.py @ 9731

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

Setup SELECTABLE_PAYMENT_CATEGORIES dictionary. Uniben students must not see the regular maintenance fee button.

  • Property svn:keywords set to Id
File size: 33.5 KB
Line 
1## $Id: test_browser.py 9731 2012-11-27 15:02:34Z 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.students.interfaces import IStudentsUtils
36from waeup.uniben.testing import FunctionalLayer
37
38
39class StudentProcessorTest(FunctionalTestCase):
40    """Perform some batching tests.
41    """
42
43    layer = FunctionalLayer
44
45    def setUp(self):
46        super(StudentProcessorTest, self).setUp()
47        # Setup a sample site for each test
48        app = University()
49        self.dc_root = tempfile.mkdtemp()
50        app['datacenter'].setStoragePath(self.dc_root)
51
52        # Prepopulate the ZODB...
53        self.getRootFolder()['app'] = app
54        # we add the site immediately after creation to the
55        # ZODB. Catalogs and other local utilities are not setup
56        # before that step.
57        self.app = self.getRootFolder()['app']
58        # Set site here. Some of the following setup code might need
59        # to access grok.getSite() and should get our new app then
60        setSite(app)
61
62
63    def tearDown(self):
64        super(StudentProcessorTest, self).tearDown()
65        shutil.rmtree(self.workdir)
66        shutil.rmtree(self.dc_root)
67        clearSite()
68        return
69
70class StudentUITests(StudentsFullSetup):
71    """Tests for customized student class views and pages
72    """
73
74    layer = FunctionalLayer
75
76    def setUp(self):
77        super(StudentUITests, self).setUp()
78
79        bedticket = BedTicket()
80        bedticket.booking_session = 2004
81        bedticket.bed_type = u'any bed type'
82        bedticket.bed = self.app['hostels']['hall-1']['hall-1_A_101_A']
83        bedticket.bed_coordinates = u'My bed coordinates'
84        self.student['accommodation'].addBedTicket(bedticket)
85
86    def test_next_session_allowed(self):
87        # Let's see if next_session_allowed works as expected
88        # A, ug_ft, 100
89        IWorkflowState(self.student).setState('returning')
90        self.assertTrue(self.student['studycourse'].next_session_allowed)
91        # Uniben special PG programmes have the same workflow
92        # as UG students
93        self.certificate.study_mode = 'special_pg_pt'
94        self.assertTrue(self.student['studycourse'].next_session_allowed)
95        IWorkflowState(self.student).setState('school fee paid')
96        self.assertFalse(self.student['studycourse'].next_session_allowed)
97        # Now we convert the certificate into a 'regular
98        # postgraduate certificate ...
99        self.certificate.study_mode = 'pg_ft'
100        # ... and voila next session registration is allowed
101        self.assertTrue(self.student['studycourse'].next_session_allowed)
102
103    def test_manage_access(self):
104        self.browser.addHeader('Authorization', 'Basic mgr:mgrpw')
105        # The student created in the base package is a ug student
106        self.browser.open(self.manage_clearance_path)
107        self.assertMatches('...First Sitting Record...',
108                           self.browser.contents)
109        # There is no pg field in the clearance form
110        self.assertFalse('Second Higher Education Record'
111            in self.browser.contents)
112        # Now we change the study mode ...
113        self.certificate.study_mode = 'pg_ft'
114        self.browser.open(self.clearance_path)
115        # ... and additional pg clearance fields appear
116        self.assertMatches('...Second Higher Education Record...',
117                           self.browser.contents)
118        # But also fields from the ug form are displayed
119        self.assertMatches('...First Sitting Record...',
120                           self.browser.contents)
121        # The same holds for Uniben's special pg students
122        self.certificate.study_mode = 'special_pg_ft'
123        self.browser.open(self.clearance_path)
124        self.assertMatches('...Second Higher Education Record...',
125                           self.browser.contents)
126        self.assertMatches('...First Sitting Record...',
127                           self.browser.contents)
128        self.browser.open(self.student_path + '/clearance_slip.pdf')
129        self.assertEqual(self.browser.headers['Status'], '200 Ok')
130        self.assertEqual(self.browser.headers['Content-Type'],
131                         'application/pdf')
132
133    def test_student_access(self):
134        # Students can edit clearance data
135        IWorkflowState(self.student).setState('clearance started')
136        self.student.clearance_locked = False
137        self.student.nationality = u'NG'
138        file_store = getUtility(IExtFileStore)
139        self.browser.open(self.login_path)
140        self.browser.getControl(name="form.login").value = self.student_id
141        self.browser.getControl(name="form.password").value = 'spwd'
142        self.browser.getControl("Login").click()
143        self.browser.open(self.edit_clearance_path)
144
145        # Clearance can only be requested if all required documents
146        # have been uploaded.
147        self.browser.getControl("Save and request clearance").click()
148        self.assertTrue('No birth certificate uploaded'
149            in self.browser.contents)
150        birth_certificate = 'My birth certificate'
151        file_id = IFileStoreNameChooser(self.student).chooseName(
152            attr="birth_certificate.jpg")
153        file_store.createFile(file_id, StringIO(birth_certificate))
154        self.browser.open(self.edit_clearance_path)
155        self.browser.getControl("Save and request clearance").click()
156
157        self.assertTrue('No guarantor/referee letter uploaded'
158            in self.browser.contents)
159        ref_let = 'My ref let'
160        file_id = IFileStoreNameChooser(self.student).chooseName(
161            attr="ref_let.jpg")
162        file_store.createFile(file_id, StringIO(ref_let))
163        self.browser.open(self.edit_clearance_path)
164        self.browser.getControl("Save and request clearance").click()
165
166        self.assertTrue('No acceptance letter uploaded'
167            in self.browser.contents)
168        acc_let = 'My acc let'
169        file_id = IFileStoreNameChooser(self.student).chooseName(
170            attr="acc_let.jpg")
171        file_store.createFile(file_id, StringIO(acc_let))
172        self.browser.open(self.edit_clearance_path)
173        self.browser.getControl("Save and request clearance").click()
174
175        self.assertTrue('No first sitting result uploaded'
176            in self.browser.contents)
177        fst_sit_scan = 'My first sitting result'
178        file_id = IFileStoreNameChooser(self.student).chooseName(
179            attr="fst_sit_scan.jpg")
180        file_store.createFile(file_id, StringIO(fst_sit_scan))
181        self.browser.open(self.edit_clearance_path)
182        self.browser.getControl("Save and request clearance").click()
183
184        #self.assertTrue('No second sitting result uploaded'
185        #    in self.browser.contents)
186        #scd_sit_scan = 'My second sitting result'
187        #file_id = IFileStoreNameChooser(self.student).chooseName(
188        #    attr="scd_sit_scan.jpg")
189        #file_store.createFile(file_id, StringIO(scd_sit_scan))
190        #self.browser.open(self.edit_clearance_path)
191        #self.browser.getControl("Save and request clearance").click()
192
193        self.assertTrue('No affidavit of non-menbership of secret cults uploaded'
194            in self.browser.contents)
195        secr_cults = 'My non-membership scan'
196        file_id = IFileStoreNameChooser(self.student).chooseName(
197            attr="secr_cults.jpg")
198        file_store.createFile(file_id, StringIO(secr_cults))
199        self.browser.open(self.edit_clearance_path)
200        self.browser.getControl("Save and request clearance").click()
201
202        self.assertTrue('Clearance has been requested'
203            in self.browser.contents)
204
205    def test_manage_payments(self):
206        # Add missing configuration data
207        self.app['configuration']['2004'].gown_fee = 150.0
208        self.app['configuration']['2004'].transfer_fee = 90.0
209        #self.app['configuration']['2004'].clearance_fee = 120.0
210        self.app['configuration']['2004'].booking_fee = 150.0
211        self.app['configuration']['2004'].maint_fee = 180.0
212
213        # Managers can add online payment tickets
214        self.browser.addHeader('Authorization', 'Basic mgr:mgrpw')
215        self.browser.open(self.payments_path)
216        self.browser.getLink("Add current session payment ticket").click()
217        self.browser.getControl("Create ticket").click()
218        self.assertMatches('...Amount could not be determined...',
219                           self.browser.contents)
220        IWorkflowState(self.student).setState('cleared')
221        self.student.nationality = u'NG'
222        self.browser.open(self.payments_path + '/addop')
223        self.browser.getControl(name="form.p_category").value = ['schoolfee']
224        self.browser.getControl("Create ticket").click()
225        self.assertMatches('...ticket created...',
226                           self.browser.contents)
227        ctrl = self.browser.getControl(name='val_id')
228        value = ctrl.options[0]
229        self.browser.getLink(value).click()
230        self.assertMatches('...Amount Authorized...',
231                           self.browser.contents)
232        # Managers can open payment slip
233        self.browser.getLink("Download payment slip").click()
234        self.assertEqual(self.browser.headers['Status'], '200 Ok')
235        self.assertEqual(self.browser.headers['Content-Type'], 'application/pdf')
236        # Set ticket paid
237        ticket = self.student['payments'].items()[0][1]
238        ticket.p_state = 'paid'
239        self.browser.open(self.payments_path + '/addop')
240        self.browser.getControl(name="form.p_category").value = ['schoolfee']
241        self.browser.getControl("Create ticket").click()
242        self.assertMatches('...This type of payment has already been made...',
243                           self.browser.contents)
244        # Remove all payments so that we can add a school fee payment again
245        keys = [i for i in self.student['payments'].keys()]
246        for payment in keys:
247            del self.student['payments'][payment]
248        self.browser.open(self.payments_path + '/addop')
249        self.browser.getControl(name="form.p_category").value = ['schoolfee']
250        self.browser.getControl("Create ticket").click()
251        self.assertMatches('...ticket created...',
252                           self.browser.contents)
253        schoolfee_ticket = self.student['payments'].values()[0]
254        self.browser.open(self.payments_path + '/addop')
255        self.browser.getControl(name="form.p_category").value = ['gown']
256        self.browser.getControl("Create ticket").click()
257        self.assertMatches('...ticket created...',
258                           self.browser.contents)
259        self.browser.open(self.payments_path + '/addop')
260        self.browser.getControl(
261            name="form.p_category").value = ['tempmaint_1']
262        self.browser.getControl("Create ticket").click()
263        self.assertMatches('...ticket created...',
264                           self.browser.contents)
265        self.browser.open(self.payments_path + '/addop')
266        self.browser.getControl(
267            name="form.p_category").value = ['tempmaint_2']
268        self.browser.getControl("Create ticket").click()
269        self.assertMatches('...ticket created...',
270                           self.browser.contents)
271        self.browser.open(self.payments_path + '/addop')
272        self.browser.getControl(
273            name="form.p_category").value = ['tempmaint_3']
274        self.browser.getControl("Create ticket").click()
275        self.assertMatches('...ticket created...',
276                           self.browser.contents)
277        self.browser.open(self.payments_path + '/addop')
278        self.browser.getControl(name="form.p_category").value = ['clearance']
279        self.browser.getControl("Create ticket").click()
280        self.assertMatches('...ticket created...',
281                           self.browser.contents)
282        self.browser.open(self.payments_path + '/addop')
283        self.browser.getControl(name="form.p_category").value = ['schoolfee']
284        self.browser.getControl("Create ticket").click()
285        self.assertMatches('...ticket created...',
286                           self.browser.contents)
287        # In state returning we can add a new school fee ticket since
288        # p_session and p_level is different
289        IWorkflowState(self.student).setState('returning')
290        self.browser.open(self.payments_path + '/addop')
291        self.browser.getControl(name="form.p_category").value = ['schoolfee']
292        self.browser.getControl("Create ticket").click()
293        # Uups, we forgot to add a session configuration for next session
294        self.assertMatches('...Session configuration object is not...',
295                           self.browser.contents)
296        configuration = createObject('waeup.SessionConfiguration')
297        configuration.academic_session = 2005
298        self.app['configuration'].addSessionConfiguration(configuration)
299        self.browser.open(self.payments_path + '/addop')
300        self.browser.getControl(name="form.p_category").value = ['schoolfee']
301        self.browser.getControl("Create ticket").click()
302
303
304        #self.assertMatches('...You have not yet paid your current/active session...',
305        #                   self.browser.contents)
306        ## Ok, let's pay the first schoolfee ticket.
307        #schoolfee_ticket.approve()
308        #self.browser.open(self.payments_path + '/addop')
309        #self.browser.getControl(name="form.p_category").value = ['schoolfee']
310        #self.browser.getControl("Create ticket").click()
311
312
313        self.assertMatches('...ticket created...',
314                           self.browser.contents)
315        # In state admitted school fee can't be determined
316        IWorkflowState(self.student).setState('admitted')
317        self.browser.open(self.payments_path + '/addop')
318        self.browser.getControl(name="form.p_category").value = ['schoolfee']
319        self.browser.getControl("Create ticket").click()
320        self.assertMatches('...Amount could not be determined...',
321                           self.browser.contents)
322
323        # If the session configuration doesn't exist an error message will
324        # be shown. No other requirement is being checked.
325        del self.app['configuration']['2004']
326        self.browser.open(self.payments_path)
327        self.browser.getLink("Add current session payment ticket").click()
328        self.browser.getControl("Create ticket").click()
329        self.assertMatches('...Session configuration object is not...',
330                           self.browser.contents)
331
332    def test_student_course_registration(self):
333        # Uniben students see grade instead of score on all level pages
334        # and on course ticket page.
335        IWorkflowState(self.student).setState('school fee paid')
336        self.browser.open(self.login_path)
337        self.browser.getControl(name="form.login").value = self.student_id
338        self.browser.getControl(name="form.password").value = 'spwd'
339        self.browser.getControl("Login").click()
340        # Now students can add the current study level
341        self.browser.getLink("Study Course").click()
342        self.browser.getLink("Add course list").click()
343        self.assertMatches('...Add current level 100 (Year 1)...',
344                           self.browser.contents)
345        self.browser.getControl("Create course list now").click()
346        # A level with one course ticket was created
347        self.assertEqual(self.student['studycourse']['100'].number_of_tickets, 1)
348        self.student['studycourse']['100']['COURSE1'].score = 55
349        self.browser.getLink("100").click()
350        # GPA has been properly calculated and is shown on the page
351        self.assertTrue('3.0' in self.browser.contents)
352        self.assertEqual(self.student['studycourse']['100'].gpa, 3.0)
353        # Score is not shown but grade
354        self.assertTrue('<th>Grade</th>' in self.browser.contents)
355        self.assertFalse('<th>Score</th>' in self.browser.contents)
356        self.browser.getLink("Edit course list").click()
357        self.assertTrue('<th>Grade</th>' in self.browser.contents)
358        self.assertFalse('<th>Score</th>' in self.browser.contents)
359        self.browser.getLink("COURSE1").click()
360        self.assertFalse('Score' in self.browser.contents)
361        # Students can open the customized pdf course registration slip
362        self.browser.open(self.student_path + '/studycourse/100')
363        self.browser.getLink("Download course registration slip").click()
364        self.assertEqual(self.browser.headers['Status'], '200 Ok')
365        self.assertEqual(self.browser.headers['Content-Type'], 'application/pdf')
366
367    def test_get_returning_data(self):
368        # Student is in level 100, session 2004 with verdict A
369        utils = getUtility(IStudentsUtils)
370        self.assertEqual(utils.getReturningData(self.student),(2005, 200))
371        self.student['studycourse'].current_verdict = 'C'
372        self.assertEqual(utils.getReturningData(self.student),(2005, 110))
373        self.student['studycourse'].current_verdict = 'D'
374        self.assertEqual(utils.getReturningData(self.student),(2005, 100))
375        return
376
377    def test_set_returning_data(self):
378        # Student is in level 100, session 2004 with verdict A
379        utils = getUtility(IStudentsUtils)
380
381        utils.setReturningData(self.student)
382        self.assertEqual(self.student['studycourse'].current_session, 2005)
383        self.assertEqual(self.student['studycourse'].current_level, 200)
384
385        self.student['studycourse'].current_session = 2004
386        self.student['studycourse'].current_level = 100
387        self.student['studycourse'].current_verdict = 'C'
388        utils.setReturningData(self.student)
389        self.assertEqual(self.student['studycourse'].current_session, 2005)
390        self.assertEqual(self.student['studycourse'].current_level, 110)
391
392        self.student['studycourse'].current_session = 2004
393        self.student['studycourse'].current_level = 100
394        self.student['studycourse'].current_verdict = 'D'
395        utils.setReturningData(self.student)
396        self.assertEqual(self.student['studycourse'].current_session, 2005)
397        self.assertEqual(self.student['studycourse'].current_level, 100)
398        return
399
400    def test_set_payment_details(self):
401        self.app['configuration']['2004'].gown_fee = 150.0
402        self.app['configuration']['2004'].transfer_fee = 90.0
403        self.app['configuration']['2004'].booking_fee = 150.0
404        self.app['configuration']['2004'].maint_fee = 180.0
405
406        configuration = createObject('waeup.SessionConfiguration')
407        configuration.academic_session = 2000
408        self.app['configuration'].addSessionConfiguration(configuration)
409        configuration2 = createObject('waeup.SessionConfiguration')
410        configuration2.academic_session = 2002
411        self.app['configuration'].addSessionConfiguration(configuration2)
412        configuration3 = createObject('waeup.SessionConfiguration')
413        configuration3.academic_session = 2003
414        self.app['configuration'].addSessionConfiguration(configuration3)
415        configuration4 = createObject('waeup.SessionConfiguration')
416        configuration4.academic_session = 2005
417        self.app['configuration'].addSessionConfiguration(configuration4)
418        utils = getUtility(IStudentsUtils)
419        self.student['studycourse'].entry_session = 2002
420        self.student.nationality = u'NG'
421
422        error, payment = utils.setPaymentDetails('schoolfee',
423            self.student, None, None)
424        self.assertEqual(payment, None)
425        # Student is in state 'created' and can thus not pay.
426        self.assertTrue(u'Amount could not be determined.' in error)
427
428        # Previous session must be valid.
429        error, payment = utils.setPaymentDetails('schoolfee',
430            self.student, 2000, 300)
431        self.assertEqual(payment, None)
432        self.assertTrue(u'The previous session must not fall below' in error)
433        error, payment = utils.setPaymentDetails('schoolfee',
434            self.student, 2005, 300)
435        self.assertEqual(payment, None)
436        self.assertTrue(u'This is not a previous session' in error)
437
438        # Previous session schoolfee payment; fresh and returning
439        # are distinguished by their entry_level
440        error, payment = utils.setPaymentDetails('schoolfee',
441            self.student, 2002, 300)
442        self.assertEqual(payment.amount_auth, 40000.0)
443        self.assertEqual(payment.p_session, 2002)
444        self.assertEqual(payment.p_level, 300)
445        self.assertFalse(payment.p_current)
446        error, payment = utils.setPaymentDetails('schoolfee',
447            self.student, 2003, 300)
448        self.assertEqual(payment.amount_auth, 20000.0)
449        self.assertEqual(payment.p_session, 2003)
450        self.assertEqual(payment.p_level, 300)
451        self.assertFalse(payment.p_current)
452
453        # Current schoolfee payment; fresh and returning
454        # are distinguished by their state
455        IWorkflowState(self.student).setState('cleared')
456        error, payment = utils.setPaymentDetails('schoolfee',
457            self.student, None, None)
458        self.assertEqual(payment.p_level, 100)
459        self.assertEqual(payment.p_session, 2004)
460        self.assertEqual(payment.amount_auth, 40000.0)
461        self.assertEqual(payment.p_item, u'CERT1')
462        self.assertEqual(error, None)
463        self.assertTrue(payment.p_current)
464
465        # Add penalty fee ...
466        # ... for cleared
467        self.app['configuration']['2004'].penalty_ug = 99.0
468        # ... for returning
469        self.app['configuration']['2005'].penalty_ug = 88.0
470        error, payment = utils.setPaymentDetails('schoolfee',
471            self.student, None, None)
472        self.assertEqual(payment.amount_auth, 40099.0)
473
474        IWorkflowState(self.student).setState('returning')
475
476
477        #error, payment = utils.setPaymentDetails('schoolfee',
478        #    self.student, None, None)
479        #self.assertTrue(
480        #    u'You have not yet paid your current/active session.' in error)
481        ## Ok, that means we have to add paid payment ticket first.
482        #payment = createObject('waeup.StudentOnlinePayment')
483        #payment.p_category = u'schoolfee'
484        #payment.p_session = self.student.current_session
485        #payment.p_item = u'My Certificate'
486        #payment.p_id = u'anyid'
487        #payment.p_state = u'paid'
488        #self.student['payments']['anykey'] = payment
489
490
491        error, payment = utils.setPaymentDetails('schoolfee',
492            self.student, None, None)
493        self.assertEqual(payment.p_level, 200)
494        self.assertEqual(payment.p_session, 2005)
495        self.assertEqual(payment.amount_auth, 20088.0)
496        self.assertEqual(payment.p_item, u'CERT1')
497        self.assertEqual(error, None)
498
499        # Staff members pay less.
500        self.student.is_staff = True
501        error, payment = utils.setPaymentDetails('schoolfee',
502            self.student, None, None)
503        self.assertEqual(payment.p_level, 200)
504        self.assertEqual(payment.p_session, 2005)
505        self.assertEqual(payment.amount_auth, 10088.0)
506        self.assertEqual(payment.p_item, u'CERT1')
507        self.assertEqual(error, None)
508
509        # Foreigners pay more.
510        IWorkflowState(self.student).setState('cleared')
511        self.student.is_staff = False
512        self.student.nationality = u'DE'
513        self.certificate.school_fee_3 = 60000.0
514        error, payment = utils.setPaymentDetails(
515            'schoolfee', self.student, None, None)
516        self.assertEqual(payment.p_level, 100)
517        self.assertEqual(payment.p_session, 2004)
518        self.assertEqual(payment.amount_auth, 60099.0)
519        self.assertEqual(payment.p_item, u'CERT1')
520        self.assertEqual(error, None)
521        IWorkflowState(self.student).setState('returning')
522        self.student.is_staff = False
523        self.certificate.school_fee_4 = 20000.0
524        error, payment = utils.setPaymentDetails(
525            'schoolfee', self.student, None, None)
526        self.assertEqual(payment.p_level, 200)
527        self.assertEqual(payment.p_session, 2005)
528        self.assertEqual(payment.amount_auth, 20088.0)
529        self.assertEqual(payment.p_item, u'CERT1')
530        self.assertEqual(error, None)
531
532        # In Uniben students can pay school fee in all states no matter
533        # if they are ug or pg students.
534        IWorkflowState(self.student).setState('school fee paid')
535        self.student.is_staff = False
536        self.student.nationality = u'NG'
537        self.certificate.school_fee_2 = 10000.0
538        error, payment = utils.setPaymentDetails(
539            'schoolfee', self.student, None, None)
540        self.assertEqual(payment.p_level, None)
541        self.assertEqual(payment.p_session, 2005)
542        self.assertEqual(payment.amount_auth, 10088.0)
543        self.assertEqual(payment.p_item, u'CERT1')
544        self.assertEqual(error, None)
545        IWorkflowState(self.student).setState('courses registered')
546        self.certificate.study_mode = 'special_pg_pt'
547        error, payment = utils.setPaymentDetails(
548            'schoolfee', self.student, None, None)
549        self.assertEqual(payment.p_level, None)
550        self.assertEqual(payment.p_session, 2005)
551        self.assertEqual(payment.amount_auth, 10000.0)
552        self.assertEqual(payment.p_item, u'CERT1')
553        self.assertEqual(error, None)
554        IWorkflowState(self.student).setState('courses validated')
555        error, payment = utils.setPaymentDetails(
556            'schoolfee', self.student, None, None)
557        self.assertEqual(payment.p_level, None)
558        self.assertEqual(payment.p_session, 2005)
559        self.assertEqual(payment.amount_auth, 10000.0)
560        self.assertEqual(payment.p_item, u'CERT1')
561        self.assertEqual(error, None)
562
563        error, payment = utils.setPaymentDetails('clearance',
564            self.student, None, None)
565        self.assertEqual(payment.p_level, 100)
566        self.assertEqual(payment.p_session, 2004)
567        self.assertEqual(payment.amount_auth, 45000.0)
568        self.assertEqual(payment.p_item, u'CERT1')
569        self.assertEqual(error, None)
570
571        error, payment = utils.setPaymentDetails('gown',
572            self.student, None, None)
573        self.assertEqual(payment.p_level, 100)
574        self.assertEqual(payment.p_session, 2004)
575        self.assertEqual(payment.amount_auth, 150.0)
576        self.assertEqual(payment.p_item, u'')
577        self.assertEqual(error, None)
578
579        error, payment = utils.setPaymentDetails('hostel_maintenance',
580            self.student, None, None)
581        self.assertEqual(payment.p_level, 100)
582        self.assertEqual(payment.p_session, 2004)
583        self.assertEqual(payment.amount_auth, 180.0)
584        self.assertEqual(payment.p_item, u'')
585        self.assertEqual(error, None)
586
587        error, payment = utils.setPaymentDetails('bed_allocation',
588            self.student, None, None)
589        self.assertEqual(payment.p_level, 100)
590        self.assertEqual(payment.p_session, 2004)
591        self.assertEqual(payment.amount_auth, 150.0)
592        self.assertEqual(payment.p_item, u'')
593        self.assertEqual(error, None)
594
595        error, payment = utils.setPaymentDetails('tempmaint_1',
596            self.student, None, None)
597        self.assertEqual(payment.p_level, 100)
598        self.assertEqual(payment.p_session, 2004)
599        self.assertEqual(payment.amount_auth, 8150.0)
600        self.assertEqual(payment.p_item, u'Hall 1-4 M/F Ekehuan')
601        self.assertEqual(error, None)
602
603        error, payment = utils.setPaymentDetails('tempmaint_2',
604            self.student, None, None)
605        self.assertEqual(payment.p_level, 100)
606        self.assertEqual(payment.p_session, 2004)
607        self.assertEqual(payment.amount_auth, 12650.0)
608        self.assertEqual(payment.p_item, u'Hall 5 M/F')
609        self.assertEqual(error, None)
610
611        error, payment = utils.setPaymentDetails('tempmaint_3',
612            self.student, None, None)
613        self.assertEqual(payment.p_level, 100)
614        self.assertEqual(payment.p_session, 2004)
615        self.assertEqual(payment.amount_auth, 9650.0)
616        self.assertEqual(payment.p_item, u'Clinical Hostel')
617        self.assertEqual(error, None)
618
619        error, payment = utils.setPaymentDetails('transfer',
620            self.student, None, None)
621        self.assertEqual(payment.p_level, 100)
622        self.assertEqual(payment.p_session, 2004)
623        self.assertEqual(payment.amount_auth, 90.0)
624        self.assertEqual(payment.p_item, u'')
625        self.assertEqual(error, None)
626        return
627
628    def test_edit_level_by_co(self):
629        # Create clearance officer
630        self.app['users'].addUser('mrclear', 'mrclearsecret')
631        self.app['users']['mrclear'].email = 'mrclear@foo.ng'
632        self.app['users']['mrclear'].title = 'Carlo Pitter'
633        # Assign local ClearanceOfficer role
634        department = self.app['faculties']['fac1']['dep1']
635        prmlocal = IPrincipalRoleManager(department)
636        prmlocal.assignRoleToPrincipal('waeup.local.ClearanceOfficer', 'mrclear')
637        notify(LocalRoleSetEvent(
638            department, 'waeup.local.ClearanceOfficer', 'mrclear', granted=True))
639        IWorkflowState(self.student).setState('clearance started')
640        # Login as clearance officer
641        self.browser.open(self.login_path)
642        self.browser.getControl(name="form.login").value = 'mrclear'
643        self.browser.getControl(name="form.password").value = 'mrclearsecret'
644        self.browser.getControl("Login").click()
645        self.assertMatches('...You logged in...', self.browser.contents)
646        # Only in state clearance requested the CO does see the
647        # 'Edit level' button ...
648        self.browser.open(self.studycourse_path)
649        self.assertFalse('Edit level' in self.browser.contents)
650        # ... and can open the edit_level view
651        self.browser.open(self.studycourse_path + '/edit_level')
652        self.assertMatches('...is locked...', self.browser.contents)
653        self.assertEqual(self.browser.url, self.studycourse_path)
654        IWorkflowInfo(self.student).fireTransition('request_clearance')
655        self.browser.open(self.studycourse_path)
656        self.assertTrue('Edit level' in self.browser.contents)
657        self.browser.getLink("Edit level").click()
658        self.browser.getControl(name="form.current_level").value = ['200']
659        self.browser.getControl("Save").click()
660        self.assertMatches('...has been saved...', self.browser.contents)
661        self.assertEqual(self.student.current_level, 200)
662
663    def test_postgraduate_student_access(self):
664        self.certificate.study_mode = 'special_pg_pt'
665        self.certificate.start_level = 700
666        self.certificate.end_level = 800
667        self.student['studycourse'].current_level = 700
668        IWorkflowState(self.student).setState('school fee paid')
669        self.browser.open(self.login_path)
670        self.browser.getControl(name="form.login").value = self.student_id
671        self.browser.getControl(name="form.password").value = 'spwd'
672        self.browser.getControl("Login").click()
673        self.assertTrue(
674            'You logged in.' in self.browser.contents)
675        # Now students can add the current study level
676        self.browser.getLink("Study Course").click()
677        self.browser.getLink("Add course list").click()
678        self.assertMatches('...Add current level 700...',
679                           self.browser.contents)
680        self.browser.getControl("Create course list now").click()
681        # A level with one course ticket was created
682        self.assertEqual(self.student['studycourse']['700'].number_of_tickets, 0)
683        self.browser.getLink("700").click()
684        self.browser.getLink("Edit course list").click()
685        self.browser.getControl("Add course ticket").click()
686        self.browser.getControl(name="form.course").value = ['COURSE1']
687        self.browser.getControl("Add course ticket").click()
688        self.assertMatches('...Successfully added COURSE1...',
689                           self.browser.contents)
690        # Special postgraduate students can register course lists
691        self.browser.getControl("Register course list").click()
692        self.assertMatches('...Course list has been registered...',
693            self.browser.contents)
694        self.assertEqual(self.student.state, 'courses registered')
695        return
696
697    def test_login(self):
698        # If suspended_comment is set this message will be flashed instead
699        self.student.suspended_comment = u'Aetsch baetsch!'
700        self.student.suspended = True
701        self.browser.open(self.login_path)
702        self.browser.getControl(name="form.login").value = self.student_id
703        self.browser.getControl(name="form.password").value = 'spwd'
704        self.browser.getControl("Login").click()
705        # Uniben does not display suspended_comment
706        self.assertMatches(
707            '...<div class="alert-message warning">Your account has been deactivated.</div>...',
708            self.browser.contents)
709        self.student.suspended = False
Note: See TracBrowser for help on using the repository browser.