1
1
#!/usr/bin/env python
2
2
#
3
- # Copyright 2001-2004 by Vinay Sajip. All Rights Reserved.
3
+ # Copyright 2001-2009 by Vinay Sajip. All Rights Reserved.
4
4
#
5
5
# Permission to use, copy, modify, and distribute this software and its
6
6
# documentation for any purpose and without fee is hereby granted,
18
18
19
19
"""Test harness for the logging module. Run all tests.
20
20
21
- Copyright (C) 2001-2008 Vinay Sajip. All Rights Reserved.
21
+ Copyright (C) 2001-2009 Vinay Sajip. All Rights Reserved.
22
22
"""
23
23
24
24
import logging
25
25
import logging .handlers
26
26
import logging .config
27
27
28
+ import codecs
28
29
import copy
29
30
import cPickle
30
31
import cStringIO
@@ -860,6 +861,7 @@ def test_persistent_loggers(self):
860
861
('foo' , 'DEBUG' , '3' ),
861
862
])
862
863
864
+
863
865
class EncodingTest (BaseTest ):
864
866
def test_encoding_plain_file (self ):
865
867
# In Python 2.x, a plain file object is treated as having no encoding.
@@ -886,6 +888,27 @@ def test_encoding_plain_file(self):
886
888
if os .path .isfile (fn ):
887
889
os .remove (fn )
888
890
891
+ def test_encoding_cyrillic_unicode (self ):
892
+ log = logging .getLogger ("test" )
893
+ #Get a message in Unicode: Do svidanya in Cyrillic (meaning goodbye)
894
+ message = u'\u0434 \u043e \u0441 \u0432 \u0438 \u0434 \u0430 \u043d \u0438 \u044f '
895
+ #Ensure it's written in a Cyrillic encoding
896
+ writer_class = codecs .getwriter ('cp1251' )
897
+ stream = cStringIO .StringIO ()
898
+ writer = writer_class (stream , 'strict' )
899
+ handler = logging .StreamHandler (writer )
900
+ log .addHandler (handler )
901
+ try :
902
+ log .warning (message )
903
+ finally :
904
+ log .removeHandler (handler )
905
+ handler .close ()
906
+ # check we wrote exactly those bytes, ignoring trailing \n etc
907
+ s = stream .getvalue ()
908
+ #Compare against what the data should be when encoded in CP-1251
909
+ self .assertEqual (s , '\xe4 \xee \xf1 \xe2 \xe8 \xe4 \xe0 \xed \xe8 \xff \n ' )
910
+
911
+
889
912
class WarningsTest (BaseTest ):
890
913
def test_warnings (self ):
891
914
logging .captureWarnings (True )
0 commit comments