2004-03-17 12:41:08 +00:00
|
|
|
from common import gst, unittest
|
|
|
|
|
|
|
|
import gobject
|
2004-10-11 08:45:04 +00:00
|
|
|
from gst import interfaces
|
2004-03-17 12:41:08 +00:00
|
|
|
|
|
|
|
class Availability(unittest.TestCase):
|
|
|
|
def testXOverlay(self):
|
|
|
|
assert hasattr(interfaces, 'XOverlay')
|
|
|
|
assert issubclass(interfaces.XOverlay, gobject.GInterface)
|
|
|
|
|
|
|
|
def testMixer(self):
|
|
|
|
assert hasattr(interfaces, 'Mixer')
|
|
|
|
assert issubclass(interfaces.Mixer, gobject.GInterface)
|
|
|
|
|
2004-10-11 08:45:04 +00:00
|
|
|
class FunctionCall(unittest.TestCase):
|
|
|
|
def testXOverlay(self):
|
|
|
|
element = gst.element_factory_make('xvimagesink')
|
|
|
|
assert isinstance(element, gst.Element)
|
|
|
|
assert isinstance(element, interfaces.XOverlay)
|
|
|
|
element.set_xwindow_id(0L)
|
2004-05-24 10:30:05 +00:00
|
|
|
|
2004-03-17 12:41:08 +00:00
|
|
|
if __name__ == "__main__":
|
|
|
|
unittest.main()
|