You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
 
 
 
 
 
 

148 lines
4.7 KiB

#include "../pyunit.h"
#include <vlc/libvlc.h>
PyObject *exception_test( PyObject *self, PyObject *args )
{
libvlc_exception_t exception;
libvlc_exception_init( &exception );
ASSERT( !libvlc_exception_raised( &exception) , "Exception raised" );
ASSERT( !libvlc_exception_get_message( &exception) , "Exception raised" );
libvlc_exception_raise( &exception, NULL );
ASSERT( !libvlc_exception_get_message( &exception), "Unexpected message" );
ASSERT( libvlc_exception_raised( &exception), "Exception not raised" );
libvlc_exception_raise( &exception, "test" );
ASSERT( libvlc_exception_get_message( &exception), "No Message" );
ASSERT( libvlc_exception_raised( &exception), "Exception not raised" );
libvlc_exception_clear( &exception );
ASSERT( !libvlc_exception_raised( &exception ), "Exception not cleared" );
Py_INCREF( Py_None );
return Py_None;
}
PyObject *create_destroy( PyObject *self, PyObject *args )
{
libvlc_instance_t *p_instance;
char *argv[] = { "vlc", "--quiet" };
libvlc_exception_t exception;
libvlc_exception_init( &exception );
p_instance = libvlc_new( 2, argv, &exception );
ASSERT( p_instance != NULL, "Instance creation failed" );
ASSERT( !libvlc_exception_raised( &exception ),
"Exception raised while creating instance" );
libvlc_destroy( p_instance );
Py_INCREF( Py_None );
return Py_None;
}
PyObject *playlist_test( PyObject *self, PyObject *args )
{
libvlc_instance_t *p_instance;
char *argv[] = { "vlc", "--quiet" };
int i_id, i_playing, i_items;
libvlc_exception_t exception;
libvlc_exception_init( &exception );
p_instance = libvlc_new( 2, argv, &exception );
ASSERT_NOEXCEPTION;
/* Initial status */
libvlc_playlist_play( p_instance, 0, 0, argv, &exception );
ASSERT( libvlc_exception_raised( &exception ),
"Playlist empty and exception not raised" );
libvlc_exception_clear( &exception );
i_playing = libvlc_playlist_isplaying( p_instance, &exception );
ASSERT_NOEXCEPTION;
ASSERT( i_playing == 0, "Playlist shouldn't be running" );
i_items = libvlc_playlist_items_count( p_instance, &exception );
ASSERT_NOEXCEPTION;
ASSERT( i_items == 0, "Playlist should be empty" );
/* Add 1 item */
libvlc_exception_clear( &exception );
i_id = libvlc_playlist_add( p_instance, "test" , NULL , &exception );
ASSERT_NOEXCEPTION;
ASSERT( i_id > 0 , "Returned identifier is <= 0" );
i_items = libvlc_playlist_items_count( p_instance, &exception );
ASSERT_NOEXCEPTION;
ASSERT( i_items == 1, "Playlist should have 1 item" );
i_playing = libvlc_playlist_isplaying( p_instance, &exception );
ASSERT_NOEXCEPTION;
ASSERT( i_playing == 0, "Playlist shouldn't be running" );
/* */
Py_INCREF( Py_None );
return Py_None;
}
PyObject *vlm_test( PyObject *self, PyObject *args )
{
libvlc_instance_t *p_instance;
char *argv[] = { "vlc", "--quiet" };
char *ppsz_empty[] = {};
libvlc_exception_t exception;
libvlc_exception_init( &exception );
p_instance = libvlc_new( 2, argv, &exception );
ASSERT_NOEXCEPTION;
/* Test that working on unexisting streams fail */
libvlc_vlm_set_enabled( p_instance, "test", 1, &exception );
ASSERT_EXCEPTION;
libvlc_exception_clear( &exception );
libvlc_vlm_set_input( p_instance, "test", "input", &exception );
ASSERT_EXCEPTION;
libvlc_exception_clear( &exception );
libvlc_vlm_del_media( p_instance, "test", &exception );
ASSERT_EXCEPTION;
libvlc_exception_clear( &exception );
/******* Broadcast *******/
/* Now create a media */
libvlc_vlm_add_broadcast( p_instance, "test", "input_test", "output_test",
0, ppsz_empty, 1, 1, &exception );
ASSERT_NOEXCEPTION;
libvlc_exception_clear( &exception );
/* Change its parameters */
libvlc_vlm_set_enabled( p_instance, "test", 0, &exception );
ASSERT_NOEXCEPTION;
libvlc_exception_clear( &exception );
libvlc_vlm_set_output( p_instance, "test", "output_test2", &exception );
ASSERT_NOEXCEPTION;
libvlc_exception_clear( &exception );
/* Check the parameters */
fprintf( stderr, "The code for this is not written yet\n");
/* Control it a bit */
fprintf( stderr, "The code for this is not written yet\n");
/* Try to delete it */
libvlc_vlm_del_media( p_instance, "test", &exception );
ASSERT_NOEXCEPTION;
libvlc_exception_clear( &exception );
libvlc_vlm_del_media( p_instance, "test", &exception );
ASSERT_EXCEPTION;
libvlc_exception_clear( &exception );
/******* VOD *******/
Py_INCREF( Py_None );
return Py_None;
}