1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 52 53 54 55 56 57 58 59 60 61 62 63 64 65 66 67 68 69 70 71 72 73 74 75 76 77 78 79 80 81 82 83 84 85 86 87 88 89 90 91 92 93 94 95 96 97 98 99 100 101 102 103 104 105 106 107 108 109 110 111 112 113 114 115 116 117 118 119 120 121 122 123 124 125 126 127 128
|
# -*- mode: python; coding: utf-8 -*-
#
# Pigment Python tools unit tests
#
# Copyright © 2006, 2007, 2008 Fluendo Embedded S.L.
#
# This library is free software; you can redistribute it and/or
# modify it under the terms of the GNU Lesser General Public
# License as published by the Free Software Foundation; either
# version 2 of the License, or (at your option) any later version.
#
# This library is distributed in the hope that it will be useful,
# but WITHOUT ANY WARRANTY; without even the implied warranty of
# MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU
# Lesser General Public License for more details.
#
# You should have received a copy of the GNU Lesser General Public
# License along with this library; if not, write to the
# Free Software Foundation, Inc., 59 Temple Place - Suite 330,
# Boston, MA 02111-1307, USA.
import unittest
import sys
import gobject
from pgm.graph.image import Image
import pgm
class TestImage(unittest.TestCase):
def test_image(self):
img=Image()
img.position=(1.0, 1.0, 1.0)
self.assertEqual(img.x, 1.0)
self.assertEqual(img.y, 1.0)
self.assertEqual(img.z, 1.0)
self.assertEqual(pgm.Image.get_position(img), (1.0, 1.0, 1.0))
img.position_offset=(1.0, 1.0, 1.0)
self.assertEqual(img.x_offset, 1.0)
self.assertEqual(img.y_offset, 1.0)
self.assertEqual(img.z_offset, 1.0)
self.assertEqual(img.position, (1.0, 1.0, 1.0))
self.assertEqual(pgm.Image.get_position(img), (2.0, 2.0, 2.0))
img.y_offset = 2.0
self.assertEqual(img.position_offset, (1.0, 2.0, 1.0))
self.assertEqual(pgm.Image.get_position(img), (2.0, 3.0, 2.0))
img.visible=True
self.assertEqual(img.visible, True)
self.assertEqual(pgm.Image.is_visible(img), True)
img.parent_visibility=True
self.assertEqual(img.parent_visibility, True)
self.assertEqual(img.visible, True)
self.assertEqual(pgm.Image.is_visible(img), True)
img.parent_visibility=False
self.assertEqual(img.parent_visibility, False)
self.assertEqual(img.visible, False)
self.assertEqual(pgm.Image.is_visible(img), False)
img.visible=True
self.assertEqual(img.visible, False)
self.assertEqual(img.parent_visibility, False)
self.assertEqual(pgm.Image.is_visible(img), False)
img.parent_visibility=False
self.assertEqual(img.visible, False)
self.assertEqual(img.parent_visibility, False)
self.assertEqual(pgm.Image.is_visible(img), False)
img.parent_visibility=True
self.assertEqual(img.visible, True)
self.assertEqual(img.parent_visibility, True)
self.assertEqual(pgm.Image.is_visible(img), True)
img.parent_visibility=False
self.assertEqual(img.parent_visibility, False)
self.assertEqual(img.visible, False)
self.assertEqual(pgm.Image.is_visible(img), False)
img.visible=False
img.parent_visibility=True
img.parent_visibility=False
img.parent_visibility=True
self.assertEqual(img.visible, False)
self.assertEqual(img.parent_visibility, True)
self.assertEqual(pgm.Image.is_visible(img), False)
def test_refcount(self):
img = Image()
if gobject.pygobject_version >= (2, 13, 0):
initial_refcount = 2
# pgm.Canvas.add takes one reference with the new toggle_ref stuff,
# (when g_object_ref is called)
add_refs = 1
else:
initial_refcount = 3
add_refs = 0
self.assertEqual(sys.getrefcount(img), initial_refcount)
self.assertEqual(img.__gstrefcount__, 1)
canvas = pgm.Canvas()
canvas.add(pgm.DRAWABLE_MIDDLE, img)
self.assertEqual(sys.getrefcount(img), initial_refcount + add_refs)
self.assertEqual(img.__gstrefcount__, 2)
canvas.add(pgm.DRAWABLE_MIDDLE, img)
canvas.add(pgm.DRAWABLE_MIDDLE, img)
self.assertEqual(sys.getrefcount(img), initial_refcount + add_refs)
self.assertEqual(img.__gstrefcount__, 2)
canvas.remove(img)
self.assertEqual(sys.getrefcount(img), initial_refcount)
self.assertEqual(img.__gstrefcount__, 1)
canvas.remove(img)
canvas.remove(img)
self.assertEqual(sys.getrefcount(img), initial_refcount)
self.assertEqual(img.__gstrefcount__, 1)
|