1 | # -*- coding: utf-8 -*- |
---|
2 | |
---|
3 | ## |
---|
4 | ## test_helpers.py |
---|
5 | ## Login : <uli@pu.smp.net> |
---|
6 | ## Started on Sat Feb 12 14:39:42 2011 Uli Fouquet |
---|
7 | ## $Id: test_helpers.py 7186 2011-11-24 11:31:04Z henrik $ |
---|
8 | ## |
---|
9 | ## Copyright (C) 2011 Uli Fouquet |
---|
10 | ## This program is free software; you can redistribute it and/or modify |
---|
11 | ## it under the terms of the GNU General Public License as published by |
---|
12 | ## the Free Software Foundation; either version 2 of the License, or |
---|
13 | ## (at your option) any later version. |
---|
14 | ## |
---|
15 | ## This program is distributed in the hope that it will be useful, |
---|
16 | ## but WITHOUT ANY WARRANTY; without even the implied warranty of |
---|
17 | ## MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the |
---|
18 | ## GNU General Public License for more details. |
---|
19 | ## |
---|
20 | ## You should have received a copy of the GNU General Public License |
---|
21 | ## along with this program; if not, write to the Free Software |
---|
22 | ## Foundation, Inc., 59 Temple Place, Suite 330, Boston, MA 02111-1307 USA |
---|
23 | ## |
---|
24 | import os |
---|
25 | import shutil |
---|
26 | import tempfile |
---|
27 | import unittest |
---|
28 | import doctest |
---|
29 | from cStringIO import StringIO |
---|
30 | from zope.security.testing import Principal, Participation |
---|
31 | from zope.security.management import newInteraction, endInteraction |
---|
32 | from waeup.sirp.utils import helpers |
---|
33 | |
---|
34 | from zope.interface import Interface, implements |
---|
35 | class IFakeObject(Interface): |
---|
36 | """Some marker interface.""" |
---|
37 | |
---|
38 | class FakeObject(object): |
---|
39 | implements(IFakeObject) |
---|
40 | |
---|
41 | class RemoveFileOrDirectoryTestCase(unittest.TestCase): |
---|
42 | |
---|
43 | def setUp(self): |
---|
44 | self.dirpath = tempfile.mkdtemp() |
---|
45 | self.filepath = os.path.join(self.dirpath, 'somefile') |
---|
46 | self.non_file = os.path.join(self.dirpath, 'nonfile') |
---|
47 | open(self.filepath, 'wb').write('Hi!') |
---|
48 | return |
---|
49 | |
---|
50 | def tearDown(self): |
---|
51 | if os.path.exists(self.dirpath): |
---|
52 | shutil.rmtree(self.dirpath) |
---|
53 | return |
---|
54 | |
---|
55 | def test_handle_not_existing_path(self): |
---|
56 | result = helpers.remove_file_or_directory(self.non_file) |
---|
57 | self.assertTrue(result is None) |
---|
58 | return |
---|
59 | |
---|
60 | def test_handle_dir(self): |
---|
61 | helpers.remove_file_or_directory(self.dirpath) |
---|
62 | self.assertFalse( |
---|
63 | os.path.exists(self.dirpath) |
---|
64 | ) |
---|
65 | return |
---|
66 | |
---|
67 | def test_handle_file(self): |
---|
68 | helpers.remove_file_or_directory(self.filepath) |
---|
69 | self.assertFalse( |
---|
70 | os.path.exists(self.filepath) |
---|
71 | ) |
---|
72 | return |
---|
73 | |
---|
74 | class CopyFileSystemTreeTestCase(unittest.TestCase): |
---|
75 | # Test edge cases of copy_filesystem_tree(). |
---|
76 | # |
---|
77 | # This is a typical case of tests not written as doctest as it is |
---|
78 | # normally not interesting for developers and we only want to make |
---|
79 | # sure everything works as expected. |
---|
80 | def setUp(self): |
---|
81 | self.existing_src = tempfile.mkdtemp() |
---|
82 | self.filepath = os.path.join(self.existing_src, 'somefile') |
---|
83 | open(self.filepath, 'wb').write('Hi!') |
---|
84 | self.existing_dst = tempfile.mkdtemp() |
---|
85 | self.not_existing_dir = tempfile.mkdtemp() |
---|
86 | shutil.rmtree(self.not_existing_dir) |
---|
87 | |
---|
88 | pass |
---|
89 | |
---|
90 | def tearDown(self): |
---|
91 | shutil.rmtree(self.existing_src) |
---|
92 | shutil.rmtree(self.existing_dst) |
---|
93 | pass |
---|
94 | |
---|
95 | def test_source_and_dst_existing(self): |
---|
96 | helpers.copy_filesystem_tree(self.existing_src, self.existing_dst) |
---|
97 | self.assertTrue( |
---|
98 | os.path.exists( |
---|
99 | os.path.join(self.existing_dst, 'somefile') |
---|
100 | ) |
---|
101 | ) |
---|
102 | return |
---|
103 | |
---|
104 | def test_source_not_existing(self): |
---|
105 | self.assertRaises( |
---|
106 | ValueError, |
---|
107 | helpers.copy_filesystem_tree, |
---|
108 | self.not_existing_dir, |
---|
109 | self.existing_dst |
---|
110 | ) |
---|
111 | return |
---|
112 | |
---|
113 | def test_dest_not_existing(self): |
---|
114 | self.assertRaises( |
---|
115 | ValueError, |
---|
116 | helpers.copy_filesystem_tree, |
---|
117 | self.existing_src, |
---|
118 | self.not_existing_dir |
---|
119 | ) |
---|
120 | return |
---|
121 | |
---|
122 | def test_src_not_a_dir(self): |
---|
123 | self.assertRaises( |
---|
124 | ValueError, |
---|
125 | helpers.copy_filesystem_tree, |
---|
126 | self.filepath, |
---|
127 | self.existing_dst |
---|
128 | ) |
---|
129 | return |
---|
130 | |
---|
131 | def test_dst_not_a_dir(self): |
---|
132 | self.assertRaises( |
---|
133 | ValueError, |
---|
134 | helpers.copy_filesystem_tree, |
---|
135 | self.existing_src, |
---|
136 | self.filepath |
---|
137 | ) |
---|
138 | return |
---|
139 | |
---|
140 | class ReST2HTMLTestCase(unittest.TestCase): |
---|
141 | |
---|
142 | def setUp(self): |
---|
143 | self.expected = u'<div class="document">\n\n\n<p>Some ' |
---|
144 | self.expected += u'test with \xfcmlaut</p>\n</div>' |
---|
145 | return |
---|
146 | |
---|
147 | def test_ascii_umlauts(self): |
---|
148 | # Make sure we convert umlauts correctly to unicode. |
---|
149 | source = 'Some test with ümlaut' |
---|
150 | result = helpers.ReST2HTML(source) |
---|
151 | self.assertEqual(result, self.expected) |
---|
152 | |
---|
153 | def test_unicode_umlauts(self): |
---|
154 | # Make sure we convert umlauts correctly to unicode. |
---|
155 | source = u'Some test with ümlaut' |
---|
156 | result = helpers.ReST2HTML(source) |
---|
157 | self.assertEqual(result, self.expected) |
---|
158 | |
---|
159 | def test_unicode_output_from_ascii(self): |
---|
160 | source = 'Some test with ümlaut' |
---|
161 | self.assertTrue(isinstance(helpers.ReST2HTML(source), unicode)) |
---|
162 | |
---|
163 | def test_unicode_output_from_unicode(self): |
---|
164 | source = u'Some test with ümlaut' |
---|
165 | self.assertTrue(isinstance(helpers.ReST2HTML(source), unicode)) |
---|
166 | |
---|
167 | |
---|
168 | class FactoryBaseTestCase(unittest.TestCase): |
---|
169 | |
---|
170 | def test_ifaces(self): |
---|
171 | # We test all relevant parts in the docstring. But the interfaces |
---|
172 | # method has to be tested to please the coverage report as well. |
---|
173 | factory = helpers.FactoryBase() |
---|
174 | factory.factory = FakeObject |
---|
175 | self.assertTrue(factory.getInterfaces()(IFakeObject)) |
---|
176 | return |
---|
177 | |
---|
178 | class CurrentPrincipalTestCase(unittest.TestCase): |
---|
179 | |
---|
180 | def tearDown(test): |
---|
181 | endInteraction() # Just in case, one is still lingering around |
---|
182 | |
---|
183 | def test_existing_principal(self): |
---|
184 | # We can get the current principal if one is involved |
---|
185 | principal = Principal('myprincipal') |
---|
186 | newInteraction(Participation(principal)) |
---|
187 | result = helpers.get_current_principal() |
---|
188 | self.assertTrue(result is principal) |
---|
189 | |
---|
190 | def test_no_participation(self): |
---|
191 | # Interactions without participation are handled correctly |
---|
192 | newInteraction() |
---|
193 | result = helpers.get_current_principal() |
---|
194 | self.assertTrue(result is None) |
---|
195 | |
---|
196 | def test_not_existing_principal(self): |
---|
197 | # Missing interactions do not raise errors. |
---|
198 | result = helpers.get_current_principal() |
---|
199 | self.assertTrue(result is None) |
---|
200 | |
---|
201 | class CmpFilesTestCase(unittest.TestCase): |
---|
202 | |
---|
203 | def setUp(self): |
---|
204 | self.workdir = tempfile.mkdtemp() |
---|
205 | |
---|
206 | def tearDown(self): |
---|
207 | shutil.rmtree(self.workdir) |
---|
208 | |
---|
209 | def test_equal(self): |
---|
210 | p1 = os.path.join(self.workdir, 'sample1') |
---|
211 | p2 = os.path.join(self.workdir, 'sample2') |
---|
212 | f1 = open(p1, 'wb').write('Hi!') |
---|
213 | f2 = open(p2, 'wb').write('Hi!') |
---|
214 | assert helpers.cmp_files(open(p1, 'r'), open(p2, 'r')) is True |
---|
215 | |
---|
216 | def test_unequal(self): |
---|
217 | p1 = os.path.join(self.workdir, 'sample1') |
---|
218 | p2 = os.path.join(self.workdir, 'sample2') |
---|
219 | f1 = open(p1, 'wb').write('Hi!') |
---|
220 | f2 = open(p2, 'wb').write('Ho!') |
---|
221 | assert helpers.cmp_files(open(p1, 'r'), open(p2, 'r')) is False |
---|
222 | |
---|
223 | class FileSizeTestCase(unittest.TestCase): |
---|
224 | |
---|
225 | def setUp(self): |
---|
226 | self.workdir = tempfile.mkdtemp() |
---|
227 | |
---|
228 | def tearDown(self): |
---|
229 | shutil.rmtree(self.workdir) |
---|
230 | |
---|
231 | def test_real_file(self): |
---|
232 | # we can get the size of real files |
---|
233 | path = os.path.join(self.workdir, 'sample.txt') |
---|
234 | open(path, 'wb').write('My content') |
---|
235 | self.assertEqual( |
---|
236 | int(helpers.file_size(open(path, 'rb'))), 10) |
---|
237 | return |
---|
238 | |
---|
239 | def test_stringio_file(self): |
---|
240 | # we can get the size of file-like objects |
---|
241 | self.assertEqual( |
---|
242 | helpers.file_size(StringIO('my sample content')), 17) |
---|
243 | |
---|
244 | def test_suite(): |
---|
245 | suite = unittest.TestSuite() |
---|
246 | # Register local test cases... |
---|
247 | for testcase in [ |
---|
248 | ReST2HTMLTestCase, |
---|
249 | FactoryBaseTestCase, |
---|
250 | CopyFileSystemTreeTestCase, |
---|
251 | RemoveFileOrDirectoryTestCase, |
---|
252 | CurrentPrincipalTestCase, |
---|
253 | CmpFilesTestCase, |
---|
254 | FileSizeTestCase, |
---|
255 | ]: |
---|
256 | suite.addTests( |
---|
257 | unittest.TestLoader().loadTestsFromTestCase(testcase) |
---|
258 | ) |
---|
259 | # Add tests from docstrings in helpers.py... |
---|
260 | suite.addTests( |
---|
261 | doctest.DocTestSuite( |
---|
262 | helpers, |
---|
263 | optionflags = doctest.ELLIPSIS + doctest.REPORT_NDIFF, |
---|
264 | ) |
---|
265 | ) |
---|
266 | return suite |
---|
267 | |
---|
268 | if __name__ == '__main__': |
---|
269 | unittest.main(defaultTest='test_suite') |
---|