source: main/kofacustom.edopoly/trunk/src/kofacustom/edopoly/students/tests/test_utils.py @ 15344

Last change on this file since 15344 was 15344, checked in by Henrik Bettermann, 6 years ago

Customize increaseMatricInteger.

  • Property svn:keywords set to Id
File size: 2.6 KB
Line 
1## $Id: test_utils.py 15344 2019-03-06 21:21:38Z 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 grok
19from hurry.workflow.interfaces import IWorkflowState
20from zope.component import getUtility, createObject
21from waeup.kofa.students.studylevel import StudentStudyLevel
22from waeup.kofa.students.tests.test_browser import StudentsFullSetup
23from waeup.kofa.students.interfaces import IStudentsUtils
24from waeup.kofa.students.studylevel import StudentStudyLevel
25from kofacustom.edopoly.testing import FunctionalLayer
26
27class StudentsUtilsTests(StudentsFullSetup):
28
29    layer = FunctionalLayer
30
31    def test_setMatricNumber(self):
32        IWorkflowState(self.student).setState('school fee paid')
33        site = grok.getSite()
34        utils = getUtility(IStudentsUtils)
35        site['configuration'].next_matric_integer = 1
36        site['configuration'].next_matric_integer_2 = 1
37        site['configuration'].next_matric_integer_3 = 1
38        self.student.matric_number = None
39        # nd_ft
40        self.certificate.study_mode ='nd_ft'
41        msg, mnumber = utils.setMatricNumber(self.student)
42        self.assertEqual(self.student.matric_number, 'fac1/ND/04/00001')
43        self.assertEqual(site['configuration'].next_matric_integer, 2)
44        self.assertEqual(msg, None)
45        # hnd_ft
46        self.student.matric_number = None
47        self.certificate.study_mode ='hnd_ft'
48        msg, mnumber = utils.setMatricNumber(self.student)
49        self.assertEqual(self.student.matric_number, 'fac1/HD/04/00001')
50        self.assertEqual(site['configuration'].next_matric_integer_2, 2)
51        self.assertEqual(msg, None)
52        # nd_pt
53        self.student.matric_number = None
54        self.certificate.study_mode ='nd_pt'
55        msg, mnumber = utils.setMatricNumber(self.student)
56        self.assertEqual(self.student.matric_number, 'fac1/PT/04/00001')
57        self.assertEqual(site['configuration'].next_matric_integer_3, 2)
58        self.assertEqual(msg, None)
59        return
Note: See TracBrowser for help on using the repository browser.