source: main/ikobacustom.skeleton/trunk/src/ikobacustom/skeleton/customers/tests/test_customer.py

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

Add more customized components.

  • Property svn:keywords set to Id
File size: 2.6 KB
Line 
1## $Id: test_customer.py 12273 2014-12-21 06:43:59Z 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 skeleton customers.
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.app import Company
28from waeup.ikoba.customers.interfaces import (
29    ICustomersContainer, ICustomerNavigation)
30from waeup.ikoba.customers.container import CustomersContainer
31
32from ikobacustom.skeleton.testing import (FunctionalLayer, FunctionalTestCase)
33from ikobacustom.skeleton.customers.customer import SkeletonCustomer
34from ikobacustom.skeleton.customers.interfaces import ISkeletonCustomer
35
36class SkeletonCustomerTestCase(FunctionalTestCase):
37
38    layer = FunctionalLayer
39
40    def setUp(self):
41        super(SkeletonCustomerTestCase, 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(ISkeletonCustomer, SkeletonCustomer)
55        verify.verifyClass(ICustomerNavigation, SkeletonCustomer)
56        verify.verifyObject(ISkeletonCustomer, SkeletonCustomer())
57        verify.verifyObject(ICustomerNavigation, SkeletonCustomer())
58        return
59
60    def test_addSkeletonCustomer(self):
61        customer = createObject(u'waeup.Customer')
62        verify.verifyObject(ISkeletonCustomer, 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(SkeletonCustomerTestCase, self).tearDown()
71        return
Note: See TracBrowser for help on using the repository browser.