Fix compilation.
[vlc/asuraparaju-public.git] / test / libvlc / media_list.c
blob7eab6b9f48dd4f6912e49f0abd89ece90b7e3369
1 /*
2 * media_list.c - libvlc smoke test
4 * $Id$
5 */
7 /**********************************************************************
8 * Copyright (C) 2007 RĂ©mi Denis-Courmont. *
9 * This program is free software; you can redistribute and/or modify *
10 * it under the terms of the GNU General Public License as published *
11 * by the Free Software Foundation; version 2 of the license, or (at *
12 * your option) any later version. *
13 * *
14 * This program is distributed in the hope that it will be useful, *
15 * but WITHOUT ANY WARRANTY; without even the implied warranty of *
16 * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. *
17 * See the GNU General Public License for more details. *
18 * *
19 * You should have received a copy of the GNU General Public License *
20 * along with this program; if not, you can get it from: *
21 * http://www.gnu.org/copyleft/gpl.html *
22 **********************************************************************/
24 #include "test.h"
26 static void test_media_list (const char ** argv, int argc)
28 libvlc_instance_t *vlc;
29 libvlc_media_t *md1, *md2, *md3, *md4;
30 libvlc_media_list_t *ml;
31 int ret;
33 log ("Testing media_list\n");
35 vlc = libvlc_new (argc, argv);
36 assert (vlc != NULL);
38 ml = libvlc_media_list_new (vlc);
39 assert (ml != NULL);
41 md1 = libvlc_media_new_path (vlc, "/dev/null");
42 assert (md1 != NULL);
43 md2 = libvlc_media_new_path (vlc, "/dev/null");
44 assert (md2 != NULL);
45 md3 = libvlc_media_new_path (vlc, "/dev/null");
46 assert (md3 != NULL);
48 ret = libvlc_media_list_add_media (ml, md1);
49 assert (!ret);
50 ret = libvlc_media_list_add_media (ml, md2);
51 assert (!ret);
53 assert( libvlc_media_list_count (ml) == 2 );
54 assert( libvlc_media_list_index_of_item (ml, md1) == 0 );
55 assert( libvlc_media_list_index_of_item (ml, md2) == 1 );
57 ret = libvlc_media_list_remove_index (ml, 0); /* removing first item */
58 assert (!ret);
60 /* test if second item was moved on first place */
61 assert( libvlc_media_list_index_of_item (ml, md2) == 0 );
62 ret = libvlc_media_list_add_media (ml, md1); /* add 2 items */
63 assert (!ret);
64 ret = libvlc_media_list_add_media (ml, md1);
65 assert (!ret);
67 /* there should be 3 pieces */
68 assert( libvlc_media_list_count (ml) == 3 );
70 ret = libvlc_media_list_insert_media (ml, md3, 2);
71 assert (!ret);
73 /* there should be 4 pieces */
74 assert( libvlc_media_list_count (ml) == 4 );
76 /* test inserting on right place */
77 assert( libvlc_media_list_index_of_item (ml, md3) == 2 );
79 /* test right returning descriptor*/
80 assert ( libvlc_media_list_item_at_index (ml, 0) == md2 );
82 assert ( libvlc_media_list_item_at_index (ml, 2) == md3 );
84 /* test if give errors, when it should */
85 /* have 4 items, so index 4 should give error */
86 ret = libvlc_media_list_remove_index (ml, 4);
87 assert (ret == -1);
89 ret = libvlc_media_list_remove_index (ml, 100);
90 assert (ret == -1);
92 ret = libvlc_media_list_remove_index (ml, -1);
93 assert (ret == -1);
95 /* getting non valid items */
96 libvlc_media_t * p_non_exist =
97 libvlc_media_list_item_at_index (ml, 4);
98 assert (p_non_exist == NULL);
100 p_non_exist = libvlc_media_list_item_at_index (ml, 100);
101 assert (p_non_exist == NULL);
103 p_non_exist = libvlc_media_list_item_at_index (ml, -1);
104 assert (p_non_exist == NULL);
106 md4 = libvlc_media_new_path (vlc, "/dev/null");
107 assert (md4 != NULL);
109 /* try to find non inserted item */
110 int i_non_exist = 0;
111 i_non_exist = libvlc_media_list_index_of_item (ml, md4);
112 assert ( i_non_exist == -1 );
114 libvlc_media_release (md1);
115 libvlc_media_release (md2);
116 libvlc_media_release (md3);
117 libvlc_media_release (md4);
119 libvlc_media_list_release (ml);
121 libvlc_release (vlc);
124 int main (void)
126 test_init();
128 test_media_list (test_defaults_args, test_defaults_nargs);
130 return 0;