1 | ## $Id: test_utils.py 13609 2016-01-13 09:16:36Z 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 | ## |
---|
18 | import grok |
---|
19 | from hurry.workflow.interfaces import IWorkflowState |
---|
20 | from zope.component import getUtility, createObject |
---|
21 | from waeup.kofa.students.tests.test_browser import StudentsFullSetup |
---|
22 | from waeup.kofa.students.interfaces import IStudentsUtils |
---|
23 | from waeup.aaue.testing import FunctionalLayer |
---|
24 | |
---|
25 | class StudentsUtilsTests(StudentsFullSetup): |
---|
26 | |
---|
27 | layer = FunctionalLayer |
---|
28 | |
---|
29 | def test_get_returning_data(self): |
---|
30 | # Student is in level 100, session 2004 with verdict A |
---|
31 | utils = getUtility(IStudentsUtils) |
---|
32 | self.assertEqual(utils.getReturningData(self.student),(2005, 200)) |
---|
33 | self.student['studycourse'].current_verdict = 'C' |
---|
34 | self.assertEqual(utils.getReturningData(self.student),(2005, 110)) |
---|
35 | self.student['studycourse'].current_verdict = 'NEOR' |
---|
36 | self.assertEqual(utils.getReturningData(self.student),(2005, 100)) |
---|
37 | return |
---|
38 | |
---|
39 | def test_no_clearance_ac_code_created(self): |
---|
40 | payment = createObject('waeup.StudentOnlinePayment') |
---|
41 | payment.p_category = 'clearance' |
---|
42 | self.student['payments']['any_id'] = payment |
---|
43 | payment.approveStudentPayment() |
---|
44 | # No activation code created. |
---|
45 | self.assertEqual(payment.ac, None) |
---|
46 | |
---|
47 | def test_set_payment_details(self): |
---|
48 | self.app['configuration']['2004'].gown_fee = 150.0 |
---|
49 | self.app['configuration']['2004'].transfer_fee = 90.0 |
---|
50 | self.app['configuration']['2004'].booking_fee = 150.0 |
---|
51 | self.app['configuration']['2004'].maint_fee = 180.0 |
---|
52 | self.app['configuration']['2004'].clearance_fee_pg = 1234.0 |
---|
53 | self.app['configuration']['2004'].clearance_fee_fp = 3456.0 |
---|
54 | self.student['studycourse'].certificate.school_fee_1 = 6666.0 |
---|
55 | self.student['studycourse'].certificate.school_fee_2 = 7777.0 |
---|
56 | self.student['studycourse'].certificate.study_mode = 'special_pg_ft' |
---|
57 | self.student.nationality = u'NG' |
---|
58 | self.student.lga = 'ebonyi_ukaba' |
---|
59 | utils = getUtility(IStudentsUtils) |
---|
60 | |
---|
61 | configuration = createObject('waeup.SessionConfiguration') |
---|
62 | configuration.academic_session = 2005 |
---|
63 | self.app['configuration'].addSessionConfiguration(configuration) |
---|
64 | |
---|
65 | error, payment = utils.setPaymentDetails('schoolfee',self.student) |
---|
66 | self.assertEqual(payment, None) |
---|
67 | self.assertEqual(error, u'Wrong state.') |
---|
68 | IWorkflowState(self.student).setState('cleared') |
---|
69 | # School fee can be set. |
---|
70 | error, payment = utils.setPaymentDetails('schoolfee',self.student) |
---|
71 | self.assertEqual(payment.p_level, 100) |
---|
72 | self.assertEqual(payment.p_session, 2004) |
---|
73 | # 20000 Naira non-indigenous fee added |
---|
74 | self.assertEqual(payment.amount_auth, 26666.0) |
---|
75 | self.assertEqual(payment.p_item, u'CERT1') |
---|
76 | self.assertEqual(error, None) |
---|
77 | # Add penalty fee ... |
---|
78 | # ... for cleared |
---|
79 | self.app['configuration']['2004'].penalty_pg = 99.0 |
---|
80 | # ... for returning |
---|
81 | self.app['configuration']['2005'].penalty_pg = 88.0 |
---|
82 | self.student.lga = 'edo_afuze' |
---|
83 | error, payment = utils.setPaymentDetails('schoolfee',self.student) |
---|
84 | self.assertEqual(payment.amount_auth, 6765.0) |
---|
85 | IWorkflowState(self.student).setState('returning') |
---|
86 | error, payment = utils.setPaymentDetails('schoolfee',self.student) |
---|
87 | self.assertEqual(error, u'Personal data form is not properly filled.') |
---|
88 | self.student.father_name = u'Rudolf' |
---|
89 | error, payment = utils.setPaymentDetails('schoolfee',self.student) |
---|
90 | self.assertEqual(payment.p_level, 200) |
---|
91 | self.assertEqual(payment.p_session, 2005) |
---|
92 | self.assertEqual(payment.amount_auth, 7865.0) |
---|
93 | self.assertEqual(payment.p_item, u'CERT1') |
---|
94 | self.assertEqual(error, None) |
---|
95 | |
---|
96 | error, payment = utils.setPaymentDetails('clearance',self.student) |
---|
97 | self.assertEqual(error, 'Acceptance Fee payments not allowed.') |
---|
98 | IWorkflowState(self.student).setState('cleared') |
---|
99 | error, payment = utils.setPaymentDetails('clearance',self.student) |
---|
100 | self.assertEqual(payment.p_level, 100) |
---|
101 | self.assertEqual(payment.p_session, 2004) |
---|
102 | self.assertEqual(payment.amount_auth, 1234.0) |
---|
103 | self.assertEqual(payment.p_item, u'CERT1') |
---|
104 | self.assertEqual(error, None) |
---|
105 | |
---|
106 | self.app['faculties']['fac1'].code = u'FP' |
---|
107 | error, payment = utils.setPaymentDetails('clearance',self.student) |
---|
108 | self.assertEqual(payment.p_level, 100) |
---|
109 | self.assertEqual(payment.p_session, 2004) |
---|
110 | self.assertEqual(payment.amount_auth, 3456.0) |
---|
111 | self.assertEqual(payment.p_item, u'CERT1') |
---|
112 | self.assertEqual(error, None) |
---|
113 | |
---|
114 | error, payment = utils.setPaymentDetails('schoolfee',self.student, 2004, 100) |
---|
115 | self.assertEqual(error, u'Previous session payment not yet implemented.') |
---|
116 | return |
---|
117 | |
---|
118 | def test_maxCredits(self): |
---|
119 | dummy = object() |
---|
120 | utils = getUtility(IStudentsUtils) |
---|
121 | self.assertEqual(utils.maxCredits(dummy), 48) |
---|
122 | return |
---|
123 | |
---|
124 | def test_setMatricNumber(self): |
---|
125 | IWorkflowState(self.student).setState('school fee paid') |
---|
126 | site = grok.getSite() |
---|
127 | utils = getUtility(IStudentsUtils) |
---|
128 | site['configuration'].next_matric_integer = 1 |
---|
129 | site['configuration'].next_matric_integer_2 = 1 |
---|
130 | site['configuration'].next_matric_integer_3 = 1 |
---|
131 | self.student.matric_number = None |
---|
132 | # Regular ft students have a matric number without leading constant. |
---|
133 | msg, mnumber = utils.setMatricNumber(self.student) |
---|
134 | self.assertEqual(self.student.matric_number, 'fac1/dep1/04/00001') |
---|
135 | self.assertEqual(msg, None) |
---|
136 | # Part time have an extended matric number with leading 'PTP' |
---|
137 | # and a different counter which is next_matric_integer. |
---|
138 | self.student.matric_number = None |
---|
139 | self.student['studycourse'].certificate.study_mode = 'ug_pt' |
---|
140 | msg, mnumber = utils.setMatricNumber(self.student) |
---|
141 | self.assertEqual(self.student.matric_number, 'PTP/fac1/dep1/04/00001') |
---|
142 | self.assertEqual(site['configuration'].next_matric_integer, 2) |
---|
143 | # Students in faculty FBM get an extended matric number with leading 'CMS' |
---|
144 | # and the regular counter which is next_matric_integer_2. |
---|
145 | self.app['faculties']['fac1'].code = 'FBM' |
---|
146 | self.student['studycourse'].certificate.study_mode = 'ug_ft' |
---|
147 | self.student.matric_number = None |
---|
148 | msg, mnumber = utils.setMatricNumber(self.student) |
---|
149 | self.assertEqual(self.student.matric_number, 'CMS/FBM/dep1/04/00002') |
---|
150 | self.assertEqual(site['configuration'].next_matric_integer_2, 3) |
---|
151 | # PG Students get an extended matric number with leading 'AAU/SPS' |
---|
152 | # and the pg counter which is next_matric_integer_3. |
---|
153 | self.app['faculties']['fac1'].code = 'ABC' |
---|
154 | self.student['studycourse'].certificate.study_mode = 'special_pg_ft' |
---|
155 | self.student.matric_number = None |
---|
156 | msg, mnumber = utils.setMatricNumber(self.student) |
---|
157 | self.assertEqual(self.student.matric_number, 'AAU/SPS/ABC/dep1/04/CERT1/00001') |
---|
158 | self.assertEqual(site['configuration'].next_matric_integer_3, 2) |
---|
159 | # Foundation programme students don't get matric number. |
---|
160 | self.student.matric_number = None |
---|
161 | self.student['studycourse'].certificate.study_mode = 'found' |
---|
162 | msg, mnumber = utils.setMatricNumber(self.student) |
---|
163 | self.assertEqual(msg, 'Matriculation number cannot be set.') |
---|
164 | self.assertEqual(mnumber, None) |
---|
165 | # Certificate must be set. |
---|
166 | self.student.matric_number = None |
---|
167 | self.student['studycourse'].certificate = None |
---|
168 | msg, mnumber = utils.setMatricNumber(self.student) |
---|
169 | self.assertEqual(msg, 'No certificate assigned.') |
---|
170 | return |
---|