~bzr-pqm/bzr/bzr.dev

« back to all changes in this revision

Viewing changes to bzrlib/tests/EncodingAdapter.py

  • Committer: John Arbash Meinel
  • Date: 2006-06-10 14:27:45 UTC
  • mto: (1711.7.2 win32)
  • mto: This revision was merged to the branch mainline in revision 1796.
  • Revision ID: john@arbash-meinel.com-20060610142745-1f86eec922285e65
Fix some broken tests because of stupid ntpath.abspath behavior

Show diffs side-by-side

added added

removed removed

Lines of Context:
1
 
# Copyright (C) 2006, 2009, 2010, 2011 Canonical Ltd
 
1
# Copyright (C) 2006 by Canonical Ltd
2
2
# -*- coding: utf-8 -*-
3
3
#
4
4
# This program is free software; you can redistribute it and/or modify
13
13
#
14
14
# You should have received a copy of the GNU General Public License
15
15
# along with this program; if not, write to the Free Software
16
 
# Foundation, Inc., 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301 USA
 
16
# Foundation, Inc., 59 Temple Place, Suite 330, Boston, MA  02111-1307  USA
17
17
 
18
18
"""Adapter for running test cases against multiple encodings."""
19
19
 
 
20
from copy import deepcopy
 
21
 
 
22
from bzrlib.tests import TestSuite
 
23
 
 
24
 
20
25
# prefix for micro (1/1000000)
21
26
_mu = u'\xb5'
22
27
 
23
 
# greek letter omega, not to be confused with
24
 
# the Ohm sign, u'\u2126'. Though they are probably identical
25
 
# cp437 can handle the first, but not the second
26
 
_omega = u'\u03a9'
27
 
 
28
 
# smallest error possible, epsilon
29
 
# cp437 handles u03b5, but not u2208 the 'element of' operator
30
 
_epsilon = u'\u03b5'
31
 
 
32
28
# Swedish?
33
29
_erik = u'Erik B\xe5gfors'
34
30
 
48
44
 
49
45
# Kanji
50
46
# It is a kanji sequence for nihonjin, or Japanese in English.
51
 
#
 
47
52
48
# '\u4eba' being person, 'u\65e5' sun and '\u672c' origin. Ie,
53
49
# sun-origin-person, 'native from the land where the sun rises'. Note, I'm
54
50
# not a fluent speaker, so this is just my crude breakdown.
55
 
#
 
51
56
52
# Wouter van Heyst
57
53
_nihonjin = u'\u65e5\u672c\u4eba'
58
54
 
74
70
_shalom = u'\u05e9\u05dc\u05d5\u05dd'
75
71
 
76
72
 
77
 
encoding_scenarios = [
 
73
class EncodingTestAdapter(object):
 
74
    """A tool to generate a suite, testing multiple encodings for a single test.
 
75
    
 
76
    This is similar to bzrlib.transport.TransportTestProviderAdapter.
 
77
    It is done by copying the test once for each encoding, and injecting
 
78
    the encoding name, and the list of valid strings for that encoding.
 
79
    Each copy is also given a new id() to make it easy to identify.
 
80
    """
 
81
 
 
82
    _encodings = [
78
83
        # Permutation 1 of utf-8
79
 
        ('utf-8,1', {
80
 
            'info': {
81
 
                'committer': _erik,
82
 
                'message': _yellow_horse,
83
 
                'filename': _shrimp_sandwich,
84
 
                'directory': _nihonjin,
85
 
                },
86
 
            'encoding': 'utf-8',
87
 
            }),
 
84
        ('utf-8', 1, {'committer':_erik
 
85
                  , 'message':_yellow_horse
 
86
                  , 'filename':_shrimp_sandwich
 
87
                  , 'directory':_nihonjin}),
88
88
        # Permutation 2 of utf-8
89
 
        ('utf-8,2', {
90
 
            'info': {
91
 
                'committer': _alexander,
92
 
                'message': u'Testing ' + _mu,
93
 
                'filename': _shalom,
94
 
                'directory': _juju,
95
 
                },
96
 
            'encoding': 'utf-8',
97
 
            }),
98
 
        ('iso-8859-1', {
99
 
            'info': {
100
 
                'committer': _erik,
101
 
                'message': u'Testing ' + _mu,
102
 
                'filename': _juju_alt,
103
 
                'directory': _shrimp_sandwich,
104
 
                },
105
 
            'encoding': 'iso-8859-1',
106
 
            }),
107
 
        ('iso-8859-2', {
108
 
            'info': {
109
 
                'committer': _someone,
110
 
                'message': _yellow_horse,
111
 
                'filename': _yellow,
112
 
                'directory': _something,
113
 
                },
114
 
            'encoding': 'iso-8859-2',
115
 
            }),
116
 
        ('cp1251', {
117
 
            'info': {
118
 
                'committer': _alexander,
119
 
                'message': u'Testing ' + _mu,
120
 
                'filename': _russian_test,
121
 
                'directory': _russian_test + 'dir',
122
 
                },
123
 
            'encoding': 'cp1251',
124
 
            }),
125
 
# The iso-8859-1 tests run on a default windows cp437 installation
126
 
# and it takes a long time to run an extra permutation of the tests
127
 
# But just in case we want to add this back in:
128
 
#        ('cp437', {'committer':_erik
129
 
#                  , 'message':u'Testing ' + _mu
130
 
#                  , 'filename':'file_' + _omega
131
 
#                  , 'directory':_epsilon + '_dir',
132
 
#            'encoding': 'cp437'}),
 
89
        ('utf-8', 2, {'committer':_alexander
 
90
                  , 'message':u'Testing ' + _mu
 
91
                  , 'filename':_shalom
 
92
                  , 'directory':_juju}),
 
93
        ('iso-8859-1', 0, {'committer':_erik
 
94
                  , 'message':u'Testing ' + _mu
 
95
                  , 'filename':_juju_alt
 
96
                  , 'directory':_shrimp_sandwich}),
 
97
        ('iso-8859-2', 0, {'committer':_someone
 
98
                  , 'message':_yellow_horse
 
99
                  , 'filename':_yellow
 
100
                  , 'directory':_something}),
 
101
        ('cp1251', 0, {'committer':_alexander
 
102
                  , 'message':u'Testing ' + _mu
 
103
                  , 'filename':_russian_test
 
104
                  , 'directory':_russian_test + 'dir'}),
133
105
    ]
 
106
 
 
107
    def adapt(self, test):
 
108
        result = TestSuite()
 
109
        for encoding, count, info in self._encodings:
 
110
            new_test = deepcopy(test)
 
111
            new_test.encoding = encoding
 
112
            new_test.info = info
 
113
            def make_new_test_id():
 
114
                if count:
 
115
                    new_id = "%s(%s,%s)" % (new_test.id(), encoding, count)
 
116
                else:
 
117
                    new_id = "%s(%s)" % (new_test.id(), encoding)
 
118
                return lambda: new_id
 
119
            new_test.id = make_new_test_id()
 
120
            result.addTest(new_test)
 
121
        return result
 
122
 
 
123