~bzr-pqm/bzr/bzr.dev

« back to all changes in this revision

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

  • Committer: Canonical.com Patch Queue Manager
  • Date: 2010-01-20 17:19:44 UTC
  • mfrom: (4973.1.1 integration)
  • Revision ID: pqm@pqm.ubuntu.com-20100120171944-8gkub20gotjcye67
(spiv) Implement a per-file merge hook

Show diffs side-by-side

added added

removed removed

Lines of Context:
1
 
# Copyright (C) 2006, 2011 Canonical Ltd
 
1
# Copyright (C) 2006 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
19
20
import sys
20
21
 
21
22
from bzrlib import (
43
44
 
44
45
    def test_log_C(self):
45
46
        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.
49
47
        out, err = self.run_bzr_subprocess(
50
48
            '--no-aliases --no-plugins log -q --log-format=long tree',
51
 
               env_changes={'LANG': 'C', 'BZR_PROGRESS_BAR':'none',
52
 
                            'LC_ALL': 'C', 'LC_CTYPE':None, 'LANGUAGE':None})
 
49
               env_changes={'LANG':'C', 'BZR_PROGRESS_BAR':'none',
 
50
                            'LC_ALL':None, 'LC_CTYPE':None, 'LANGUAGE':None})
53
51
        self.assertEqual('', err)
54
52
        self.assertEqualDiff("""\
55
53
------------------------------------------------------------
76
74
message:
77
75
  Unicode ? commit
78
76
""", 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)