X-Git-Url: https://git.sesse.net/?a=blobdiff_plain;f=test%2FPyMediaControlVariablesTest.py;h=9a994f025fd60ef31ab75e6171f828e86230b081;hb=42e7d91c277a879cb3fed58fa68836168e4e5208;hp=57820f0372d32d57135e26f7d789ad72ac7fd237;hpb=ef273c072bfe9a43014f74fe7765b59a2e735ab7;p=vlc diff --git a/test/PyMediaControlVariablesTest.py b/test/PyMediaControlVariablesTest.py index 57820f0372..9a994f025f 100644 --- a/test/PyMediaControlVariablesTest.py +++ b/test/PyMediaControlVariablesTest.py @@ -1,43 +1,43 @@ -import vlc -import unittest - -# FIXME: Always segfault - -class VariablesTestCase( unittest.TestCase ): - """[PyMC] Test misc variables interaction""" - def setUp( self ): - print "broken" -# self.mc = vlc.MediaControl( [ '--quiet'] ) - # FIXME ! - Get this through children test -# self.libvlc = vlc.Object(1) -# self.playlist = vlc.Object(268) - - def tearDown( self ): - print "broken" -# self.playlist.release() -# self.libvlc.release() -# self.mc.exit() - - # The Python binding can't create variables, so just get default ones - def testInt( self ): - """[PyMC] Get/Set integer variable""" - print "broken" -# assert self.libvlc.get( "width" ) == 0 -# self.libvlc.set( "width", 42 ) -# assert self.libvlc.get( 'width' ) == 42 - - # FIXME: Python binding should listen to return value and raise exception - def testInvalidInt( self ): - """[PyMC] Get/Set invalid integer""" - print "broken" -# self.libvlc.set( "width" , 5 ) -# self.libvlc.set( "width", "foo" ) -# assert self.libvlc.get( "width" ) == -1 - - def testString( self ): - """[PyMC] Get/Set string variable""" - print "broken" -# assert self.libvlc.get( "open" ) == '' -# self.libvlc.set( "open", "foo" ) -# assert self.libvlc.get( "open" ) == "foo" - +#import vlc +#import unittest +# +## FIXME: Always segfault +# +#class VariablesTestCase( unittest.TestCase ): +# """[PyMC] Test misc variables interaction""" +# def setUp( self ): +# print "broken" +## self.mc = vlc.MediaControl( [ '--quiet'] ) +# # FIXME ! - Get this through children test +## self.libvlc = vlc.Object(1) +## self.playlist = vlc.Object(268) +# +# def tearDown( self ): +# print "broken" +## self.playlist.release() +## self.libvlc.release() +## self.mc.exit() +# +# # The Python binding can't create variables, so just get default ones +# def testInt( self ): +# """[PyMC] Get/Set integer variable""" +# print "broken" +## assert self.libvlc.get( "width" ) == 0 +## self.libvlc.set( "width", 42 ) +## assert self.libvlc.get( 'width' ) == 42 +# +# # FIXME: Python binding should listen to return value and raise exception +# def testInvalidInt( self ): +# """[PyMC] Get/Set invalid integer""" +# print "broken" +## self.libvlc.set( "width" , 5 ) +## self.libvlc.set( "width", "foo" ) +## assert self.libvlc.get( "width" ) == -1 +# +# def testString( self ): +# """[PyMC] Get/Set string variable""" +# print "broken" +## assert self.libvlc.get( "open" ) == '' +## self.libvlc.set( "open", "foo" ) +## assert self.libvlc.get( "open" ) == "foo" +#