~bzr-pqm/bzr/bzr.dev

« back to all changes in this revision

Viewing changes to bzrlib/tests/blackbox/test_locale.py

(gz) Merge 2.4 for one more test fix with newer zlib (Martin Packman)

Show diffs side-by-side

added added

removed removed

Lines of Context:
1
 
# Copyright (C) 2006 Canonical Ltd
 
1
# Copyright (C) 2006, 2011 Canonical Ltd
2
2
#
3
3
# This program is free software; you can redistribute it and/or modify
4
4
# it under the terms of the GNU General Public License as published by
16
16
 
17
17
"""Test that bzr handles locales in a reasonable way"""
18
18
 
19
 
import os
20
19
import sys
21
20
 
22
21
from bzrlib import (
44
43
 
45
44
    def test_log_C(self):
46
45
        self.disable_missing_extensions_warning()
 
46
        # C is not necessarily the default locale, so set both LANG and LC_ALL
 
47
        # explicitly because LC_ALL is preferred on (some?) Linux systems but
 
48
        # only LANG is respected on Windows.
47
49
        out, err = self.run_bzr_subprocess(
48
50
            '--no-aliases --no-plugins log -q --log-format=long tree',
49
 
               env_changes={'LANG':'C', 'BZR_PROGRESS_BAR':'none',
50
 
                            'LC_ALL':None, 'LC_CTYPE':None, 'LANGUAGE':None})
 
51
               env_changes={'LANG': 'C', 'BZR_PROGRESS_BAR':'none',
 
52
                            'LC_ALL': 'C', 'LC_CTYPE':None, 'LANGUAGE':None})
51
53
        self.assertEqual('', err)
52
54
        self.assertEqualDiff("""\
53
55
------------------------------------------------------------
74
76
message:
75
77
  Unicode ? commit
76
78
""", out)
 
79
 
 
80
 
 
81
class TestMultibyteCodecs(tests.TestCaseWithTransport):
 
82
    """Tests for quirks of multibyte encodings and their python codecs"""
 
83
 
 
84
    def test_plugins_mbcs(self):
 
85
        """Ensure the plugins command works with cjkcodecs, see lp:754082"""
 
86
        self.disable_missing_extensions_warning()
 
87
        out, err = self.run_bzr(["plugins"], encoding="EUC-JP")
 
88
        # The output is tested in bt.test_plugins rather than here
 
89
        self.assertEqual("", err)