1
# Copyright (C) 2010 Canonical Ltd
3
# This program is free software; you can redistribute it and/or modify
4
# it under the terms of the GNU General Public License as published by
5
# the Free Software Foundation; either version 2 of the License, or
6
# (at your option) any later version.
8
# This program is distributed in the hope that it will be useful,
9
# but WITHOUT ANY WARRANTY; without even the implied warranty of
10
# MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
11
# GNU General Public License for more details.
13
# You should have received a copy of the GNU General Public License
14
# along with this program; if not, write to the Free Software
15
# Foundation, Inc., 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301 USA
18
"""Fixtures that can be used within tests.
20
Fixtures can be created during a test as a way to separate out creation of
21
objects to test. Fixture objects can hold some state so that different
22
objects created during a test instance can be related. Normally a fixture
23
should live only for the duration of a single test, and its tearDown method
24
should be passed to `addCleanup` on the test.
31
def generate_unicode_names():
32
"""Generate a sequence of arbitrary unique unicode names.
34
By default they are not representable in ascii.
36
>>> gen = generate_unicode_names()
43
>>> n1.encode('ascii', 'replace') == n1
46
# include a mathematical symbol unlikely to be in 8-bit encodings
47
return (u"\N{SINE WAVE}%d" % x for x in itertools.count())
50
interesting_encodings = [
51
('iso-8859-1', False),
59
def generate_unicode_encodings(universal_encoding=None):
60
"""Return a generator of unicode encoding names.
62
These can be passed to Python encode/decode/etc.
64
:param universal_encoding: True/False/None tristate to say whether the
65
generated encodings either can or cannot encode all unicode
68
>>> n1 = generate_unicode_names().next()
69
>>> enc = generate_unicode_encodings(universal_encoding=True).next()
70
>>> enc2 = generate_unicode_encodings(universal_encoding=False).next()
71
>>> n1.encode(enc).decode(enc) == n1
74
... n1.encode(enc2).decode(enc2)
75
... except UnicodeError:
79
# TODO: check they're supported on this platform?
80
if universal_encoding is not None:
81
e = [n for (n, u) in interesting_encodings if u == universal_encoding]
83
e = [n for (n, u) in interesting_encodings]
84
return itertools.cycle(iter(e))