File: test_plugin.py

package info (click to toggle)
gst-python1.0 1.26.4-1
  • links: PTS, VCS
  • area: main
  • in suites: experimental
  • size: 988 kB
  • sloc: python: 8,030; ansic: 1,869; makefile: 33
file content (42 lines) | stat: -rw-r--r-- 1,442 bytes parent folder | download | duplicates (4)
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
# -*- Mode: Python -*-
# vi:si:et:sw=4:sts=4:ts=4
#
# gst-python - Python bindings for GStreamer
# Copyright (C) 2007 Johan Dahlin
#
# 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., 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301  USA

import overrides_hack
overrides_hack

from common import TestCase, unittest

import gi
gi.require_version("Gst", "1.0")
from gi.repository import Gst


class TestPlugin(TestCase):
    def testLoad(self):
        Gst.init(None)
        p = Gst.parse_launch ("fakesrc ! test_identity_py name=id ! fakesink")
        assert p.get_by_name("id").transformed == False
        p.set_state(Gst.State.PLAYING)
        p.get_state(Gst.CLOCK_TIME_NONE)
        p.set_state(Gst.State.NULL)
        assert p.get_by_name("id").transformed == True

if __name__ == "__main__":
    unittest.main()