예제 #1
0
 def test_parse_custom_length_field(self):
     s = PascalString("foo", length_field=UBInt16("length"), encoding="utf8")
     self.assertEqual(s.parse(six.b("\x00\x05hello")), six.u("hello"))
예제 #2
0
 def test_parse_custom_length_field(self):
     s = PascalString("foo",
                      length_field=UBInt16("length"),
                      encoding="utf8")
     self.assertEqual(s.parse(six.b("\x00\x05hello")), six.u("hello"))
예제 #3
0
 def test_parse(self):
     s = PascalString("foo", encoding="utf8")
     self.assertEqual(s.parse(six.b("\x05hello")), six.u("hello"))
예제 #4
0
 def test_parse(self):
     s = PascalString("foo", encoding="utf8")
     self.assertEqual(s.parse(six.b("\x05hello")), six.u("hello"))
예제 #5
0
 def test_parse_custom_length_field(self):
     s = PascalString("foo", length_field=UBInt16("length"))
     self.assertEqual(s.parse(b"\x00\x05hello"), b"hello")
예제 #6
0
 def test_parse(self):
     s = PascalString("foo")
     self.assertEqual(s.parse(b"\x05hello"), b"hello")
예제 #7
0
 def test_parse_custom_length_field(self):
     s = PascalString("s", lengthfield=UBInt16(None), encoding="utf8")
     self.assertEqual(s.parse(b"\x00\x05hello"), u"hello")
예제 #8
0
 def test_parse(self):
     s = PascalString("s", encoding="utf8")
     self.assertEqual(s.parse(b"\x05hello"), u"hello")
     s = PascalString("s")
     self.assertEqual(s.parse(b"\x05hello"), b"hello")