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

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

Add Registration as Pharmaceutical Chemist contract.

  • Property svn:keywords set to Id
File size: 3.3 KB
Line 
1## $Id: test_contract.py 12591 2015-02-11 10:44:28Z 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    RPCContract,
36    )
37from ikobacustom.pcn.customers.interfaces import (
38    IRONContract,
39    IROPContract,
40    IRPRContract,
41    IRPCContract,
42    )
43
44
45class ContractsContainerTestCase(FunctionalTestCase):
46
47    layer = FunctionalLayer
48
49    def test_interfaces(self):
50        verify.verifyClass(IRONContract, RONContract)
51        verify.verifyClass(ICustomerNavigation, RONContract)
52        verify.verifyObject(IRONContract, RONContract())
53        verify.verifyObject(ICustomerNavigation, RONContract())
54        verify.verifyObject(IROPContract, ROPContract())
55        verify.verifyObject(ICustomerNavigation, ROPContract())
56        verify.verifyObject(IRPRContract, RPRContract())
57        verify.verifyObject(ICustomerNavigation, RPRContract())
58        verify.verifyObject(IRPCContract, RPCContract())
59        verify.verifyObject(ICustomerNavigation, RPCContract())
60        return
61
62    def test_addContract(self):
63        container = ContractsContainer()
64        contract1 = createObject(u'waeup.RONContract')
65        id1 = contract1.contract_id
66        container.addContract(contract1)
67        self.assertEqual(container[id1], contract1)
68        self.assertRaises(TypeError, container.addContract, object())
69        self.assertEqual(contract1.class_name, 'RONContract')
70
71        contract2 = createObject(u'waeup.ROPContract')
72        id2 = contract2.contract_id
73        container.addContract(contract2)
74        self.assertEqual(container[id2], contract2)
75        self.assertEqual(contract2.class_name, 'ROPContract')
76
77        contract3 = createObject(u'waeup.RPRContract')
78        id3 = contract3.contract_id
79        container.addContract(contract3)
80        self.assertEqual(container[id3], contract3)
81        self.assertEqual(contract3.class_name, 'RPRContract')
82
83        contract4 = createObject(u'waeup.RPCContract')
84        id4 = contract4.contract_id
85        container.addContract(contract4)
86        self.assertEqual(container[id4], contract4)
87        self.assertEqual(contract4.class_name, 'RPCContract')
88        return
Note: See TracBrowser for help on using the repository browser.