]> git.sesse.net Git - vlc/commitdiff
test: Move testapi.c to /test and use a sample file that is not ogg for basic testing.
authorPierre d'Herbemont <pdherbemont@videolan.org>
Wed, 9 Apr 2008 09:45:35 +0000 (11:45 +0200)
committerPierre d'Herbemont <pdherbemont@videolan.org>
Fri, 11 Apr 2008 16:47:05 +0000 (18:47 +0200)
This sample is downloaded from streams.videolan.org. Feel free to find a better suited codec/demux combination.
libvlc test are now splitted a bit.
Tests that are specific to core and that don't need vlc's modules are kept in src/test.

15 files changed:
Makefile.am
configure.ac
extras/buildsystem/cmake/CMakeLists/root_CMakeLists.txt
extras/buildsystem/cmake/CMakeLists/src_CMakeLists.txt
extras/buildsystem/cmake/CMakeLists/test_CMakeLists.txt [new file with mode: 0644]
extras/buildsystem/cmake/scripts/convert_vlc_to_cmake.sh
src/Makefile.am
src/control/testapi.c [deleted file]
test/Makefile.am [new file with mode: 0644]
test/libvlc/core.c [new file with mode: 0644]
test/libvlc/events.c [new file with mode: 0644]
test/libvlc/media_list.c [new file with mode: 0644]
test/libvlc/media_list_player.c [new file with mode: 0644]
test/libvlc/media_player.c [new file with mode: 0644]
test/libvlc/test.h [new file with mode: 0644]

index 0649ee988888759e6cc0bf05434ba57d9801881f..43ce98f8df409ba11006c5eaaa90c5ce925dcfa7 100644 (file)
@@ -8,7 +8,7 @@
 #  - src (libvlc) is nedeed by modules, mozilla and bindings
 #  - libs/* are needed by modules
 SUBDIRS = po libs/loader libs/srtp src modules \
-               projects/mozilla bindings projects/activex share doc
+               projects/mozilla bindings projects/activex share doc test
 DIST_SUBDIRS = $(SUBDIRS) m4  extras/package/ipkg
 
 EXTRA_DIST = \
