1 | ## $Id: test_customer.py 12371 2015-01-03 07:38:07Z 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 pcn customers. |
---|
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.app import Company |
---|
28 | from waeup.ikoba.customers.interfaces import ( |
---|
29 | ICustomersContainer, ICustomerNavigation) |
---|
30 | from waeup.ikoba.customers.container import CustomersContainer |
---|
31 | |
---|
32 | from ikobacustom.pcn.testing import (FunctionalLayer, FunctionalTestCase) |
---|
33 | from ikobacustom.pcn.customers.customer import PCNCustomer |
---|
34 | from ikobacustom.pcn.customers.interfaces import IPCNCustomer |
---|
35 | |
---|
36 | class PCNCustomerTestCase(FunctionalTestCase): |
---|
37 | |
---|
38 | layer = FunctionalLayer |
---|
39 | |
---|
40 | def setUp(self): |
---|
41 | super(PCNCustomerTestCase, self).setUp() |
---|
42 | |
---|
43 | # Prepopulate ZODB |
---|
44 | app = Company() |
---|
45 | self.dc_root = tempfile.mkdtemp() |
---|
46 | app['datacenter'].setStoragePath(self.dc_root) |
---|
47 | |
---|
48 | # Prepopulate the ZODB... |
---|
49 | self.getRootFolder()['app'] = app |
---|
50 | self.app = self.getRootFolder()['app'] |
---|
51 | setSite(self.app) |
---|
52 | |
---|
53 | def test_interfaces(self): |
---|
54 | verify.verifyClass(IPCNCustomer, PCNCustomer) |
---|
55 | verify.verifyClass(ICustomerNavigation, PCNCustomer) |
---|
56 | verify.verifyObject(IPCNCustomer, PCNCustomer()) |
---|
57 | verify.verifyObject(ICustomerNavigation, PCNCustomer()) |
---|
58 | return |
---|
59 | |
---|
60 | def test_addPCNCustomer(self): |
---|
61 | customer = createObject(u'waeup.Customer') |
---|
62 | verify.verifyObject(IPCNCustomer, customer) |
---|
63 | self.app['customers'].addCustomer(customer) |
---|
64 | self.assertEqual(customer.customer_id, 'K1000000') |
---|
65 | self.assertEqual(self.app['customers']['K1000000'], customer) |
---|
66 | return |
---|
67 | |
---|
68 | def tearDown(self): |
---|
69 | shutil.rmtree(self.dc_root) |
---|
70 | super(PCNCustomerTestCase, self).tearDown() |
---|
71 | return |
---|