mirror of
				https://github.com/python/cpython.git
				synced 2025-11-04 03:44:55 +00:00 
			
		
		
		
	Changes to io.py, necessary to make this work: - Redid io.StringIO as a TextIOWrapper on top of a BytesIO instance. - Got rid of _MemoryIOMixin, folding it into BytesIO instead. - The read() functions that take -1 to mean "eveything" now also take None. - Added readline() support to BufferedIOBase. :-(
		
			
				
	
	
		
			51 lines
		
	
	
	
		
			1.8 KiB
		
	
	
	
		
			Python
		
	
	
	
	
	
			
		
		
	
	
			51 lines
		
	
	
	
		
			1.8 KiB
		
	
	
	
		
			Python
		
	
	
	
	
	
#!/usr/bin/env python
 | 
						|
#
 | 
						|
# test_codecencodings_kr.py
 | 
						|
#   Codec encoding tests for ROK encodings.
 | 
						|
#
 | 
						|
 | 
						|
from test import test_support
 | 
						|
from test import test_multibytecodec_support
 | 
						|
import unittest
 | 
						|
 | 
						|
class Test_CP949(test_multibytecodec_support.TestBase, unittest.TestCase):
 | 
						|
    encoding = 'cp949'
 | 
						|
    tstring = test_multibytecodec_support.load_teststring('cp949')
 | 
						|
    codectests = (
 | 
						|
        # invalid bytes
 | 
						|
        (b"abc\x80\x80\xc1\xc4", "strict",  None),
 | 
						|
        (b"abc\xc8", "strict",  None),
 | 
						|
        (b"abc\x80\x80\xc1\xc4", "replace", "abc\ufffd\uc894"),
 | 
						|
        (b"abc\x80\x80\xc1\xc4\xc8", "replace", "abc\ufffd\uc894\ufffd"),
 | 
						|
        (b"abc\x80\x80\xc1\xc4", "ignore",  "abc\uc894"),
 | 
						|
    )
 | 
						|
 | 
						|
class Test_EUCKR(test_multibytecodec_support.TestBase, unittest.TestCase):
 | 
						|
    encoding = 'euc_kr'
 | 
						|
    tstring = test_multibytecodec_support.load_teststring('euc_kr')
 | 
						|
    codectests = (
 | 
						|
        # invalid bytes
 | 
						|
        (b"abc\x80\x80\xc1\xc4", "strict",  None),
 | 
						|
        (b"abc\xc8", "strict",  None),
 | 
						|
        (b"abc\x80\x80\xc1\xc4", "replace", "abc\ufffd\uc894"),
 | 
						|
        (b"abc\x80\x80\xc1\xc4\xc8", "replace", "abc\ufffd\uc894\ufffd"),
 | 
						|
        (b"abc\x80\x80\xc1\xc4", "ignore",  "abc\uc894"),
 | 
						|
    )
 | 
						|
 | 
						|
class Test_JOHAB(test_multibytecodec_support.TestBase, unittest.TestCase):
 | 
						|
    encoding = 'johab'
 | 
						|
    tstring = test_multibytecodec_support.load_teststring('johab')
 | 
						|
    codectests = (
 | 
						|
        # invalid bytes
 | 
						|
        (b"abc\x80\x80\xc1\xc4", "strict",  None),
 | 
						|
        (b"abc\xc8", "strict",  None),
 | 
						|
        (b"abc\x80\x80\xc1\xc4", "replace", "abc\ufffd\ucd27"),
 | 
						|
        (b"abc\x80\x80\xc1\xc4\xc8", "replace", "abc\ufffd\ucd27\ufffd"),
 | 
						|
        (b"abc\x80\x80\xc1\xc4", "ignore",  "abc\ucd27"),
 | 
						|
    )
 | 
						|
 | 
						|
def test_main():
 | 
						|
    test_support.run_unittest(__name__)
 | 
						|
 | 
						|
if __name__ == "__main__":
 | 
						|
    test_main()
 |