source: main/waeup.aaue/trunk/src/waeup/aaue/applicants/tests/test_applicantcopier.py @ 13545

Last change on this file since 13545 was 13545, checked in by Henrik Bettermann, 9 years ago

Add more hq fields.

Re-organize OMIT field structure in views.

  • Property svn:keywords set to Id
File size: 3.4 KB
Line 
1## $Id: test_applicantcopier.py 13545 2015-12-16 08:45:50Z 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"""
19Tests for the creation of student containers with data from admitted applicants.
20"""
21import os
22import grok
23from datetime import datetime
24from hurry.workflow.interfaces import IWorkflowInfo, IWorkflowState
25from zope.event import notify
26from zope.component import getUtility
27from zope.i18n import translate
28from waeup.kofa.interfaces import IExtFileStore, IFileStoreNameChooser
29from waeup.kofa.applicants.tests.test_browser import ApplicantsFullSetup
30from waeup.aaue.testing import FunctionalLayer
31
32session = datetime.now().year - 2
33
34class ApplicantCopierFunctionalTests(ApplicantsFullSetup):
35
36    layer = FunctionalLayer
37
38    def setUp(self):
39        super(ApplicantCopierFunctionalTests, self).setUp()
40        return
41
42    def test_copier(self):
43        IWorkflowState(self.applicant).setState('admitted')
44        self.browser.addHeader('Authorization', 'Basic mgr:mgrpw')
45        self.browser.open(self.manage_path)
46        self.fill_correct_values()
47        self.browser.getControl("Save").click()
48        self.browser.getControl(name="form.nationality").value = ['NG']
49        self.browser.getControl(name="form.lga").value = ['abia_aba_north']
50        self.browser.getControl(name="form.course_admitted").value = ['CERT1']
51        self.browser.getControl(name="form.programme_type").value = ['regular']
52        # Date of birth is not required
53        self.browser.getControl(name="form.date_of_birth").value = ''
54
55        self.browser.getControl(name="form.fst_sit_fname").value = 'Alfons'
56        self.browser.getControl(name="form.fst_sit_no").value = '123'
57        self.browser.getControl(name="form.fst_sit_type").value = ['ssce']
58        self.browser.getControl(name="form.scd_sit_fname").value = 'John'
59        self.browser.getControl(name="form.scd_sit_no").value = '456'
60        self.browser.getControl(name="form.scd_sit_type").value = ['waec']
61        self.browser.getControl(name="form.alr_fname").value = 'Uli'
62        self.browser.getControl(name="form.alr_no").value = '345'
63
64        self.browser.getControl("Save").click()
65        (success, msg) = self.applicant.createStudent()
66        student_id = translate(msg, 'waeup.kofa').split()[1]
67        student = self.app['students'][student_id]
68        self.assertEqual(student.state, 'admitted')
69
70        # Has the student the correct attributes?
71        self.assertEqual(student.fst_sit_fname, 'Alfons')
72        self.assertEqual(student.fst_sit_no, '123')
73        self.assertEqual(student.fst_sit_type, 'ssce')
74        self.assertEqual(student.scd_sit_fname, 'John')
75        self.assertEqual(student.scd_sit_no, '456')
76        self.assertEqual(student.scd_sit_type, 'waec')
77        self.assertEqual(student.alr_fname, 'Uli')
78        self.assertEqual(student.alr_no, '345')
Note: See TracBrowser for help on using the repository browser.