!C99Shell v. 1.0 pre-release build #13!

Software: Apache/2.0.54 (Unix) mod_perl/1.99_09 Perl/v5.8.0 mod_ssl/2.0.54 OpenSSL/0.9.7l DAV/2 FrontPage/5.0.2.2635 PHP/4.4.0 mod_gzip/2.0.26.1a 

uname -a: Linux snow.he.net 4.4.276-v2-mono-1 #1 SMP Wed Jul 21 11:21:17 PDT 2021 i686 

uid=99(nobody) gid=98(nobody) groups=98(nobody) 

Safe-mode: OFF (not secure)

/opt/lib/python2.3/test/   drwxr-xr-x
Free 318.38 GB of 458.09 GB (69.5%)
Home    Back    Forward    UPDIR    Refresh    Search    Buffer    Encoder    Tools    Proc.    FTP brute    Sec.    SQL    PHP-code    Update    Feedback    Self remove    Logout    


Viewing file:     test_codeccallbacks.py (27.19 KB)      -rw-r--r--
Select action/file-type:
(+) | (+) | (+) | Code (+) | Session (+) | (+) | SDB (+) | (+) | (+) | (+) | (+) | (+) |
import test.test_support, unittest
import sys, codecs, htmlentitydefs, unicodedata

class PosReturn:
    # this can be used for configurable callbacks

    def __init__(self):
        self.pos = 0

    def handle(self, exc):
        oldpos = self.pos
        realpos = oldpos
        if realpos<0:
            realpos = len(exc.object) + realpos
        # if we don't advance this time, terminate on the next call
        # otherwise we'd get an endless loop
        if realpos <= exc.start:
            self.pos = len(exc.object)
        return (u"<?>", oldpos)

class CodecCallbackTest(unittest.TestCase):

    def test_xmlcharrefreplace(self):
        # replace unencodable characters which numeric character entities.
        # For ascii, latin-1 and charmaps this is completely implemented
        # in C and should be reasonably fast.
        s = u"
