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

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

Add 'Issuance of Patent and Proprietary Medicines Vendors License' contract.

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