]> git.sesse.net Git - vlc/blobdiff - src/control/testapi.c
test code cleanup
[vlc] / src / control / testapi.c
index 80cc0e28d8d97db8f4edc45db9f9e6e3a5cf313e..d84b7868e6a93e5d1cb214d60f8843773c73cdff 100644 (file)
@@ -1,5 +1,5 @@
 /*
- * testapi.c - libvlc-control smoke test
+ * testapi.c - libvlc smoke test
  *
  * $Id$
  */
  *  http://www.gnu.org/copyleft/gpl.html                              *
  **********************************************************************/
 
-#include <vlc/mediacontrol.h>
+#ifdef HAVE_CONFIG_H
+# include "config.h"
+#endif
+#include <vlc/libvlc.h>
 
 #undef NDEBUG
 #include <assert.h>
 
-int main (int argc, char *argv[])
+#include <stdio.h>
+#include <stdlib.h>
+#include <unistd.h>
+
+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))
+    {
+         fprintf (stderr, "Exception: %s\n",
+                  libvlc_exception_get_message (&ex));
+         abort ();
+    }
+
+    assert (libvlc_exception_get_message (&ex) == NULL);
+    libvlc_exception_clear (&ex);
+}
+
+/* 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;
+    int id;
+
+    log ("Testing core\n");
+
+    libvlc_exception_init (&ex);
+    vlc = libvlc_new (argc, argv, &ex);
+    catch ();
+
+    libvlc_playlist_clear (vlc, &ex);
+    catch ();
+
+    id = libvlc_playlist_add_extended (vlc, "/dev/null", "Test", 0, NULL,
+                                       &ex);
+    catch ();
+
+    libvlc_playlist_clear (vlc, &ex);
+    catch ();
+
+    libvlc_retain (vlc);
+    libvlc_release (vlc);
+    libvlc_release (vlc);
+}
+
+static void test_media_list (const char ** argv, int argc)
 {
-    mediacontrol_Exception ex;
-    mediacontrol_Instance *mc, *mc2;
     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);
 
-    mediacontrol_exception_init (&ex);
-    mc = mediacontrol_new (argc, argv, &ex);
-    assert (mc);
-    assert (!ex.code);
-    mediacontrol_exception_cleanup (&ex);
-
-    /* Duplication test */
-    vlc = mediacontrol_get_libvlc_instance (mc);
-    assert (vlc);
-    assert (!ex.code);
-
-    mediacontrol_exception_init (&ex);
-    mc2 = mediacontrol_new_from_instance (vlc, &ex);
-    assert (mc2);
-    assert (!ex.code);
-    mediacontrol_exception_cleanup (&ex);
-
-    //mediacontrol_exit (mc2);
-
-    /* Input tests */
-    mediacontrol_exception_init (&ex);
-    mediacontrol_resume (mc, NULL, &ex);
-    assert (ex.code); /* should fail: we have no input */
-    mediacontrol_exception_cleanup (&ex);
-
-    mediacontrol_exception_init (&ex);
-    mediacontrol_pause (mc, NULL, &ex);
-    assert (ex.code); /* should fail: we have no input */
-    mediacontrol_exception_cleanup (&ex);
-
-    mediacontrol_exception_init (&ex);
-    mediacontrol_stop (mc, NULL, &ex);
-    mediacontrol_exception_cleanup (&ex);
-
-    /* Playlist tests */
-    mediacontrol_exception_init (&ex);
-    mediacontrol_playlist_clear (mc, &ex);
-    assert (!ex.code);
-    mediacontrol_exception_cleanup (&ex);
-
-    mediacontrol_exception_init (&ex);
-    mediacontrol_playlist_add_item (mc, "/dev/null", &ex);
-    mediacontrol_exception_cleanup (&ex);
-
-    mediacontrol_exception_init (&ex);
-    mediacontrol_playlist_clear (mc, &ex);
-    assert (!ex.code);
-    mediacontrol_exception_cleanup (&ex);
-
-    mediacontrol_exit (mc);
+    test_media_list_player_pause_stop(args, nlibvlc_args);
+    
     return 0;
 }