source: main/ikobacustom.pcn/trunk/src/ikobacustom/pcn/customers/tests/test_contract.py @ 12571

Last change on this file since 12571 was 12571, checked in by Henrik Bettermann, 10 years ago

Add 'Registration in the Provisional Register' contract.

  • Property svn:keywords set to Id
File size: 2.9 KB
Line 
1## $Id: test_contract.py 12571 2015-02-09 08:30:13Z 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"""
19Tests for contracts.
20"""
21import tempfile
22import shutil
23from zope.interface.verify import verifyClass, verifyObject
24from zope.component import createObject
25from zope.component.hooks import setSite
26from zope.interface import verify
27from waeup.ikoba.customers.interfaces import ICustomerNavigation
28from waeup.ikoba.customers.contracts import ContractsContainer
29
30from ikobacustom.pcn.testing import (FunctionalLayer, FunctionalTestCase)
31from ikobacustom.pcn.customers.contracts import (
32    RONContract,
33    ROPContract,
34    RPRContract,
35    )
36from ikobacustom.pcn.customers.interfaces import (
37    IRONContract,
38    IROPContract,
39    IRPRContract,
40    )
41
42
43class ContractsContainerTestCase(FunctionalTestCase):
44
45    layer = FunctionalLayer
46
47    def test_interfaces(self):
48        verify.verifyClass(IRONContract, RONContract)
49        verify.verifyClass(ICustomerNavigation, RONContract)
50        verify.verifyObject(IRONContract, RONContract())
51        verify.verifyObject(ICustomerNavigation, RONContract())
52        verify.verifyObject(IROPContract, ROPContract())
53        verify.verifyObject(ICustomerNavigation, ROPContract())
54        verify.verifyObject(IRPRContract, RPRContract())
55        verify.verifyObject(ICustomerNavigation, RPRContract())
56        return
57
58    def test_addContract(self):
59        container = ContractsContainer()
60        contract1 = createObject(u'waeup.RONContract')
61        id1 = contract1.contract_id
62        container.addContract(contract1)
63        self.assertEqual(container[id1], contract1)
64        self.assertRaises(TypeError, container.addContract, object())
65        self.assertEqual(contract1.class_name, 'RONContract')
66
67        contract2 = createObject(u'waeup.ROPContract')
68        id2 = contract2.contract_id
69        container.addContract(contract2)
70        self.assertEqual(container[id2], contract2)
71        self.assertEqual(contract2.class_name, 'ROPContract')
72
73        contract3 = createObject(u'waeup.RPRContract')
74        id3 = contract3.contract_id
75        container.addContract(contract3)
76        self.assertEqual(container[id3], contract3)
77        self.assertEqual(contract3.class_name, 'RPRContract')
78        return
Note: See TracBrowser for help on using the repository browser.