1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
|
#!/usr/bin/env python
# -*- coding: utf-8 -*-
"""Tests if we can handle different encodings well."""
import locale
import logging
import os
import sys
import unittest
from aptdaemon import core, enums, test, errors, utils
DEBUG = True
if sys.version >= '3':
unicode = str
class GettextTest(test.AptDaemonTestCase):
"""Regression test for LP: #768691 and LP: #926340
The gettext.translation.gettext() method returns a string in Python 2.
If we try to perform a string format operation, Python wants to convert
string to unicode. If the daemon is running with a different
default encoding as the translated message this results in an error.
By defaulf aptdaemon runs as C if activated by D-Bus.
"""
def setUp(self):
# Use the mo files from the build
local_mo_files = os.path.join(test.get_tests_dir(),
"../build/mo")
if not os.path.isdir(local_mo_files):
self.skipTest("Please run setup.py build before since local mo "
"files are required. Run python setup.py build_i18n")
core.gettext._default_localedir = local_mo_files
self.trans = core.Transaction(None, enums.ROLE_FIX_BROKEN_DEPENDS,
None, os.getpid(), os.getuid(),
sys.argv[0], "org.debian.apt.test",
connect=False)
self.codes = utils.IsoCodes("iso_639", tag="iso_639_1_code",
fallback_tag="iso_639_2T_code")
def test(self):
"""Test if the installation of an unauthenticated packages fails
if simulate hasn't been called explicitly before.
"""
self.trans._set_locale("de_DE.UTF-8")
ret = self.trans.gettext("CD/DVD '%s' is required")
self.assertTrue(isinstance(ret, unicode))
error = errors.TransactionFailed(enums.ERROR_NO_PACKAGE,
"CD/DVD '%s' is required", "lala")
self.trans.error = error
utils.gettext._default_localedir = "/usr/share/locale"
lang = self.codes.get_localised_name("en", "ru.UTF-8")
self.assertTrue(isinstance(lang, unicode))
if __name__ == "__main__":
if DEBUG:
logging.basicConfig(level=logging.DEBUG)
unittest.main()
# vim: ts=4 et sts=4
|