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

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

Add Renewal of Patent and Proprietary Medicines Vendors License.

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