]> git.sesse.net Git - vlc/blobdiff - src/control/testapi.c
test code cleanup
[vlc] / src / control / testapi.c
index 21d28692f83fd2a5b502290636660b54f08b9996..d84b7868e6a93e5d1cb214d60f8843773c73cdff 100644 (file)
@@ -21,6 +21,9 @@
  *  http://www.gnu.org/copyleft/gpl.html                              *
  **********************************************************************/
 
+#ifdef HAVE_CONFIG_H
+# include "config.h"
+#endif
 #include <vlc/libvlc.h>
 
 #undef NDEBUG
 
 static libvlc_exception_t ex;
 
+#define log( ... ) printf( "testapi: " __VA_ARGS__ );
+
+/* test if we have exception */
+static bool have_exception (void)
+{
+    if (libvlc_exception_raised (&ex))
+    {
+        libvlc_exception_clear (&ex);
+        return true;
+    }
+    else
+        return false;
+}
+
 static void catch (void)
 {
     if (libvlc_exception_raised (&ex))
@@ -45,23 +62,24 @@ static void catch (void)
     libvlc_exception_clear (&ex);
 }
 
-int main (int argc, char *argv[])
+/* Test we have */
+static void test_core (const char ** argv, int argc);
+static void test_media_list (const char ** argv, int argc);
+static void test_events (const char ** argv, int argc);
+static void test_media_player_play_stop(const char** argv, int argc);
+static void test_media_player_pause_stop(const char** argv, int argc);
+static void test_media_list_player_pause_stop(const char** argv, int argc);
+
+/* Tests implementations */
+static void test_core (const char ** argv, int argc)
 {
     libvlc_instance_t *vlc;
-    const char *args[argc + 3];
     int id;
 
-    alarm (30); /* Make sure "make check" does not get stuck */
-
-    args[0] = "-vvv";
-    args[1] = "-I";
-    args[2] = "-dummy";
-    args[3] = "--plugin-path=../modules";
-    for (int i = 1; i < argc; i++)
-        args[i + 3] = argv[i];
+    log ("Testing core\n");
 
     libvlc_exception_init (&ex);
-    vlc = libvlc_new (sizeof (args) / sizeof (args[0]), args, &ex);
+    vlc = libvlc_new (argc, argv, &ex);
     catch ();
 
     libvlc_playlist_clear (vlc, &ex);
@@ -74,7 +92,392 @@ int main (int argc, char *argv[])
     libvlc_playlist_clear (vlc, &ex);
     catch ();
 
-    libvlc_destroy (vlc, &ex);
+    libvlc_retain (vlc);
+    libvlc_release (vlc);
+    libvlc_release (vlc);
+}
+
+static void test_media_list (const char ** argv, int argc)
+{
+    libvlc_instance_t *vlc;
+    libvlc_media_t *md1, *md2, *md3, *md4;
+    libvlc_media_list_t *ml;
+
+    log ("Testing media_list\n");
+
+    libvlc_exception_init (&ex);
+    vlc = libvlc_new (argc, argv, &ex);
+    catch ();
+
+    ml = libvlc_media_list_new (vlc, &ex);
+    catch ();
+
+    md1 = libvlc_media_new (vlc, "/dev/null", &ex);
+    catch ();
+    md2 = libvlc_media_new (vlc, "/dev/null", &ex);
+    catch ();
+    md3 = libvlc_media_new (vlc, "/dev/null", &ex);
+    catch ();
+
+    libvlc_media_list_add_media (ml, md1, &ex);
+    catch ();
+    libvlc_media_list_add_media (ml, md2, &ex);
+    catch ();
+
+    assert( libvlc_media_list_count (ml, &ex) == 2 );
+    catch ();
+
+    assert( libvlc_media_list_index_of_item (ml, md1, &ex) == 0 );
+    catch ();
+
+    assert( libvlc_media_list_index_of_item (ml, md2, &ex) == 1 );
+    catch ();
+
+    libvlc_media_list_remove_index (ml, 0, &ex);  /* removing first item */
+    catch ();
+
+    /* test if second item was moved on first place */
+    assert( libvlc_media_list_index_of_item (ml, md2, &ex) == 0 );
+    catch ();
+
+    libvlc_media_list_add_media (ml, md1, &ex); /* add 2 items */
+    catch ();
+    libvlc_media_list_add_media (ml, md1, &ex);
+    catch ();
+
+    /* there should be 3 pieces */
+    assert( libvlc_media_list_count (ml, &ex) == 3 );
+    catch ();
+
+    libvlc_media_list_insert_media (ml, md3, 2, &ex);
+    catch ();
+
+    /* there should be 4 pieces */
+    assert( libvlc_media_list_count (ml, &ex) == 4 );
+    catch ();
+
+    /* test inserting on right place */
+    assert( libvlc_media_list_index_of_item (ml, md3, &ex) == 2 );
+    catch ();
+
+    /* test right returning descriptor*/
+    assert ( libvlc_media_list_item_at_index (ml, 0, &ex) == md2 );
+    catch ();
+
+    assert ( libvlc_media_list_item_at_index (ml, 2, &ex) == md3 );
+    catch ();
+
+    /* test if give exceptions, when it should */
+    /* have 4 items, so index 4 should give exception */
+    libvlc_media_list_remove_index (ml, 4, &ex);
+    assert (have_exception ());
+
+    libvlc_media_list_remove_index (ml, 100, &ex);
+    assert (have_exception ());
+
+    libvlc_media_list_remove_index (ml, -1, &ex);
+    assert (have_exception ());
+
+    /* getting non valid items */
+    libvlc_media_t * p_non_exist =
+        libvlc_media_list_item_at_index (ml, 4, &ex);
+    assert (have_exception ());
+
+    p_non_exist = libvlc_media_list_item_at_index (ml, 100, &ex);
+    assert (have_exception ());
+
+    p_non_exist = libvlc_media_list_item_at_index (ml, -1, &ex);
+    assert (have_exception ());
+
+    md4 = libvlc_media_new (vlc, "/dev/dsp", &ex);
+    catch ();
+
+    /* try to find non inserted item */
+    int i_non_exist = 0;
+    i_non_exist = libvlc_media_list_index_of_item (ml, md4, &ex);
+    assert ( i_non_exist == -1 );
+
+    libvlc_media_release (md1);
+    libvlc_media_release (md2);
+    libvlc_media_release (md3);
+    libvlc_media_release (md4);
+
+    libvlc_media_list_release (ml);
+
+    libvlc_release (vlc);
+    catch ();
+}
+
+/* This one is an internal API. We use it here to run tests that
+ * don't depends on playback, and only test the event framework */
+extern void libvlc_event_send( libvlc_event_manager_t *, libvlc_event_t *);
+
+static void test_events_dummy_callback( const libvlc_event_t * event, void * user_data)
+{
+    vlc_bool_t * callback_was_called = user_data;
+    *callback_was_called = VLC_TRUE;
+}
+
+static void test_events_callback_and_detach( const libvlc_event_t * event, void * user_data)
+{
+    vlc_bool_t * callback_was_called = user_data;
+    libvlc_event_manager_t *em;
+
+    em = libvlc_media_player_event_manager (event->p_obj, &ex);
+    catch();
+
+    libvlc_event_detach (em, event->type, test_events_callback_and_detach, user_data, &ex);
+    *callback_was_called = VLC_TRUE;
+}
+
+static void test_event_type_reception( libvlc_event_manager_t * em, libvlc_event_type_t event_type, vlc_bool_t * callback_was_called )
+{
+    libvlc_event_t event;
+    event.type = event_type;
+    *callback_was_called = VLC_FALSE;
+    libvlc_event_send (em, &event);
+    assert (*callback_was_called);
+}
+
+static void test_events (const char ** argv, int argc)
+{
+    libvlc_instance_t *vlc;
+    libvlc_media_player_t *mi;
+    libvlc_event_manager_t *em;
+    vlc_bool_t callback_was_called;
+    libvlc_exception_t ex;
+    libvlc_event_type_t mi_events[] = {
+        libvlc_MediaPlayerPlayed,
+        libvlc_MediaPlayerPaused,
+        libvlc_MediaPlayerEndReached,
+        libvlc_MediaPlayerStopped,
+        libvlc_MediaPlayerEncounteredError,
+        libvlc_MediaPlayerTimeChanged,
+        libvlc_MediaPlayerPositionChanged,
+    };
+    int i, mi_events_len = sizeof(mi_events)/sizeof(*mi_events);
+    
+    log ("Testing events\n");
+
+    libvlc_exception_init (&ex);
+    vlc = libvlc_new (argc, argv, &ex);
+    catch ();
+
+    mi = libvlc_media_player_new (vlc, &ex);
+    catch ();
+
+    em = libvlc_media_player_event_manager (mi, &ex);
+
+    log ("+ Testing attaching to Media Instance\n");
+
+    for (i = 0; i < mi_events_len; i++) {
+        libvlc_event_attach (em, mi_events[i], test_events_dummy_callback, &callback_was_called, &ex);
+        catch ();
+    }
+
+    log ("+ Testing event reception\n");
+
+    for (i = 0; i < mi_events_len; i++)
+        test_event_type_reception (em, mi_events[i], &callback_was_called);
+
+    log ("+ Testing event detaching while in the event callback\n");
+
+    libvlc_event_t event;
+    event.type = mi_events[mi_events_len-1];
+    callback_was_called = VLC_FALSE;
+
+    libvlc_event_detach (em, mi_events[mi_events_len-1], test_events_dummy_callback, &callback_was_called, &ex);
+    catch ();
+
+    libvlc_event_attach (em, mi_events[mi_events_len-1], test_events_callback_and_detach, &callback_was_called, &ex);
     catch ();
+
+    libvlc_event_send (em, &event);
+    assert( callback_was_called );
+
+    callback_was_called = VLC_FALSE;
+    libvlc_event_send (em, &event);
+    assert( !callback_was_called );
+
+    libvlc_event_detach (em, mi_events[mi_events_len-1], test_events_callback_and_detach, &callback_was_called, &ex);
+    catch ();
+
+    log ("+ Testing regular detach()\n");
+
+    for (i = 0; i < mi_events_len - 1; i++) {
+        libvlc_event_detach (em, mi_events[i], test_events_dummy_callback, &callback_was_called, &ex);
+        catch ();
+    }
+
+    libvlc_media_player_release (mi);
+    catch ();
+
+    libvlc_release (vlc);
+    catch ();
+}
+
+static void test_media_player_play_stop(const char** argv, int argc)
+{
+#if 0
+    libvlc_instance_t *vlc;
+    libvlc_media_t *md;
+    libvlc_media_player_t *mi;
+    const char * file = "file://../bindings/java/core/src/test/resources/raffa_voice.ogg";
+
+    log ("Testing play and pause of %s\n", file);
+
+    libvlc_exception_init (&ex);
+    vlc = libvlc_new (argc, argv, &ex);
+    catch ();
+
+    md = libvlc_media_new (vlc, file, &ex);
+    catch ();
+
+    mi = libvlc_media_player_new_from_media (md, &ex);
+    catch ();
+    
+    libvlc_media_release (md);
+
+    libvlc_media_player_play (mi, &ex);
+    catch ();
+
+    /* FIXME: Do something clever */
+    sleep(1);
+
+    assert( libvlc_media_player_get_state (mi, &ex) != libvlc_Error );
+    catch ();
+
+    libvlc_media_player_stop (mi, &ex);
+    catch ();
+
+    libvlc_media_player_release (mi);
+    catch ();
+
+    libvlc_release (vlc);
+    catch ();
+#endif
+}
+
+static void test_media_player_pause_stop(const char** argv, int argc)
+{
+    libvlc_instance_t *vlc;
+    libvlc_media_t *md;
+    libvlc_media_player_t *mi;
+    const char * file = "file://../bindings/java/core/src/test/resources/raffa_voice.ogg";
+
+    log ("Testing play and pause of %s\n", file);
+
+    libvlc_exception_init (&ex);
+    vlc = libvlc_new (argc, argv, &ex);
+    catch ();
+
+    md = libvlc_media_new (vlc, file, &ex);
+    catch ();
+
+    mi = libvlc_media_player_new_from_media (md, &ex);
+    catch ();
+    
+    libvlc_media_release (md);
+
+    libvlc_media_player_play (mi, &ex);
+    catch ();
+
+    /* FIXME: Do something clever */
+    sleep(1);
+
+    assert( libvlc_media_player_get_state (mi, &ex) == libvlc_Playing );
+    catch ();
+
+    libvlc_media_player_pause (mi, &ex);
+    assert( libvlc_media_player_get_state (mi, &ex) == libvlc_Paused );
+    catch();
+
+    libvlc_media_player_stop (mi, &ex);
+    catch ();
+
+    libvlc_media_player_release (mi);
+    catch ();
+
+    libvlc_release (vlc);
+    catch ();
+}
+
+static void test_media_list_player_pause_stop(const char** argv, int argc)
+{
+    libvlc_instance_t *vlc;
+    libvlc_media_t *md;
+    libvlc_media_list_t *ml;
+    libvlc_media_list_player_t *mlp;
+    
+    const char * file = "file://../bindings/java/core/src/test/resources/raffa_voice.ogg";
+
+    log ("Testing play and pause of %s using the media list.\n", file);
+
+    libvlc_exception_init (&ex);
+    vlc = libvlc_new (argc, argv, &ex);
+    catch ();
+
+    md = libvlc_media_new (vlc, file, &ex);
+    catch ();
+
+    ml = libvlc_media_list_new (vlc, &ex);
+    catch ();
+    
+    mlp = libvlc_media_list_player_new (vlc, &ex);
+
+    libvlc_media_list_add_media( ml, md, &ex );
+    catch ();
+
+    libvlc_media_list_player_set_media_list( mlp, ml, &ex );
+
+    libvlc_media_list_player_play_item( mlp, md, &ex );
+    sleep(1); // play is asynchronous
+    catch ();
+
+    libvlc_media_list_player_pause (mlp, &ex);
+    catch();
+
+    libvlc_media_list_player_stop (mlp, &ex);
+    catch ();
+
+    libvlc_media_release (md);
+    
+    libvlc_media_list_player_release (mlp);
+    catch ();
+
+    libvlc_release (vlc);
+    catch ();
+}
+
+
+
+int main (int argc, char *argv[])
+{
+    const char *args[argc + 5];
+    int nlibvlc_args = sizeof (args) / sizeof (args[0]);
+
+    alarm (50); /* Make sure "make check" does not get stuck */
+
+    args[0] = "-vvv";
+    args[1] = "-I";
+    args[2] = "dummy";
+    args[3] = "--plugin-path=../modules";
+    args[4] = "--vout=dummy";
+    args[5] = "--aout=dummy";
+    for (int i = 1; i < argc; i++)
+        args[i + 3] = argv[i];
+
+    test_core (args, nlibvlc_args);
+
+    test_events (args, nlibvlc_args);
+
+    test_media_list (args, nlibvlc_args);
+
+    test_media_player_play_stop(args, nlibvlc_args);
+
+    test_media_player_pause_stop(args, nlibvlc_args);
+
+    test_media_list_player_pause_stop(args, nlibvlc_args);
+    
     return 0;
 }