index 2f7c71032ee39d00911911a85a59912b636f0918..81f327c29ded14b07616577ab4fbff7ec1d81b9e 100644 (file)
@@ -6226,6 +6226,7 @@ AC_CONFIG_FILES([
   po/Makefile.in
   share/Makefile
   src/Makefile
+  test/Makefile
 ])
 
 AC_CONFIG_FILES([
index d752c1c8ac0583acb2145179fbf3239cb547ff9f..1f7227c14c156d0ebfce372c4f41db72a3256964 100644 (file)
@@ -33,6 +33,7 @@ add_subdirectory(libs/loader)
 add_subdirectory(src)
 add_subdirectory(modules)
 add_subdirectory(po)
+add_subdirectory(test)
 
 # Enable uninstall
 configure_file(
index ec873a55e0863268422a61b70ba0cc5c1d75b069..5d84c5bff3a584bfb9a9b9f57f8993cf0f422ce6 100644 (file)
@@ -270,19 +270,16 @@ set_target_properties(libvlc libvlc-control vlc PROPERTIES COMPILE_FLAGS
 ##########################################################
 # Tests
 
-add_executable(test_testapi    control/testapi.c)
 add_executable(test_i18n_atof  test/i18n_atof.c)
 add_executable(test_url        test/url.c)
 add_executable(test_utf8       test/utf8.c)
 add_executable(test_dictionary test/dictionary.c)
 
-target_link_libraries(test_testapi    libvlc-control)
 target_link_libraries(test_i18n_atof  libvlc)
 target_link_libraries(test_url        libvlc)
 target_link_libraries(test_utf8       libvlc)
 target_link_libraries(test_dictionary libvlc)
 
-add_test(test_control    ${CMAKE_CURRENT_BINARY_DIR}/test_testapi)
 add_test(test_i18n_atof  ${CMAKE_CURRENT_BINARY_DIR}/test_i18n_atof)
 add_test(test_url        ${CMAKE_CURRENT_BINARY_DIR}/test_url)
 add_test(test_utf8       ${CMAKE_CURRENT_BINARY_DIR}/test_utf8)
diff --git a/extras/buildsystem/cmake/CMakeLists/test_CMakeLists.txt b/extras/buildsystem/cmake/CMakeLists/test_CMakeLists.txt
new file mode 100644 (file)
index 0000000..5ea98c4
--- /dev/null
@@ -0,0 +1,34 @@
+
+add_executable(test_libvlc_core              libvlc/core.c)
+add_executable(test_libvlc_events            libvlc/events.c)
+add_executable(test_libvlc_media_player      libvlc/media_player.c
+                                             samples/test.sample)
+add_executable(test_libvlc_media_list        libvlc/media_list.c)
+add_executable(test_libvlc_media_list_player libvlc/media_list_player.c
+                                             samples/test.sample)
+
+target_link_libraries(test_libvlc_core               libvlc-control)
+target_link_libraries(test_libvlc_events             libvlc-control)
+target_link_libraries(test_libvlc_media_player       libvlc-control)
+target_link_libraries(test_libvlc_media_list         libvlc-control)
+target_link_libraries(test_libvlc_media_list_player  libvlc-control)
+
+set(SAMPLES_SERVER http://streams.videolan.org/streams-videolan/reference)
+
+add_custom_command(
+   OUTPUT ${CMAKE_CURRENT_BINARY_DIR}/samples/test.sample
+   COMMAND mkdir -p ${CMAKE_CURRENT_BINARY_DIR}/samples
+   COMMAND curl -L ${SAMPLES_SERVER}/avi/Hero-Div3.avi > ${CMAKE_CURRENT_BINARY_DIR}/samples/test.sample
+)
+
+add_test(test_libvlc_core
+    ${CMAKE_CURRENT_BINARY_DIR}/test_libvlc_core)
+add_test(test_libvlc_events
+    ${CMAKE_CURRENT_BINARY_DIR}/test_libvlc_events)
+add_test(test_libvlc_media_player
+    ${CMAKE_CURRENT_BINARY_DIR}/test_libvlc_media_player)
+add_test(test_libvlc_media_list
+    ${CMAKE_CURRENT_BINARY_DIR}/test_libvlc_media_list)
+add_test(test_libvlc_media_list_player
+    ${CMAKE_CURRENT_BINARY_DIR}/test_libvlc_media_list_player)
+
index 4cab1f72762d3560db07d7d36a42f7d5e9a7d5cd..f8abd9a83fe16538af673c36b96a3b13573edcc4 100755 (executable)
@@ -21,9 +21,9 @@ ln -sf ../$cmake_dir/CMakeLists/src_CMakeLists.txt src/CMakeLists.txt
 echo "Removing old modules/gui/qt4/CMakeLists.txt"
 rm -f modules/gui/qt4/CMakeLists.txt
 
-echo "Installing libs/loaders/CMakeLists.txt"
-rm -f libs/loaders/CMakeLists.txt
-ln -s ../$cmake_dir/CMakeLists/libs_loaders_CMakeLists.txt libs/loaders/CMakeLists.txt
+echo "Installing libs/loader/CMakeLists.txt"
+rm -f libs/loader/CMakeLists.txt
+ln -s ../../$cmake_dir/CMakeLists/libs_loaders_CMakeLists.txt libs/loader/CMakeLists.txt
 
 echo "Installing modules/CMakeLists.txt"
 rm -f modules/CMakeLists.txt
@@ -33,7 +33,11 @@ echo "Installing po/CMakeLists.txt"
 rm -f po/CMakeLists.txt
 ln -s ../$cmake_dir/CMakeLists/po_CMakeLists.txt po/CMakeLists.txt
 
-echo "Installing include/config.h.cmake"
+echo "installing test/CMakeLists.txt"
+rm -f test/CMakeLists.txt
+ln -sf ../$cmake_dir/CMakeLists/test_CMakeLists.txt test/CMakeLists.txt
+
+echo "installing include/config.h.cmake"
 rm -f include/config.h.cmake
 ln -sf ../$cmake_dir/config.h.cmake include/config.h.cmake
 
index 5f474be453c86e750188e41cc513a6fa3b773954..cea22989d48e22d3c245b1e6f8d005acde42f566 100644 (file)
@@ -442,7 +442,6 @@ check_PROGRAMS = \
        test_url \
        test_utf8 \
        test_headers \
-       test_control \
        $(NULL)
 
 dist_check_SCRIPTS = check_symbols
@@ -469,10 +468,6 @@ test_utf8_CFLAGS = $(CFLAGS_tests)
 test_headers_SOURCES = test/headers.c
 test_headers_CFLAGS = $(CFLAGS_tests)
 
-test_control_SOURCES = control/testapi.c
-test_control_LDADD = libvlc-control.la
-test_control_CFLAGS = $(CFLAGS_tests)
-
 check-local:
        for h in `echo $(dist_pkginclude_HEADERS) $(pkginclude_HEADERS) | sed -e s,\.\./include/,,g`; \
        do \
diff --git a/src/control/testapi.c b/src/control/testapi.c
deleted file mode 100644 (file)
index 02acd8e..0000000
+++ /dev/null
@@ -1,481 +0,0 @@
-/*
- * testapi.c - libvlc smoke test
- *
- * $Id$
- */
-
-/**********************************************************************
- *  Copyright (C) 2007 Rémi Denis-Courmont.                           *
- *  This program is free software; you can redistribute and/or modify *
- *  it under the terms of the GNU General Public License as published *
- *  by the Free Software Foundation; version 2 of the license, or (at *
- *  your option) any later version.                                   *
- *                                                                    *
- *  This program is distributed in the hope that it will be useful,   *
- *  but WITHOUT ANY WARRANTY; without even the implied warranty of    *
- *  MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.              *
- *  See the GNU General Public License for more details.              *
- *                                                                    *
- *  You should have received a copy of the GNU General Public License *
- *  along with this program; if not, you can get it from:             *
- *  http://www.gnu.org/copyleft/gpl.html                              *
- **********************************************************************/
-
-#ifdef HAVE_CONFIG_H
-# include "config.h"
-#endif
-#include <vlc/libvlc.h>
-
-#undef NDEBUG
-#include <assert.h>
-
-#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)
-{
-    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)
-{
-    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 ();
-}
-
-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;
-}
diff --git a/test/Makefile.am b/test/Makefile.am
new file mode 100644 (file)
index 0000000..8ae87f7
--- /dev/null
@@ -0,0 +1,55 @@
+###############################################################################
+# Automake targets and declarations
+###############################################################################
+
+AUTOMAKE_OPTIONS = subdir-objects
+
+###############################################################################
+# Unit/regression test
+###############################################################################
+check_PROGRAMS = \
+    test_libvlc_core \
+       test_libvlc_events \
+       test_libvlc_media_list \
+       test_libvlc_media_list_player \
+       test_libvlc_media_player \
+       $(NULL)
+
+TESTS = samples $(check_PROGRAMS)
+
+# Samples server
+SAMPLES_SERVER=http://streams.videolan.org/streams-videolan/reference
+
+samples/test.sample:
+       mkdir -p `basename $@`
+       curl $(SAMPLES_SERVER)/avi/Hero-Div3.avi > $@
+
+samples: samples/test.sample
+
+CFLAGS_tests = `$(VLC_CONFIG) --cflags libvlc`
+
+test_libvlc_core_SOURCES = libvlc/core.c
+test_libvlc_core_LDADD = $(top_builddir)/src/libvlc-control.la
+test_libvlc_core_CFLAGS = $(CFLAGS_tests)
+
+test_libvlc_events_SOURCES = libvlc/events.c
+test_libvlc_events_LDADD = $(top_builddir)/src/libvlc-control.la
+test_libvlc_events_CFLAGS = $(CFLAGS_tests)
+
+test_libvlc_media_list_player_SOURCES = libvlc/media_list_player.c
+test_libvlc_media_list_player_LDADD = $(top_builddir)/src/libvlc-control.la
+test_libvlc_media_list_player_CFLAGS = $(CFLAGS_tests)
+
+test_libvlc_media_list_SOURCES = libvlc/media_list.c
+test_libvlc_media_list_LDADD = $(top_builddir)/src/libvlc-control.la
+test_libvlc_media_list_CFLAGS = $(CFLAGS_tests)
+
+test_libvlc_media_player_SOURCES = libvlc/media_player.c
+test_libvlc_media_player_LDADD = $(top_builddir)/src/libvlc-control.la
+test_libvlc_media_player_CFLAGS = $(CFLAGS_tests)
+
+FORCE:
+       @echo "Generated source cannot be phony. Go away." >&2
+       @exit 1
+
+.PHONY: FORCE
diff --git a/test/libvlc/core.c b/test/libvlc/core.c
new file mode 100644 (file)
index 0000000..4f68bf1
--- /dev/null
@@ -0,0 +1,60 @@
+/*
+ * core.c - libvlc smoke test
+ *
+ * $Id$
+ */
+
+/**********************************************************************
+ *  Copyright (C) 2007 Rémi Denis-Courmont.                           *
+ *  This program is free software; you can redistribute and/or modify *
+ *  it under the terms of the GNU General Public License as published *
+ *  by the Free Software Foundation; version 2 of the license, or (at *
+ *  your option) any later version.                                   *
+ *                                                                    *
+ *  This program is distributed in the hope that it will be useful,   *
+ *  but WITHOUT ANY WARRANTY; without even the implied warranty of    *
+ *  MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.              *
+ *  See the GNU General Public License for more details.              *
+ *                                                                    *
+ *  You should have received a copy of the GNU General Public License *
+ *  along with this program; if not, you can get it from:             *
+ *  http://www.gnu.org/copyleft/gpl.html                              *
+ **********************************************************************/
+
+#include "test.h"
+
+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);
+}
+
+
+int main (void)
+{
+    test_init();
+
+    test_core (test_defaults_args, test_defaults_nargs);
+
+    return 0;
+}
diff --git a/test/libvlc/events.c b/test/libvlc/events.c
new file mode 100644 (file)
index 0000000..af860b8
--- /dev/null
@@ -0,0 +1,143 @@
+/*
+ * events.c - libvlc smoke test
+ *
+ * $Id$
+ */
+
+/**********************************************************************
+ *  Copyright (C) 2007 Rémi Denis-Courmont.                           *
+ *  Copyright (C) 2008 Pierre d'Herbemont.                            *
+ *  This program is free software; you can redistribute and/or modify *
+ *  it under the terms of the GNU General Public License as published *
+ *  by the Free Software Foundation; version 2 of the license, or (at *
+ *  your option) any later version.                                   *
+ *                                                                    *
+ *  This program is distributed in the hope that it will be useful,   *
+ *  but WITHOUT ANY WARRANTY; without even the implied warranty of    *
+ *  MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.              *
+ *  See the GNU General Public License for more details.              *
+ *                                                                    *
+ *  You should have received a copy of the GNU General Public License *
+ *  along with this program; if not, you can get it from:             *
+ *  http://www.gnu.org/copyleft/gpl.html                              *
+ **********************************************************************/
+
+#include "test.h"
+
+/* 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)
+{
+    (void)event;
+    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 ();
+}
+
+int main (void)
+{
+    test_init();
+
+    test_events (test_defaults_args, test_defaults_nargs);
+
+    return 0;
+}
diff --git a/test/libvlc/media_list.c b/test/libvlc/media_list.c
new file mode 100644 (file)
index 0000000..db8c9e2
--- /dev/null
@@ -0,0 +1,144 @@
+/*
+ * media_list.c - libvlc smoke test
+ *
+ * $Id$
+ */
+
+/**********************************************************************
+ *  Copyright (C) 2007 Rémi Denis-Courmont.                           *
+ *  This program is free software; you can redistribute and/or modify *
+ *  it under the terms of the GNU General Public License as published *
+ *  by the Free Software Foundation; version 2 of the license, or (at *
+ *  your option) any later version.                                   *
+ *                                                                    *
+ *  This program is distributed in the hope that it will be useful,   *
+ *  but WITHOUT ANY WARRANTY; without even the implied warranty of    *
+ *  MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.              *
+ *  See the GNU General Public License for more details.              *
+ *                                                                    *
+ *  You should have received a copy of the GNU General Public License *
+ *  along with this program; if not, you can get it from:             *
+ *  http://www.gnu.org/copyleft/gpl.html                              *
+ **********************************************************************/
+
+#include "test.h"
+
+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 ();
+}
+
+int main (void)
+{
+    test_init();
+
+    test_media_list (test_defaults_args, test_defaults_nargs);
+
+    return 0;
+}
diff --git a/test/libvlc/media_list_player.c b/test/libvlc/media_list_player.c
new file mode 100644 (file)
index 0000000..5f228de
--- /dev/null
@@ -0,0 +1,81 @@
+/*
+ * media_list_player.c - libvlc smoke test
+ *
+ * $Id$
+ */
+
+/**********************************************************************
+ *  Copyright (C) 2007 Rémi Denis-Courmont.                           *
+ *  This program is free software; you can redistribute and/or modify *
+ *  it under the terms of the GNU General Public License as published *
+ *  by the Free Software Foundation; version 2 of the license, or (at *
+ *  your option) any later version.                                   *
+ *                                                                    *
+ *  This program is distributed in the hope that it will be useful,   *
+ *  but WITHOUT ANY WARRANTY; without even the implied warranty of    *
+ *  MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.              *
+ *  See the GNU General Public License for more details.              *
+ *                                                                    *
+ *  You should have received a copy of the GNU General Public License *
+ *  along with this program; if not, you can get it from:             *
+ *  http://www.gnu.org/copyleft/gpl.html                              *
+ **********************************************************************/
+
+#include "test.h"
+
+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 = test_default_sample;
+
+    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 (void)
+{
+    test_init();
+
+    test_media_list_player_pause_stop (test_defaults_args, test_defaults_nargs);
+
+    return 0;
+}
diff --git a/test/libvlc/media_player.c b/test/libvlc/media_player.c
new file mode 100644 (file)
index 0000000..a09a019
--- /dev/null
@@ -0,0 +1,119 @@
+/*
+ * media_player.c - libvlc smoke test
+ *
+ * $Id$
+ */
+
+/**********************************************************************
+ *  Copyright (C) 2007 Rémi Denis-Courmont.                           *
+ *  This program is free software; you can redistribute and/or modify *
+ *  it under the terms of the GNU General Public License as published *
+ *  by the Free Software Foundation; version 2 of the license, or (at *
+ *  your option) any later version.                                   *
+ *                                                                    *
+ *  This program is distributed in the hope that it will be useful,   *
+ *  but WITHOUT ANY WARRANTY; without even the implied warranty of    *
+ *  MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.              *
+ *  See the GNU General Public License for more details.              *
+ *                                                                    *
+ *  You should have received a copy of the GNU General Public License *
+ *  along with this program; if not, you can get it from:             *
+ *  http://www.gnu.org/copyleft/gpl.html                              *
+ **********************************************************************/
+
+#include "test.h"
+
+static void test_media_player_play_stop(const char** argv, int argc)
+{
+    libvlc_instance_t *vlc;
+    libvlc_media_t *md;
+    libvlc_media_player_t *mi;
+    const char * file = test_default_sample;
+
+    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 ();
+}
+
+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 = test_default_sample;
+
+    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 ();
+}
+
+
+int main (void)
+{
+    test_init();
+
+    test_media_player_play_stop (test_defaults_args, test_defaults_nargs);
+    test_media_player_pause_stop (test_defaults_args, test_defaults_nargs);
+
+    return 0;
+}
diff --git a/test/libvlc/test.h b/test/libvlc/test.h
new file mode 100644 (file)
index 0000000..9cec504
--- /dev/null
@@ -0,0 +1,102 @@
+/*
+ * test.h - libvlc smoke test common definitions
+ *
+ * $Id$
+ */
+
+/**********************************************************************
+ *  Copyright (C) 2007 Rémi Denis-Courmont.                           *
+ *  Copyright (C) 2008 Pierre d'Herbemont.                            *
+ *  This program is free software; you can redistribute and/or modify *
+ *  it under the terms of the GNU General Public License as published *
+ *  by the Free Software Foundation; version 2 of the license, or (at *
+ *  your option) any later version.                                   *
+ *                                                                    *
+ *  This program is distributed in the hope that it will be useful,   *
+ *  but WITHOUT ANY WARRANTY; without even the implied warranty of    *
+ *  MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.              *
+ *  See the GNU General Public License for more details.              *
+ *                                                                    *
+ *  You should have received a copy of the GNU General Public License *
+ *  along with this program; if not, you can get it from:             *
+ *  http://www.gnu.org/copyleft/gpl.html                              *
+ **********************************************************************/
+
+#ifndef TEST_H
+#define TEST_H
+
+/*********************************************************************
+ * Some useful common headers
+ */
+
+#ifdef HAVE_CONFIG_H
+# include "config.h"
+#endif
+#include <vlc/libvlc.h>
+
+#undef NDEBUG
+#include <assert.h>
+
+#include <stdio.h>
+#include <stdlib.h>
+#include <unistd.h>
+
+
+/*********************************************************************
+ * Some useful global var
+ */
+static libvlc_exception_t ex;
+
+static const char * test_defaults_args[] = {
+    "-vvv",
+    "-I",
+    "dummy",
+    "--plugin-path=../modules",
+    "--vout=dummy",
+    "--aout=dummy"
+};
+
+static const int test_defaults_nargs =
+    sizeof (test_defaults_args) / sizeof (test_defaults_args[0]);
+
+static const char * test_default_sample = "samples/test.sample";
+
+
+/*********************************************************************
+ * Some useful common functions
+ */
+
+#define log( ... ) printf( "testapi: " __VA_ARGS__ );
+
+/* test if we have exception */
+static inline bool have_exception (void)
+{
+    if (libvlc_exception_raised (&ex))
+    {
+        libvlc_exception_clear (&ex);
+        return true;
+    }
+    else
+        return false;
+}
+
+static inline 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);
+}
+
+static inline void test_init (void)
+{
+    (void)test_default_sample; /* This one may not be used */
+    alarm (50); /* Make sure "make check" does not get stuck */
+}
+
+#endif /* TEST_H */