Exemplo n.º 1
0
 def test_19(self):
     """ Test case 19 """
     inf = g.GifInfo(os.path.join(DIR, '..', 'test_files/19.gif'))
     self.assertTrue(inf.loops == "Infinity")
Exemplo n.º 2
0
 def test_17(self):
     """ Test case 17 """
     with self.assertRaises(ValueError):
         g.GifInfo(os.path.join(DIR, '..', 'test_files/17.gif'))
Exemplo n.º 3
0
 def test_18(self):
     """ Test case 18 """
     inf = g.GifInfo(os.path.join(DIR, '..', 'test_files/18.gif'))
     self.assertAlmostEqual(inf.aratio, 0)
Exemplo n.º 4
0
 def test_14(self):
     """ Test case 14 """
     inf = g.GifInfo(os.path.join(DIR, '..', 'test_files/14.gif'))
     self.assertTrue(len(inf.frames) > 100)
Exemplo n.º 5
0
 def test_16(self):
     """ Test case 16 """
     inf = g.GifInfo(os.path.join(DIR, '..', 'test_files/16.gif'))
     self.assertTrue(inf.frames)
Exemplo n.º 6
0
 def test_header(self):
     """ Parse title """
     inf = g.GifInfo(os.path.join(DIR, '..', 'test_files/col.gif'))
     self.assertTrue(inf.size[0] == inf.size[1])
Exemplo n.º 7
0
 def test_7(self):
     """ Test case 7 """
     inf = g.GifInfo(os.path.join(DIR, '..', 'test_files/7.gif'))
     self.assertTrue(len(inf.frames) == 7)
Exemplo n.º 8
0
 def test_extensions(self):
     """ Parse extensions """
     inf1 = g.GifInfo(os.path.join(DIR, '..', 'test_files/comm.gif'))
     inf2 = g.GifInfo(os.path.join(DIR, '..', 'test_files/col.gif'))
     inf3 = g.GifInfo(os.path.join(DIR, '..', 'test_files/frames.gif'))
     self.assertEqual(inf1.spec, inf2.spec, inf3.spec)
Exemplo n.º 9
0
 def test_frames(self):
     """ Parse frames """
     inf = g.GifInfo(os.path.join(DIR, '..', 'test_files/frames.gif'))
     self.assertTrue(len(inf.frames) == 16)
Exemplo n.º 10
0
 def test_colors(self):
     """  Parse colors table """
     inf = g.GifInfo(os.path.join(DIR, '..', 'test_files/col.gif'))
     self.assertTrue(len(inf.colors) == 4)
Exemplo n.º 11
0
 def test_comments(self):
     """ Parse comments ext """
     inf = g.GifInfo(os.path.join(DIR, '..', 'test_files/comm.gif'))
     self.assertTrue(len(inf.comments) > 0)
Exemplo n.º 12
0
 def test_20(self):
     """ Test case 20 """
     inf = g.GifInfo(os.path.join(DIR, '..', 'test_files/20.gif'))
     self.assertTrue(inf.loops == len(inf.frames))