~ubuntu-branches/ubuntu/precise/gst0.10-python/precise

« back to all changes in this revision

Viewing changes to testsuite/test_xml.py

  • Committer: Bazaar Package Importer
  • Author(s): Loic Minier
  • Date: 2006-06-25 19:37:45 UTC
  • Revision ID: james.westby@ubuntu.com-20060625193745-9yeg0wq56r24n57x
Tags: upstream-0.10.4
ImportĀ upstreamĀ versionĀ 0.10.4

Show diffs side-by-side

added added

removed removed

Lines of Context:
 
1
# -*- Mode: Python -*-
 
2
# vi:si:et:sw=4:sts=4:ts=4
 
3
#
 
4
# gst-python - Python bindings for GStreamer
 
5
# Copyright (C) 2002 David I. Lehn
 
6
# Copyright (C) 2004 Johan Dahlin
 
7
# Copyright (C) 2005 Edward Hervey
 
8
#
 
9
# This library is free software; you can redistribute it and/or
 
10
# modify it under the terms of the GNU Lesser General Public
 
11
# License as published by the Free Software Foundation; either
 
12
# version 2.1 of the License, or (at your option) any later version.
 
13
#
 
14
# This library is distributed in the hope that it will be useful,
 
15
# but WITHOUT ANY WARRANTY; without even the implied warranty of
 
16
# MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the GNU
 
17
# Lesser General Public License for more details.
 
18
#
 
19
# You should have received a copy of the GNU Lesser General Public
 
20
# License along with this library; if not, write to the Free Software
 
21
# Foundation, Inc., 59 Temple Place, Suite 330, Boston, MA 02111-1307  USA
 
22
 
 
23
from common import gst, unittest, TestCase
 
24
 
 
25
class PadTest(TestCase):
 
26
        
 
27
    def testQuery(self):
 
28
        xml = gst.XML()
 
29
        xml.parse_memory("""<?xml version="1.0"?>
 
30
<gstreamer xmlns:gst="http://gstreamer.net/gst-core/1.0/">
 
31
  <gst:element>
 
32
    <gst:name>test-pipeline</gst:name>
 
33
    <gst:type>pipeline</gst:type>
 
34
    <gst:param>
 
35
      <gst:name>name</gst:name>
 
36
      <gst:value>test-pipeline</gst:value>
 
37
    </gst:param>
 
38
  </gst:element>
 
39
</gstreamer>""")
 
40
        elements = xml.get_topelements()
 
41
        assert len(elements) == 1
 
42
        element = elements[0]
 
43
        assert isinstance(element, gst.Pipeline)
 
44
        assert element.get_name() == 'test-pipeline'
 
45
        
 
46
if __name__ == "__main__":
 
47
    unittest.main()
 
48