1 | ## $Id: test_contract.py 12499 2015-01-20 08:31:25Z henrik $ |
---|
2 | ## |
---|
3 | ## Copyright (C) 2014 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 contracts. |
---|
20 | """ |
---|
21 | import tempfile |
---|
22 | import shutil |
---|
23 | from zope.interface.verify import verifyClass, verifyObject |
---|
24 | from zope.component import createObject |
---|
25 | from zope.component.hooks import setSite |
---|
26 | from zope.interface import verify |
---|
27 | from waeup.ikoba.customers.interfaces import ICustomerNavigation |
---|
28 | from waeup.ikoba.customers.contracts import ContractsContainer |
---|
29 | |
---|
30 | from ikobacustom.pcn.testing import (FunctionalLayer, FunctionalTestCase) |
---|
31 | from ikobacustom.pcn.customers.contracts import RONContract, ROPContract |
---|
32 | from ikobacustom.pcn.customers.interfaces import IRONContract, IROPContract |
---|
33 | |
---|
34 | |
---|
35 | class ContractsContainerTestCase(FunctionalTestCase): |
---|
36 | |
---|
37 | layer = FunctionalLayer |
---|
38 | |
---|
39 | def test_interfaces(self): |
---|
40 | verify.verifyClass(IRONContract, RONContract) |
---|
41 | verify.verifyClass(ICustomerNavigation, RONContract) |
---|
42 | verify.verifyObject(IRONContract, RONContract()) |
---|
43 | verify.verifyObject(ICustomerNavigation, RONContract()) |
---|
44 | verify.verifyObject(IROPContract, ROPContract()) |
---|
45 | verify.verifyObject(ICustomerNavigation, ROPContract()) |
---|
46 | return |
---|
47 | |
---|
48 | def test_addContract(self): |
---|
49 | container = ContractsContainer() |
---|
50 | contract1 = createObject(u'waeup.RONContract') |
---|
51 | id1 = contract1.contract_id |
---|
52 | container.addContract(contract1) |
---|
53 | self.assertEqual(container[id1], contract1) |
---|
54 | self.assertRaises(TypeError, container.addContract, object()) |
---|
55 | self.assertEqual(contract1.class_name, 'RONContract') |
---|
56 | |
---|
57 | contract2 = createObject(u'waeup.ROPContract') |
---|
58 | id2 = contract2.contract_id |
---|
59 | container.addContract(contract2) |
---|
60 | self.assertEqual(container[id2], contract2) |
---|
61 | self.assertRaises(TypeError, container.addContract, object()) |
---|
62 | self.assertEqual(contract2.class_name, 'ROPContract') |
---|
63 | return |
---|