u30b9u30d1u30e2 xe4nd eggs"
        self.assertEqual(
            s.encode("
ascii", "xmlcharrefreplace"),
            "
&#12473;&#12497;&#12514; &#228;nd eggs"
        
)
        
self.assertEqual(
            
s.encode("latin-1""xmlcharrefreplace"),
            
"&#12473;&#12497;&#12514; \xe4nd eggs"
        
)

    
def test_xmlcharnamereplace(self):
        
# This time use a named character entity for unencodable
        # characters, if one is available.

        
def xmlcharnamereplace(exc):
            if 
not isinstance(excUnicodeEncodeError):
                
raise TypeError("don't know how to handle %r" exc)
            
= []
            for 
c in exc.object[exc.start:exc.end]:
                
try:
                    
l.append(u"&%s;" htmlentitydefs.codepoint2name[ord(c)])
                
except KeyError:
                    
l.append(u"&#%d;" ord(c))
            return (
u"".join(l), exc.end)

        
codecs.register_error(
            
"test.xmlcharnamereplace"xmlcharnamereplace)

        
sin u"\xab\u211c\xbb = \u2329\u1234\u20ac\u232a"
        
sout "&laquo;&real;&raquo; = &lang;&#4660;&euro;&rang;"
        
self.assertEqual(sin.encode("ascii""test.xmlcharnamereplace"), sout)
        
sout "\xab&real;\xbb = &lang;&#4660;&euro;&rang;"
        
self.assertEqual(sin.encode("latin-1""test.xmlcharnamereplace"), sout)
        
sout "\xab&real;\xbb = &lang;&#4660;\xa4&rang;"
        
self.assertEqual(sin.encode("iso-8859-15""test.xmlcharnamereplace"), sout)

    
def test_uninamereplace(self):
        
# We're using the names from the unicode database this time,
        # and we're doing "syntax highlighting" here, i.e. we include
        # the replaced text in ANSI escape sequences. For this it is
        # useful that the error handler is not called for every single
        # unencodable character, but for a complete sequence of
        # unencodable characters, otherwise we would output many
        # unneccessary escape sequences.

        
def uninamereplace(exc):
            if 
not isinstance(excUnicodeEncodeError):
                
raise TypeError("don't know how to handle %r" exc)
            
= []
            for 
c in exc.object[exc.start:exc.end]:
                
l.append(unicodedata.name(cu"0x%x" ord(c)))
            return (
u"\033[1m%s\033[0m" u", ".join(l), exc.end)

        
codecs.register_error(
            
"test.uninamereplace"uninamereplace)

        
sin u"\xac\u1234\u20ac\u8000"
        
sout "\033[1mNOT SIGN, ETHIOPIC SYLLABLE SEE, EURO SIGN, CJK UNIFIED IDEOGRAPH-8000\033[0m"
        
self.assertEqual(sin.encode("ascii""test.uninamereplace"), sout)

        
sout "\xac\033[1mETHIOPIC SYLLABLE SEE, EURO SIGN, CJK UNIFIED IDEOGRAPH-8000\033[0m"
        
self.assertEqual(sin.encode("latin-1""test.uninamereplace"), sout)

        
sout "\xac\033[1mETHIOPIC SYLLABLE SEE\033[0m\xa4\033[1mCJK UNIFIED IDEOGRAPH-8000\033[0m"
        
self.assertEqual(sin.encode("iso-8859-15""test.uninamereplace"), sout)

    
def test_backslashescape(self):
        
# Does the same as the "unicode-escape" encoding, but with different
        # base encodings.
        
sin u"a\xac\u1234\u20ac\u8000"
        
if sys.maxunicode 0xffff:
            
sin += unichr(sys.maxunicode)
        
sout "a\\xac\\u1234\\u20ac\\u8000"
        
if sys.maxunicode 0xffff:
            
sout += "\\U%08x" sys.maxunicode
        self
.assertEqual(sin.encode("ascii""backslashreplace"), sout)

        
sout "a\xac\\u1234\\u20ac\\u8000"
        
if sys.maxunicode 0xffff:
            
sout += "\\U%08x" sys.maxunicode
        self
.assertEqual(sin.encode("latin-1""backslashreplace"), sout)

        
sout "a\xac\\u1234\xa4\\u8000"
        
if sys.maxunicode 0xffff:
            
sout += "\\U%08x" sys.maxunicode
        self
.assertEqual(sin.encode("iso-8859-15""backslashreplace"), sout)

    
def test_relaxedutf8(self):
        
# This is the test for a decoding callback handler,
        # that relaxes the UTF-8 minimal encoding restriction.
        # A null byte that is encoded as "\xc0\x80" will be
        # decoded as a null byte. All other illegal sequences
        # will be handled strictly.
        
def relaxedutf8(exc):
            if 
not isinstance(excUnicodeDecodeError):
                
raise TypeError("don't know how to handle %r" exc)
            if 
exc.object[exc.start:exc.end].startswith("\xc0\x80"):
                return (
u"\x00"exc.start+2# retry after two bytes
            
else:
                
raise exc

        codecs
.register_error(
            
"test.relaxedutf8"relaxedutf8)

        
sin "a\x00b\xc0\x80c\xc3\xbc\xc0\x80\xc0\x80"
        
sout u"a\x00b\x00c\xfc\x00\x00"
        
self.assertEqual(sin.decode("utf-8""test.relaxedutf8"), sout)
        
sin "\xc0\x80\xc0\x81"
        
self.assertRaises(UnicodeErrorsin.decode"utf-8""test.relaxedutf8")

    
def test_charmapencode(self):
        
# For charmap encodings the replacement string will be
        # mapped through the encoding again. This means, that
        # to be able to use e.g. the "replace" handler, the
        # charmap has to have a mapping for "?".
        
charmap dict([ (ord(c), 2*c.upper()) for c in "abcdefgh"])
        
sin u"abc"
        
sout "AABBCC"
        
self.assertEquals(codecs.charmap_encode(sin"strict"charmap)[0], sout)

        
sin u"abcA"
        
self.assertRaises(UnicodeErrorcodecs.charmap_encodesin"strict"charmap)

        
charmap[ord("?")] = "XYZ"
        
sin u"abcDEF"
        
sout "AABBCCXYZXYZXYZ"
        
self.assertEquals(codecs.charmap_encode(sin"replace"charmap)[0], sout)

        
charmap[ord("?")] = u"XYZ"
        
self.assertRaises(TypeErrorcodecs.charmap_encodesin"replace"charmap)

        
charmap[ord("?")] = u"XYZ"
        
self.assertRaises(TypeErrorcodecs.charmap_encodesin"replace"charmap)

    
def test_callbacks(self):
        
def handler1(exc):
            if 
not isinstance(excUnicodeEncodeError
               and 
not isinstance(excUnicodeDecodeError):
                
raise TypeError("don't know how to handle %r" exc)
            
= [u"<%d>" ord(exc.object[pos]) for pos in xrange(exc.startexc.end)]
            return (
u"[%s]" u"".join(l), exc.end)

        
codecs.register_error("test.handler1"handler1)

        
def handler2(exc):
            if 
not isinstance(excUnicodeDecodeError):
                
raise TypeError("don't know how to handle %r" exc)
            
= [u"<%d>" ord(exc.object[pos]) for pos in xrange(exc.startexc.end)]
            return (
u"[%s]" u"".join(l), exc.end+1# skip one character

        
codecs.register_error("test.handler2"handler2)

        
"\x00\x81\x7f\x80\xff"

        
self.assertEqual(
            
s.decode("ascii""test.handler1"),
            
u"\x00[<129>]\x7f[<128>][<255>]"
        
)
        
self.assertEqual(
            
s.decode("ascii""test.handler2"),
            
u"\x00[<129>][<128>]"
        
)

        
self.assertEqual(
            
"\\u3042\u3xxx".decode("unicode-escape""test.handler1"),
            
u"\u3042[<92><117><51><120>]xx"
        
)

        
self.assertEqual(
            
"\\u3042\u3xx".decode("unicode-escape""test.handler1"),
            
u"\u3042[<92><117><51><120><120>]"
        
)

        
self.assertEqual(
            
codecs.charmap_decode("abc""test.handler1", {ord("a"): u"z"})[0],
            
u"z[<98>][<99>]"
        
)

        
self.assertEqual(
            
u"g\xfc\xdfrk".encode("ascii""test.handler1"),
            
u"g[<252><223>]rk"
        
)

        
self.assertEqual(
            
u"g\xfc\xdf".encode("ascii""test.handler1"),
            
u"g[<252><223>]"
        
)

    
def test_longstrings(self):
        
# test long strings to check for memory overflow problems
        
errors = [ "strict""ignore""replace""xmlcharrefreplace""backslashreplace"]
        
# register the handlers under different names,
        # to prevent the codec from recognizing the name
        
for err in errors:
            
codecs.register_error("test." errcodecs.lookup_error(err))
        
1000
        errors 
+= [ "test." err for err in errors ]
        for 
uni in s*for s in (u"x"u"\u3042"u"a\xe4") ]:
            for 
enc in ("ascii""latin-1""iso-8859-1""iso-8859-15""utf-8""utf-7""utf-16"):
                for 
err in errors:
                    
try:
                        
uni.encode(encerr)
                    
except UnicodeError:
                        
pass

    def check_exceptionobjectargs
(selfexctypeargsmsg):
        
# Test UnicodeError subclasses: construction, attribute assignment and __str__ conversion
        # check with one missing argument
        
self.assertRaises(TypeErrorexctype, *args[:-1])
        
# check with one argument too much
        
self.assertRaises(TypeErrorexctype, *(args + ["too much"]))
        
# check with one argument of the wrong type
        
wrongargs = [ "spam"u"eggs"421.0None ]
        for 
i in xrange(len(args)):
            for 
wrongarg in wrongargs:
                if 
type(wrongargis type(args[i]):
                    continue
                
# build argument array
                
callargs = []
                for 
j in xrange(len(args)):
                    if 
i==j:
                        
callargs.append(wrongarg)
                    else:
                        
callargs.append(args[i])
                
self.assertRaises(TypeErrorexctype, *callargs)

        
# check with the correct number and type of arguments
        
exc exctype(*args)
        
self.assertEquals(str(exc), msg)

    
def test_unicodeencodeerror(self):
        
self.check_exceptionobjectargs(
            
UnicodeEncodeError,
            [
"ascii"u"g\xfcrk"12"ouch"],
            
"'ascii' codec can't encode character u'\\xfc' in position 1: ouch"
        
)
        
self.check_exceptionobjectargs(
            
UnicodeEncodeError,
            [
"ascii"u"g\xfcrk"14"ouch"],
            
"'ascii' codec can't encode characters in position 1-3: ouch"
        
)
        
self.check_exceptionobjectargs(
            
UnicodeEncodeError,
            [
"ascii"u"\xfcx"01"ouch"],
            
"'ascii' codec can't encode character u'\\xfc' in position 0: ouch"
        
)
        
self.check_exceptionobjectargs(
            
UnicodeEncodeError,
            [
"ascii"u"\u0100x"01"ouch"],
            
"'ascii' codec can't encode character u'\\u0100' in position 0: ouch"
        
)
        
self.check_exceptionobjectargs(
            
UnicodeEncodeError,
            [
"ascii"u"\uffffx"01"ouch"],
            
"'ascii' codec can't encode character u'\\uffff' in position 0: ouch"
        
)
        if 
sys.maxunicode 0xffff:
            
self.check_exceptionobjectargs(
                
UnicodeEncodeError,
                [
"ascii"u"\U00010000x"01"ouch"],
                
"'ascii' codec can't encode character u'\\U00010000' in position 0: ouch"
            
)

    
def test_unicodedecodeerror(self):
        
self.check_exceptionobjectargs(
            
UnicodeDecodeError,
            [
"ascii""g\xfcrk"12"ouch"],
            
"'ascii' codec can't decode byte 0xfc in position 1: ouch"
        
)
        
self.check_exceptionobjectargs(
            
UnicodeDecodeError,
            [
"ascii""g\xfcrk"13"ouch"],
            
"'ascii' codec can't decode bytes in position 1-2: ouch"
        
)

    
def test_unicodetranslateerror(self):
        
self.check_exceptionobjectargs(
            
UnicodeTranslateError,
            [
u"g\xfcrk"12"ouch"],
            
"can't translate character u'\\xfc' in position 1: ouch"
        
)
        
self.check_exceptionobjectargs(
            
UnicodeTranslateError,
            [
u"g\u0100rk"12"ouch"],
            
"can't translate character u'\\u0100' in position 1: ouch"
        
)
        
self.check_exceptionobjectargs(
            
UnicodeTranslateError,
            [
u"g\uffffrk"12"ouch"],
            
"can't translate character u'\\uffff' in position 1: ouch"
        
)
        if 
sys.maxunicode 0xffff:
            
self.check_exceptionobjectargs(
                
UnicodeTranslateError,
                [
u"g\U00010000rk"12"ouch"],
                
"can't translate character u'\\U00010000' in position 1: ouch"
            
)
        
self.check_exceptionobjectargs(
            
UnicodeTranslateError,
            [
u"g\xfcrk"13"ouch"],
            
"can't translate characters in position 1-2: ouch"
        
)

    
def test_badandgoodstrictexceptions(self):
        
# "strict" complains about a non-exception passed in
        
self.assertRaises(
            
TypeError,
            
codecs.strict_errors,
            
42
        
)
        
# "strict" complains about the wrong exception type
        
self.assertRaises(
            
Exception,
            
codecs.strict_errors,
            
Exception("ouch")
        )

        
# If the correct exception is passed in, "strict" raises it
        
self.assertRaises(
            
UnicodeEncodeError,
            
codecs.strict_errors,
            
UnicodeEncodeError("ascii"u"\u3042"01"ouch")
        )

    
def test_badandgoodignoreexceptions(self):
        
# "ignore" complains about a non-exception passed in
        
self.assertRaises(
           
TypeError,
           
codecs.ignore_errors,
           
42
        
)
        
# "ignore" complains about the wrong exception type
        
self.assertRaises(
           
TypeError,
           
codecs.ignore_errors,
           
UnicodeError("ouch")
        )
        
# If the correct exception is passed in, "ignore" returns an empty replacement
        
self.assertEquals(
            
codecs.ignore_errors(UnicodeEncodeError("ascii"u"\u3042"01"ouch")),
            (
u""1)
        )
        
self.assertEquals(
            
codecs.ignore_errors(UnicodeDecodeError("ascii""\xff"01"ouch")),
            (
u""1)
        )
        
self.assertEquals(
            
codecs.ignore_errors(UnicodeTranslateError(u"\u3042"01"ouch")),
            (
u""1)
        )

    
def test_badandgoodreplaceexceptions(self):
        
# "replace" complains about a non-exception passed in
        
self.assertRaises(
           
TypeError,
           
codecs.replace_errors,
           
42
        
)
        
# "replace" complains about the wrong exception type
        
self.assertRaises(
           
TypeError,
           
codecs.replace_errors,
           
UnicodeError("ouch")
        )
        
# With the correct exception, "ignore" returns an empty replacement
        
self.assertEquals(
            
codecs.replace_errors(UnicodeEncodeError("ascii"u"\u3042"01"ouch")),
            (
u"?"1)
        )
        
self.assertEquals(
            
codecs.replace_errors(UnicodeDecodeError("ascii""\xff"01"ouch")),
            (
u"\ufffd"1)
        )
        
self.assertEquals(
            
codecs.replace_errors(UnicodeTranslateError(u"\u3042"01"ouch")),
            (
u"\ufffd"1)
        )

    
def test_badandgoodxmlcharrefreplaceexceptions(self):
        
# "xmlcharrefreplace" complains about a non-exception passed in
        
self.assertRaises(
           
TypeError,
           
codecs.xmlcharrefreplace_errors,
           
42
        
)
        
# "xmlcharrefreplace" complains about the wrong exception types
        
self.assertRaises(
           
TypeError,
           
codecs.xmlcharrefreplace_errors,
           
UnicodeError("ouch")
        )
        
# "xmlcharrefreplace" can only be used for encoding
        
self.assertRaises(
            
TypeError,
            
codecs.xmlcharrefreplace_errors,
            
UnicodeDecodeError("ascii""\xff"01"ouch")
        )
        
self.assertRaises(
            
TypeError,
            
codecs.xmlcharrefreplace_errors,
            
UnicodeTranslateError(u"\u3042"01"ouch")
        )
        
# Use the correct exception
        
self.assertEquals(
            
codecs.xmlcharrefreplace_errors(UnicodeEncodeError("ascii"u"\u3042"01"ouch")),
            (
u"&#%d;" 0x30421)
        )

    
def test_badandgoodbackslashreplaceexceptions(self):
        
# "backslashreplace" complains about a non-exception passed in
        
self.assertRaises(
           
TypeError,
           
codecs.backslashreplace_errors,
           
42
        
)
        
# "backslashreplace" complains about the wrong exception types
        
self.assertRaises(
           
TypeError,
           
codecs.backslashreplace_errors,
           
UnicodeError("ouch")
        )
        
# "backslashreplace" can only be used for encoding
        
self.assertRaises(
            
TypeError,
            
codecs.backslashreplace_errors,
            
UnicodeDecodeError("ascii""\xff"01"ouch")
        )
        
self.assertRaises(
            
TypeError,
            
codecs.backslashreplace_errors,
            
UnicodeTranslateError(u"\u3042"01"ouch")
        )
        
# Use the correct exception
        
self.assertEquals(
            
codecs.backslashreplace_errors(UnicodeEncodeError("ascii"u"\u3042"01"ouch")),
            (
u"\\u3042"1)
        )
        
self.assertEquals(
            
codecs.backslashreplace_errors(UnicodeEncodeError("ascii"u"\x00"01"ouch")),
            (
u"\\x00"1)
        )
        
self.assertEquals(
            
codecs.backslashreplace_errors(UnicodeEncodeError("ascii"u"\xff"01"ouch")),
            (
u"\\xff"1)
        )
        
self.assertEquals(
            
codecs.backslashreplace_errors(UnicodeEncodeError("ascii"u"\u0100"01"ouch")),
            (
u"\\u0100"1)
        )
        
self.assertEquals(
            
codecs.backslashreplace_errors(UnicodeEncodeError("ascii"u"\uffff"01"ouch")),
            (
u"\\uffff"1)
        )
        if 
sys.maxunicode>0xffff:
            
self.assertEquals(
                
codecs.backslashreplace_errors(UnicodeEncodeError("ascii"u"\U00010000"01"ouch")),
                (
u"\\U00010000"1)
            )
            
self.assertEquals(
                
codecs.backslashreplace_errors(UnicodeEncodeError("ascii"u"\U0010ffff"01"ouch")),
                (
u"\\U0010ffff"1)
            )

    
def test_badhandlerresults(self):
        
results = ( 42u"foo", (1,2,3), (u"foo"13), (u"foo"None), (u"foo",), ("foo"13), ("foo"None), ("foo",) )
        
encs = ("ascii""latin-1""iso-8859-1""iso-8859-15")

        for 
res in results:
            
codecs.register_error("test.badhandler"lambdares)
            for 
enc in encs:
                
self.assertRaises(
                    
TypeError,
                    
u"\u3042".encode,
                    
enc,
                    
"test.badhandler"
                
)
            for (
encbytesin (
                (
"ascii""\xff"),
                (
"utf-8""\xff"),
                (
"utf-7""+x-")
            ):
                
self.assertRaises(
                    
TypeError,
                    
bytes.decode,
                    
enc,
                    
"test.badhandler"
                
)

    
def test_lookup(self):
        
self.assertEquals(codecs.strict_errorscodecs.lookup_error("strict"))
        
self.assertEquals(codecs.ignore_errorscodecs.lookup_error("ignore"))
        
self.assertEquals(codecs.strict_errorscodecs.lookup_error("strict"))
        
self.assertEquals(
            
codecs.xmlcharrefreplace_errors,
            
codecs.lookup_error("xmlcharrefreplace")
        )
        
self.assertEquals(
            
codecs.backslashreplace_errors,
            
codecs.lookup_error("backslashreplace")
        )

    
def test_unencodablereplacement(self):
        
def unencrepl(exc):
            if 
isinstance(excUnicodeEncodeError):
                return (
u"\u4242"exc.end)
            else:
                
raise TypeError("don't know how to handle %r" exc)
        
codecs.register_error("test.unencreplhandler"unencrepl)
        for 
enc in ("ascii""iso-8859-1""iso-8859-15"):
            
self.assertRaises(
                
UnicodeEncodeError,
                
u"\u4242".encode,
                
enc,
                
"test.unencreplhandler"
            
)

    
def test_badregistercall(self):
        
# enhance coverage of:
        # Modules/_codecsmodule.c::register_error()
        # Python/codecs.c::PyCodec_RegisterError()
        
self.assertRaises(TypeErrorcodecs.register_error42)
        
self.assertRaises(TypeErrorcodecs.register_error"test.dummy"42)

    
def test_unknownhandler(self):
        
# enhance coverage of:
        # Modules/_codecsmodule.c::lookup_error()
        
self.assertRaises(LookupErrorcodecs.lookup_error"test.unknown")

    
def test_xmlcharrefvalues(self):
        
# enhance coverage of:
        # Python/codecs.c::PyCodec_XMLCharRefReplaceErrors()
        # and inline implementations
        
= (151050100500100050001000050000)
        if 
sys.maxunicode>=100000:
            
+= (1000005000001000000)
        
u"".join([unichr(x) for x in v])
        
codecs.register_error("test.xmlcharrefreplace"codecs.xmlcharrefreplace_errors)
        for 
enc in ("ascii""iso-8859-15"):
            for 
err in ("xmlcharrefreplace""test.xmlcharrefreplace"):
                
s.encode(encerr)

    
def test_decodehelper(self):
        
# enhance coverage of:
        # Objects/unicodeobject.c::unicode_decode_call_errorhandler()
        # and callers
        
self.assertRaises(LookupError"\xff".decode"ascii""test.unknown")

        
def baddecodereturn1(exc):
            return 
42
        codecs
.register_error("test.baddecodereturn1"baddecodereturn1)
        
self.assertRaises(TypeError"\xff".decode"ascii""test.baddecodereturn1")
        
self.assertRaises(TypeError"\\".decode"unicode-escape""test.baddecodereturn1")
        
self.assertRaises(TypeError"\\x0".decode"unicode-escape""test.baddecodereturn1")
        
self.assertRaises(TypeError"\\x0y".decode"unicode-escape""test.baddecodereturn1")
        
self.assertRaises(TypeError"\\Uffffeeee".decode"unicode-escape""test.baddecodereturn1")
        
self.assertRaises(TypeError"\\uyyyy".decode"raw-unicode-escape""test.baddecodereturn1")

        
def baddecodereturn2(exc):
            return (
u"?"None)
        
codecs.register_error("test.baddecodereturn2"baddecodereturn2)
        
self.assertRaises(TypeError"\xff".decode"ascii""test.baddecodereturn2")

        
handler PosReturn()
        
codecs.register_error("test.posreturn"handler.handle)

        
# Valid negative position
        
handler.pos = -1
        self
.assertEquals("\xff0".decode("ascii""test.posreturn"), u"<?>0")

        
# Valid negative position
        
handler.pos = -2
        self
.assertEquals("\xff0".decode("ascii""test.posreturn"), u"<?><?>")

        
# Negative position out of bounds
        
handler.pos = -3
        self
.assertRaises(IndexError"\xff0".decode"ascii""test.posreturn")

        
# Valid positive position
        
handler.pos 1
        self
.assertEquals("\xff0".decode("ascii""test.posreturn"), u"<?>0")

        
# Largest valid positive position (one beyond end of input
        
handler.pos 2
        self
.assertEquals("\xff0".decode("ascii""test.posreturn"), u"<?>")

        
# Invalid positive position
        
handler.pos 3
        self
.assertRaises(IndexError"\xff0".decode"ascii""test.posreturn")

        
# Restart at the "0"
        
handler.pos 6
        self
.assertEquals("\\uyyyy0".decode("raw-unicode-escape""test.posreturn"), u"<?>0")

        class 
D(dict):
            
def __getitem__(selfkey):
                
raise ValueError
        self
.assertRaises(UnicodeErrorcodecs.charmap_decode"\xff""strict", {0xffNone})
        
self.assertRaises(ValueErrorcodecs.charmap_decode"\xff""strict"D())
        
self.assertRaises(TypeErrorcodecs.charmap_decode"\xff""strict", {0xffsys.maxunicode+1})

    
def test_encodehelper(self):
        
# enhance coverage of:
        # Objects/unicodeobject.c::unicode_encode_call_errorhandler()
        # and callers
        
self.assertRaises(LookupErroru"\xff".encode"ascii""test.unknown")

        
def badencodereturn1(exc):
            return 
42
        codecs
.register_error("test.badencodereturn1"badencodereturn1)
        
self.assertRaises(TypeErroru"\xff".encode"ascii""test.badencodereturn1")

        
def badencodereturn2(exc):
            return (
u"?"None)
        
codecs.register_error("test.badencodereturn2"badencodereturn2)
        
self.assertRaises(TypeErroru"\xff".encode"ascii""test.badencodereturn2")

        
handler PosReturn()
        
codecs.register_error("test.posreturn"handler.handle)

        
# Valid negative position
        
handler.pos = -1
        self
.assertEquals(u"\xff0".encode("ascii""test.posreturn"), "<?>0")

        
# Valid negative position
        
handler.pos = -2
        self
.assertEquals(u"\xff0".encode("ascii""test.posreturn"), "<?><?>")

        
# Negative position out of bounds
        
handler.pos = -3
        self
.assertRaises(IndexErroru"\xff0".encode"ascii""test.posreturn")

        
# Valid positive position
        
handler.pos 1
        self
.assertEquals(u"\xff0".encode("ascii""test.posreturn"), "<?>0")

        
# Largest valid positive position (one beyond end of input
        
handler.pos 2
        self
.assertEquals(u"\xff0".encode("ascii""test.posreturn"), "<?>")

        
# Invalid positive position
        
handler.pos 3
        self
.assertRaises(IndexErroru"\xff0".encode"ascii""test.posreturn")

        
handler.pos 0

        
class D(dict):
            
def __getitem__(selfkey):
                
raise ValueError
        
for err in ("strict""replace""xmlcharrefreplace""backslashreplace""test.posreturn"):
            
self.assertRaises(UnicodeErrorcodecs.charmap_encodeu"\xff"err, {0xffNone})
            
self.assertRaises(ValueErrorcodecs.charmap_encodeu"\xff"errD())
            
self.assertRaises(TypeErrorcodecs.charmap_encodeu"\xff"err, {0xff300})

    
def test_translatehelper(self):
        
# enhance coverage of:
        # Objects/unicodeobject.c::unicode_encode_call_errorhandler()
        # and callers
        # (Unfortunately the errors argument is not directly accessible
        # from Python, so we can't test that much)
        
class D(dict):
            
def __getitem__(selfkey):
                
raise ValueError
        self
.assertRaises(ValueErroru"\xff".translateD())
        
self.assertRaises(TypeErroru"\xff".translate, {0xffsys.maxunicode+1})
        
self.assertRaises(TypeErroru"\xff".translate, {0xff: ()})

    
def test_bug828737(self):
        
charmap = {
            
ord("&"): u"&amp;",
            
ord("<"): u"&lt;",
            
ord(">"): u"&gt;",
            
ord('"'): u"&quot;",
        }
        
        for 
n in (1101001000):
            
text u'abc<def>ghi'*n
            text
.translate(charmap)

def test_main():
    
test.test_support.run_unittest(CodecCallbackTest)

if 
__name__ == "__main__":
    
test_main()

:: Command execute ::

Enter:
 
Select:
 

:: Search ::
  - regexp 

:: Upload ::
 
[ Read-Only ]

:: Make Dir ::
 
[ Read-Only ]
:: Make File ::
 
[ Read-Only ]

:: Go Dir ::
 
:: Go File ::
 

--[ c99shell v. 1.0 pre-release build #13 powered by Captain Crunch Security Team | http://ccteam.ru | Generation time: 0.009 ]--