2005-09-01 10:36:07 +00:00
|
|
|
# -*- Mode: Python -*-
|
|
|
|
# vi:si:et:sw=4:sts=4:ts=4
|
|
|
|
#
|
|
|
|
# gst-python - Python bindings for GStreamer
|
|
|
|
# Copyright (C) 2002 David I. Lehn
|
|
|
|
# Copyright (C) 2004 Johan Dahlin
|
|
|
|
# Copyright (C) 2005 Edward Hervey
|
|
|
|
#
|
|
|
|
# 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.1 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
|
|
|
|
|
2005-09-01 15:50:46 +00:00
|
|
|
import time
|
|
|
|
|
2005-09-28 14:20:03 +00:00
|
|
|
from common import gst, unittest, TestCase
|
2004-03-08 19:22:15 +00:00
|
|
|
|
2005-09-12 18:19:08 +00:00
|
|
|
import gobject
|
|
|
|
|
2005-09-28 14:20:03 +00:00
|
|
|
class TestConstruction(TestCase):
|
|
|
|
def setUp(self):
|
|
|
|
self.gctrack()
|
|
|
|
|
|
|
|
def tearDown(self):
|
|
|
|
self.gccollect()
|
|
|
|
self.gcverify()
|
|
|
|
|
2004-04-16 13:56:39 +00:00
|
|
|
def testGoodConstructor(self):
|
|
|
|
name = 'test-pipeline'
|
|
|
|
pipeline = gst.Pipeline(name)
|
2005-09-28 14:20:03 +00:00
|
|
|
self.assertEquals(pipeline.__gstrefcount__, 1)
|
2004-04-16 13:56:39 +00:00
|
|
|
assert pipeline is not None, 'pipeline is None'
|
2005-09-28 14:20:03 +00:00
|
|
|
self.failUnless(isinstance(pipeline, gst.Pipeline),
|
|
|
|
'pipeline is not a GstPipline')
|
2004-04-16 13:56:39 +00:00
|
|
|
assert pipeline.get_name() == name, 'pipelines name is wrong'
|
2005-09-28 14:20:03 +00:00
|
|
|
self.assertEquals(pipeline.__gstrefcount__, 1)
|
|
|
|
|
|
|
|
def testParseLaunch(self):
|
|
|
|
pipeline = gst.parse_launch('fakesrc ! fakesink')
|
2004-04-16 13:56:39 +00:00
|
|
|
|
2005-09-28 14:20:03 +00:00
|
|
|
class Pipeline(TestCase):
|
2004-03-08 19:22:15 +00:00
|
|
|
def setUp(self):
|
2005-09-28 14:20:03 +00:00
|
|
|
self.gctrack()
|
2004-03-08 19:22:15 +00:00
|
|
|
self.pipeline = gst.Pipeline('test-pipeline')
|
2004-10-11 08:47:37 +00:00
|
|
|
source = gst.element_factory_make('fakesrc', 'source')
|
2004-03-08 19:22:15 +00:00
|
|
|
source.set_property('num-buffers', 5)
|
2004-10-11 08:47:37 +00:00
|
|
|
sink = gst.element_factory_make('fakesink', 'sink')
|
2005-09-30 15:23:15 +00:00
|
|
|
self.pipeline.add(source, sink)
|
2004-03-08 19:22:15 +00:00
|
|
|
gst.element_link_many(source, sink)
|
|
|
|
|
2005-09-28 14:20:03 +00:00
|
|
|
def tearDown(self):
|
|
|
|
del self.pipeline
|
|
|
|
self.gccollect()
|
|
|
|
self.gcverify()
|
|
|
|
|
2004-03-08 19:22:15 +00:00
|
|
|
def testRun(self):
|
2005-09-08 15:17:13 +00:00
|
|
|
self.assertEqual(self.pipeline.get_state(None)[1], gst.STATE_NULL)
|
2004-03-08 19:22:15 +00:00
|
|
|
self.pipeline.set_state(gst.STATE_PLAYING)
|
2005-09-08 15:17:13 +00:00
|
|
|
self.assertEqual(self.pipeline.get_state(None)[1], gst.STATE_PLAYING)
|
2004-03-08 19:22:15 +00:00
|
|
|
|
2005-09-01 15:50:46 +00:00
|
|
|
time.sleep(1)
|
2004-03-08 19:22:15 +00:00
|
|
|
|
2005-09-08 15:17:13 +00:00
|
|
|
self.assertEqual(self.pipeline.get_state(None)[1], gst.STATE_PLAYING)
|
2004-03-08 19:22:15 +00:00
|
|
|
self.pipeline.set_state(gst.STATE_NULL)
|
2005-09-08 15:17:13 +00:00
|
|
|
self.assertEqual(self.pipeline.get_state(None)[1], gst.STATE_NULL)
|
2005-09-12 18:19:08 +00:00
|
|
|
|
2005-09-28 15:48:10 +00:00
|
|
|
class Bus(TestCase):
|
|
|
|
def testGet(self):
|
|
|
|
pipeline = gst.Pipeline('test')
|
|
|
|
self.assertEquals(pipeline.__gstrefcount__, 1)
|
|
|
|
bus = pipeline.get_bus()
|
|
|
|
self.assertEquals(pipeline.__gstrefcount__, 1)
|
|
|
|
# one for python and one for the pipeline
|
|
|
|
self.assertEquals(bus.__gstrefcount__, 2)
|
|
|
|
|
|
|
|
del pipeline
|
|
|
|
self.failUnless(self.gccollect())
|
|
|
|
self.assertEquals(bus.__gstrefcount__, 1)
|
|
|
|
|
2005-09-28 14:20:03 +00:00
|
|
|
class PipelineAndBus(TestCase):
|
2005-09-12 18:19:08 +00:00
|
|
|
def setUp(self):
|
2005-09-28 15:48:10 +00:00
|
|
|
TestCase.setUp(self)
|
2005-09-12 18:19:08 +00:00
|
|
|
self.pipeline = gst.Pipeline('test-pipeline')
|
|
|
|
source = gst.element_factory_make('fakesrc', 'source')
|
|
|
|
sink = gst.element_factory_make('fakesink', 'sink')
|
2005-09-30 15:23:15 +00:00
|
|
|
self.pipeline.add(source, sink)
|
2005-09-12 18:19:08 +00:00
|
|
|
gst.element_link_many(source, sink)
|
|
|
|
|
|
|
|
self.bus = self.pipeline.get_bus()
|
2005-09-28 15:48:10 +00:00
|
|
|
self.assertEquals(self.bus.__gstrefcount__, 2)
|
2005-09-29 13:56:03 +00:00
|
|
|
self.handler = self.bus.add_watch(self._message_received)
|
2005-09-28 15:48:10 +00:00
|
|
|
self.assertEquals(self.bus.__gstrefcount__, 3)
|
2005-09-30 08:23:13 +00:00
|
|
|
self.assertEquals(self.pipeline.__gstrefcount__, 1)
|
2005-09-12 18:19:08 +00:00
|
|
|
|
|
|
|
self.loop = gobject.MainLoop()
|
|
|
|
|
2005-09-28 14:20:03 +00:00
|
|
|
def tearDown(self):
|
|
|
|
# FIXME: fix the refcount issues with the bus/pipeline
|
2005-09-28 15:48:10 +00:00
|
|
|
# flush the bus to be able to assert on the pipeline refcount
|
2005-09-30 08:23:13 +00:00
|
|
|
#while self.pipeline.__gstrefcount__ > 1:
|
2005-09-28 14:20:03 +00:00
|
|
|
self.gccollect()
|
2005-09-30 08:23:13 +00:00
|
|
|
|
2005-09-28 15:48:10 +00:00
|
|
|
# one for the pipeline, two for the snake
|
|
|
|
# three for the watch now shake shake shake but don't you
|
|
|
|
self.assertEquals(self.bus.__gstrefcount__, 3)
|
2005-09-30 08:23:13 +00:00
|
|
|
self.failUnless(gobject.source_remove(self.handler))
|
|
|
|
self.assertEquals(self.bus.__gstrefcount__, 2)
|
|
|
|
self.gccollect()
|
2005-09-28 15:48:10 +00:00
|
|
|
|
2005-09-30 08:23:13 +00:00
|
|
|
gst.debug('THOMAS: pipeline rc %d' % self.pipeline.__gstrefcount__)
|
|
|
|
#self.assertEquals(self.pipeline.__gstrefcount__, 1)
|
2005-09-28 15:48:10 +00:00
|
|
|
del self.pipeline
|
|
|
|
self.gccollect()
|
2005-09-30 08:23:13 +00:00
|
|
|
#self.assertEquals(self.bus.__gstrefcount__, 2)
|
2005-09-28 15:48:10 +00:00
|
|
|
del self.bus
|
|
|
|
self.gccollect()
|
|
|
|
|
2005-09-30 08:23:13 +00:00
|
|
|
# the async thread can be holding a ref, Wim is going to work on this
|
|
|
|
#TestCase.tearDown(self)
|
2005-09-28 14:20:03 +00:00
|
|
|
|
2005-09-12 18:19:08 +00:00
|
|
|
def _message_received(self, bus, message):
|
|
|
|
gst.debug('received message: %s, %s' % (
|
|
|
|
message.src.get_path_string(), message.type.value_nicks[1]))
|
|
|
|
t = message.type
|
|
|
|
if t == gst.MESSAGE_STATE_CHANGED:
|
2005-10-09 13:55:59 +00:00
|
|
|
old, new, pen = message.parse_state_changed()
|
2005-09-12 18:19:08 +00:00
|
|
|
gst.debug('%r state change from %r to %r' % (
|
|
|
|
message.src.get_path_string(), old, new))
|
2005-09-28 15:48:10 +00:00
|
|
|
if message.src == self.pipeline and new == self.final:
|
2005-09-12 18:19:08 +00:00
|
|
|
self.loop.quit()
|
|
|
|
|
|
|
|
return True
|
|
|
|
|
|
|
|
def testPlaying(self):
|
2005-09-28 15:48:10 +00:00
|
|
|
self.final = gst.STATE_PLAYING
|
2005-10-11 12:42:53 +00:00
|
|
|
ret = self.pipeline.set_state(gst.STATE_PLAYING)
|
2005-09-12 18:19:08 +00:00
|
|
|
self.assertEquals(ret, gst.STATE_CHANGE_ASYNC)
|
|
|
|
|
|
|
|
# go into a main loop to wait for messages
|
|
|
|
self.loop.run()
|
2005-09-28 15:48:10 +00:00
|
|
|
|
|
|
|
# we go to READY so we get messages; going to NULL would set
|
|
|
|
# the bus flushing
|
|
|
|
self.final = gst.STATE_READY
|
2005-10-11 12:42:53 +00:00
|
|
|
ret = self.pipeline.set_state(gst.STATE_READY)
|
|
|
|
self.assertEquals(ret, gst.STATE_CHANGE_SUCCESS)
|
2005-09-28 15:48:10 +00:00
|
|
|
self.loop.run()
|
|
|
|
|
|
|
|
# FIXME: not setting to NULL causes a deadlock; we might want to
|
|
|
|
# fix this in the bindings
|
2005-09-30 08:23:13 +00:00
|
|
|
self.assertEquals(self.pipeline.set_state(gst.STATE_NULL),
|
|
|
|
gst.STATE_CHANGE_SUCCESS)
|
|
|
|
self.assertEquals(self.pipeline.get_state(),
|
|
|
|
(gst.STATE_CHANGE_SUCCESS, gst.STATE_NULL, gst.STATE_VOID_PENDING))
|
|
|
|
self.gccollect()
|
2004-03-08 19:22:15 +00:00
|
|
|
|
|
|
|
if __name__ == "__main__":
|
|
|
|
unittest.main()
|