source: main/ikobacustom.skeleton/trunk/src/ikobacustom/skeleton/customers/tests/test_document.py @ 12291

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

propset svn:keywords "Id"

  • Property svn:keywords set to Id
File size: 2.3 KB
Line 
1## $Id: test_document.py 12286 2014-12-21 16:49:21Z 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 documents.
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 ICustomerNavigation
29from waeup.ikoba.customers.interfaces import (
30    ICustomersContainer, ICustomerNavigation)
31from waeup.ikoba.customers.documents import CustomerDocumentsContainer
32
33from ikobacustom.skeleton.testing import (FunctionalLayer, FunctionalTestCase)
34from ikobacustom.skeleton.customers.documents import SkeletonCustomerDocument
35from ikobacustom.skeleton.customers.interfaces import ISkeletonCustomerDocument
36
37
38class DocumentsContainerTestCase(FunctionalTestCase):
39
40    layer = FunctionalLayer
41
42    def test_interfaces(self):
43        verify.verifyClass(ISkeletonCustomerDocument, SkeletonCustomerDocument)
44        verify.verifyClass(ICustomerNavigation, SkeletonCustomerDocument)
45        verify.verifyObject(ISkeletonCustomerDocument, SkeletonCustomerDocument())
46        verify.verifyObject(ICustomerNavigation, SkeletonCustomerDocument())
47        return
48
49    def test_addDocument(self):
50        container = CustomerDocumentsContainer()
51        document = createObject(u'waeup.SkeletonCustomerDocument')
52        id = document.document_id
53        container.addDocument(document)
54        self.assertEqual(container[id], document)
55        self.assertRaises(TypeError, container.addDocument, object())
56        self.assertEqual(document.class_name, 'SkeletonCustomerDocument')
57        return
Note: See TracBrowser for help on using the repository browser.