Exemple #1
0
 def test_fixed8(self, _a, _b):
     parser = SWFParser(io.BytesIO(b'\x80\x07'))
     self.assertEqual(parser._get_struct_fixed8(), 7.5)
Exemple #2
0
 def test_encodedu32_simple(self, _a, _b):
     parser = SWFParser(io.BytesIO(b'\x3a'))
     self.assertEqual(parser._get_struct_encodedu32(), 58)
Exemple #3
0
 def test_encodedu32_several(self, _a, _b):
     parser = SWFParser(io.BytesIO(b'\x8c\xac\x29'))
     # compose: 0101001 0101100 0001100
     self.assertEqual(parser._get_struct_encodedu32(), 677388)
Exemple #4
0
 def test_rect_simple(self, _a, _b):
     parser = SWFParser(io.BytesIO(b'\x1b\xae\x80'))
     self.assertEqual(parser._get_struct_rect(), (3, 5, 3, 5))
Exemple #5
0
 def test_rect_long(self, _a, _b):
     parser = SWFParser(io.BytesIO(b'\x70\x00\x0a\x8c\x00\x00\xda\xc0'))
     self.assertEqual(parser._get_struct_rect(), (0, 5400, 0, 7000))
Exemple #6
0
 def test_encodedu32_several(self, _a, _b):
     parser = SWFParser(io.BytesIO(b'\x8c\xac\x29'))
     # compose: 0101001 0101100 0001100
     self.assertEqual(parser._get_struct_encodedu32(), 677388)
Exemple #7
0
 def test_encodedu32_simple(self, _a, _b):
     parser = SWFParser(io.BytesIO(b'\x3a'))
     self.assertEqual(parser._get_struct_encodedu32(), 58)
Exemple #8
0
 def test_rect_long(self, _a, _b):
     parser = SWFParser(io.BytesIO(b'\x70\x00\x0a\x8c\x00\x00\xda\xc0'))
     self.assertEqual(parser._get_struct_rect(), (0, 5400, 0, 7000))
Exemple #9
0
 def test_rect_simple(self, _a, _b):
     parser = SWFParser(io.BytesIO(b'\x1d\x71\x00'))
     self.assertEqual(parser._get_struct_rect(), (-3, 3, -4, 2))
Exemple #10
0
 def test_rect_simple(self, _a, _b):
     parser = SWFParser(io.BytesIO(b'\x1d\x71\x00'))
     self.assertEqual(parser._get_struct_rect(), (-3, 3, -4, 2))