1 | ## $Id: test_container.py 7811 2012-03-08 19:00:51Z uli $ |
---|
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 | """ |
---|
19 | Tests for applicants containers. |
---|
20 | """ |
---|
21 | import unittest |
---|
22 | from zope.interface.verify import verifyClass, verifyObject |
---|
23 | from waeup.kofa.applicants import interfaces |
---|
24 | from waeup.kofa.applicants.container import ( |
---|
25 | ApplicantsContainer, |
---|
26 | ) |
---|
27 | |
---|
28 | class ApplicantsContainerTestCase(unittest.TestCase): |
---|
29 | |
---|
30 | def test_interfaces(self): |
---|
31 | # Make sure the correct interfaces are implemented. |
---|
32 | self.assertTrue( |
---|
33 | verifyClass( |
---|
34 | interfaces.IApplicantsContainer, ApplicantsContainer) |
---|
35 | ) |
---|
36 | self.assertTrue( |
---|
37 | verifyObject( |
---|
38 | interfaces.IApplicantsContainer, ApplicantsContainer()) |
---|
39 | ) |
---|
40 | return |
---|
41 | |
---|
42 | def test_base(self): |
---|
43 | # We cannot call the fundamental methods of a base in that case |
---|
44 | container = ApplicantsContainer() |
---|
45 | self.assertRaises( |
---|
46 | NotImplementedError, container.archive) |
---|
47 | self.assertRaises( |
---|
48 | NotImplementedError, container.clear) |
---|
49 | |
---|
50 | def suite(): |
---|
51 | suite = unittest.TestSuite() |
---|
52 | for test_case in [ |
---|
53 | ApplicantsContainerTestCase, |
---|
54 | ]: |
---|
55 | suite.addTests( |
---|
56 | unittest.TestLoader().loadTestsFromTestCase(test_case)) |
---|
57 | return suite |
---|
58 | |
---|
59 | test_suite = suite |
---|