1 | ## $Id: test_document.py 14197 2016-09-28 07:04:12Z 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 documents. |
---|
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.customers.interfaces import ICustomerNavigation |
---|
28 | from waeup.ikoba.customers.documents import CustomerDocumentsContainer |
---|
29 | |
---|
30 | from ikobacustom.uniben.testing import (FunctionalLayer, FunctionalTestCase) |
---|
31 | from ikobacustom.uniben.customers.documents import ( |
---|
32 | UnibenCustomerPDFDocument, UnibenCustomerJPGDocument) |
---|
33 | from ikobacustom.uniben.customers.interfaces import ( |
---|
34 | IUnibenCustomerPDFDocument, IUnibenCustomerJPGDocument) |
---|
35 | |
---|
36 | |
---|
37 | class DocumentsContainerTestCase(FunctionalTestCase): |
---|
38 | |
---|
39 | layer = FunctionalLayer |
---|
40 | |
---|
41 | def test_interfaces(self): |
---|
42 | verify.verifyClass(IUnibenCustomerPDFDocument, UnibenCustomerPDFDocument) |
---|
43 | verify.verifyClass(ICustomerNavigation, UnibenCustomerPDFDocument) |
---|
44 | verify.verifyObject(IUnibenCustomerPDFDocument, UnibenCustomerPDFDocument()) |
---|
45 | verify.verifyObject(ICustomerNavigation, UnibenCustomerPDFDocument()) |
---|
46 | verify.verifyClass(IUnibenCustomerJPGDocument, UnibenCustomerJPGDocument) |
---|
47 | verify.verifyClass(ICustomerNavigation, UnibenCustomerJPGDocument) |
---|
48 | verify.verifyObject(IUnibenCustomerJPGDocument, UnibenCustomerJPGDocument()) |
---|
49 | verify.verifyObject(ICustomerNavigation, UnibenCustomerJPGDocument()) |
---|
50 | return |
---|
51 | |
---|
52 | def test_addDocument(self): |
---|
53 | container = CustomerDocumentsContainer() |
---|
54 | document = createObject(u'waeup.UnibenCustomerPDFDocument') |
---|
55 | id = document.document_id |
---|
56 | container.addDocument(document) |
---|
57 | self.assertEqual(container[id], document) |
---|
58 | self.assertRaises(TypeError, container.addDocument, object()) |
---|
59 | self.assertEqual(document.class_name, 'UnibenCustomerPDFDocument') |
---|
60 | document2 = createObject(u'waeup.UnibenCustomerJPGDocument') |
---|
61 | id = document2.document_id |
---|
62 | container.addDocument(document2) |
---|
63 | self.assertEqual(container[id], document2) |
---|
64 | self.assertRaises(TypeError, container.addDocument, object()) |
---|
65 | self.assertEqual(document2.class_name, 'UnibenCustomerJPGDocument') |
---|
66 | return |
---|