~ubuntu-branches/ubuntu/trusty/python3.4/trusty-proposed

« back to all changes in this revision

Viewing changes to Lib/test/test_codecencodings_iso2022.py

  • Committer: Package Import Robot
  • Author(s): Matthias Klose
  • Date: 2013-11-25 09:44:27 UTC
  • Revision ID: package-import@ubuntu.com-20131125094427-lzxj8ap5w01lmo7f
Tags: upstream-3.4~b1
ImportĀ upstreamĀ versionĀ 3.4~b1

Show diffs side-by-side

added added

removed removed

Lines of Context:
 
1
#!/usr/bin/env python
 
2
#
 
3
# Codec encoding tests for ISO 2022 encodings.
 
4
 
 
5
from test import support
 
6
from test import multibytecodec_support
 
7
import unittest
 
8
 
 
9
COMMON_CODEC_TESTS = (
 
10
        # invalid bytes
 
11
        (b'ab\xFFcd', 'replace', 'ab\uFFFDcd'),
 
12
        (b'ab\x1Bdef', 'replace', 'ab\x1Bdef'),
 
13
        (b'ab\x1B$def', 'replace', 'ab\uFFFD'),
 
14
    )
 
15
 
 
16
class Test_ISO2022_JP(multibytecodec_support.TestBase, unittest.TestCase):
 
17
    encoding = 'iso2022_jp'
 
18
    tstring = multibytecodec_support.load_teststring('iso2022_jp')
 
19
    codectests = COMMON_CODEC_TESTS + (
 
20
        (b'ab\x1BNdef', 'replace', 'ab\x1BNdef'),
 
21
    )
 
22
 
 
23
class Test_ISO2022_JP2(multibytecodec_support.TestBase, unittest.TestCase):
 
24
    encoding = 'iso2022_jp_2'
 
25
    tstring = multibytecodec_support.load_teststring('iso2022_jp')
 
26
    codectests = COMMON_CODEC_TESTS + (
 
27
        (b'ab\x1BNdef', 'replace', 'abdef'),
 
28
    )
 
29
 
 
30
class Test_ISO2022_KR(multibytecodec_support.TestBase, unittest.TestCase):
 
31
    encoding = 'iso2022_kr'
 
32
    tstring = multibytecodec_support.load_teststring('iso2022_kr')
 
33
    codectests = COMMON_CODEC_TESTS + (
 
34
        (b'ab\x1BNdef', 'replace', 'ab\x1BNdef'),
 
35
    )
 
36
 
 
37
    # iso2022_kr.txt cannot be used to test "chunk coding": the escape
 
38
    # sequence is only written on the first line
 
39
    def test_chunkcoding(self):
 
40
        pass
 
41
 
 
42
def test_main():
 
43
    support.run_unittest(__name__)
 
44
 
 
45
if __name__ == "__main__":
 
46
    test_main()