]> git.sesse.net Git - vlc/blob - test/libvlc/media_list_player.c
test: Add two more missing media_list_player_stop().
[vlc] / test / libvlc / media_list_player.c
1 /*
2  * media_list_player.c - libvlc smoke test
3  *
4  * $Id$
5  */
6
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  **********************************************************************/
23
24 #include "test.h"
25
26  // For msleep
27 #include <vlc_common.h>
28 #include <vlc_mtime.h>
29
30 #include "libvlc_additions.h"
31
32 /*
33     HACK - FIX ME
34     This allows for the direct addition of subitems in the playback options test.
35     This would not be necessary if there were an add subitems function.
36 */
37 #include "../../src/control/media_internal.h"
38
39 struct check_items_order_data {
40     bool done_playing;
41     unsigned count;
42     unsigned index;
43     void * items[16];
44 };
45
46 static inline void check_data_init(struct check_items_order_data *check)
47 {
48     check->index = 0;
49     check->count = 0;
50     check->done_playing = false;
51 }
52
53 static inline void queue_expected_item(struct check_items_order_data *check, void *item)
54 {
55     assert(check->count < 16);
56     check->items[check->count] = item;
57     check->count++;
58 }
59
60 static inline void wait_queued_items(struct check_items_order_data *check)
61 {
62     // Wait dummily for check_items_order_callback() to flag 'done_playing':
63     while (!check->done_playing)
64         msleep(100000);
65 }
66
67 static void check_items_order_callback(const libvlc_event_t * p_event, void * user_data)
68 {
69     struct check_items_order_data *checks = user_data;
70     libvlc_media_t *md = p_event->u.media_list_player_next_item_set.item;
71     assert(checks->index < checks->count);
72     if (checks->items[checks->index] != md)
73     {
74         char *title = libvlc_media_get_meta(md, libvlc_meta_Title);
75         log ("Got items %s\n", title);
76         free(title);
77     }
78     assert(checks->items[checks->index] == md);
79
80     char *title = libvlc_media_get_meta(md, libvlc_meta_Title);
81     log ("Item %d '%s' was correctly queued\n", checks->index, title);
82     free(title);
83
84     if (checks->index == (checks->count - 1))
85     {
86         log ("Done playing with success\n");
87         checks->done_playing = true;
88     }
89     checks->index++;
90 }
91
92 static void test_media_list_player_items_queue(const char** argv, int argc)
93 {
94     libvlc_instance_t *vlc;
95     libvlc_media_t *md;
96     libvlc_media_list_t *ml;
97     libvlc_media_list_player_t *mlp;
98
99     const char * file = test_default_sample;
100
101     log ("Testing media player item queue-ing\n");
102
103     libvlc_exception_init (&ex);
104     vlc = libvlc_new (argc, argv, &ex);
105     catch ();
106
107     md = libvlc_media_new (vlc, file, &ex);
108     catch ();
109
110     ml = libvlc_media_list_new (vlc, &ex);
111     catch ();
112
113     mlp = libvlc_media_list_player_new (vlc, &ex);
114     catch ();
115
116     libvlc_media_list_add_media (ml, md, &ex);
117     catch ();
118
119     static struct check_items_order_data check;
120     check_data_init(&check);
121     queue_expected_item(&check, md);
122
123     // Add three more media
124     queue_expected_item(&check, media_list_add_file_path (vlc, ml, file));
125     queue_expected_item(&check, media_list_add_file_path (vlc, ml, file));
126     queue_expected_item(&check, media_list_add_file_path (vlc, ml, file));
127
128     // Add a node
129     libvlc_media_t *node = libvlc_media_new_as_node(vlc, "node", &ex);
130     catch ();
131     libvlc_media_list_add_media(ml, node, &ex);
132     catch ();
133     queue_expected_item(&check, node);
134
135     // Add items to that node
136     libvlc_media_list_t *subitems = libvlc_media_subitems(node);
137     queue_expected_item(&check, media_list_add_file_path(vlc, subitems, file));
138     queue_expected_item(&check, media_list_add_file_path(vlc, subitems, file));
139     queue_expected_item(&check, media_list_add_file_path(vlc, subitems, file));
140     libvlc_media_list_release(subitems);
141
142     libvlc_media_list_player_set_media_list (mlp, ml, &ex);
143
144     libvlc_event_manager_t * em = libvlc_media_list_player_event_manager(mlp);
145     libvlc_event_attach(em, libvlc_MediaListPlayerNextItemSet, check_items_order_callback, &check, &ex);
146     catch ();
147
148     libvlc_media_list_player_play(mlp, &ex);
149     catch ();
150
151     // Wait until all item are read
152     wait_queued_items(&check);
153
154     libvlc_media_list_player_stop (mlp, &ex);
155     catch ();
156
157     libvlc_media_list_player_release (mlp);
158     catch ();
159
160     libvlc_release (vlc);
161     catch ();
162 }
163
164 static void test_media_list_player_previous(const char** argv, int argc)
165 {
166     libvlc_instance_t *vlc;
167     libvlc_media_t *md;
168     libvlc_media_list_t *ml;
169     libvlc_media_list_player_t *mlp;
170
171     const char * file = test_default_sample;
172
173     log ("Testing media player previous()\n");
174
175     libvlc_exception_init (&ex);
176     vlc = libvlc_new (argc, argv, &ex);
177     catch ();
178
179     md = libvlc_media_new (vlc, file, &ex);
180     catch ();
181
182     ml = libvlc_media_list_new (vlc, &ex);
183     catch ();
184
185     mlp = libvlc_media_list_player_new (vlc, &ex);
186     catch ();
187
188     libvlc_media_list_add_media (ml, md, &ex);
189     catch ();
190
191     // Add three media
192     media_list_add_file_path (vlc, ml, file);
193     media_list_add_file_path (vlc, ml, file);
194     media_list_add_file_path (vlc, ml, file);
195
196     libvlc_media_list_player_set_media_list (mlp, ml, &ex);
197
198     libvlc_media_list_player_play_item (mlp, md, &ex);
199     catch ();
200
201     libvlc_media_release (md);
202
203     msleep(100000);
204
205     libvlc_media_list_player_previous (mlp, &ex);
206     catch ();
207
208     libvlc_media_list_player_pause (mlp, &ex);
209     catch();
210
211     msleep(100000);
212
213     libvlc_media_list_player_previous (mlp, &ex);
214     catch ();
215
216     libvlc_media_list_player_stop (mlp, &ex);
217     catch ();
218
219     msleep(100000);
220
221     libvlc_media_list_player_previous (mlp, &ex);
222     catch ();
223
224     libvlc_media_list_player_stop (mlp, &ex);
225     catch ();
226
227     libvlc_media_list_player_release (mlp);
228     catch ();
229
230     libvlc_release (vlc);
231     catch ();
232 }
233
234 static void test_media_list_player_next(const char** argv, int argc)
235 {
236     libvlc_instance_t *vlc;
237     libvlc_media_t *md;
238     libvlc_media_list_t *ml;
239     libvlc_media_list_player_t *mlp;
240
241     const char * file = test_default_sample;
242
243     log ("Testing media player next()\n");
244
245     libvlc_exception_init (&ex);
246     vlc = libvlc_new (argc, argv, &ex);
247     catch ();
248
249     md = libvlc_media_new (vlc, file, &ex);
250     catch ();
251
252     ml = libvlc_media_list_new (vlc, &ex);
253     catch ();
254
255     mlp = libvlc_media_list_player_new (vlc, &ex);
256     catch ();
257
258     libvlc_media_list_add_media (ml, md, &ex);
259     catch ();
260
261     // Add three media
262     media_list_add_file_path (vlc, ml, file);
263     media_list_add_file_path (vlc, ml, file);
264     media_list_add_file_path (vlc, ml, file);
265
266     libvlc_media_list_player_set_media_list (mlp, ml, &ex);
267
268     libvlc_media_list_player_play_item (mlp, md, &ex);
269     catch ();
270
271     libvlc_media_release (md);
272
273     msleep(100000);
274
275     libvlc_media_list_player_next (mlp, &ex);
276     catch ();
277
278     libvlc_media_list_player_pause (mlp, &ex);
279     catch();
280
281     msleep(100000);
282
283     libvlc_media_list_player_next (mlp, &ex);
284     catch ();
285
286     libvlc_media_list_player_stop (mlp, &ex);
287     catch ();
288
289     msleep(100000);
290
291     libvlc_media_list_player_next (mlp, &ex);
292     catch ();
293
294     libvlc_media_list_player_stop (mlp, &ex);
295     catch ();
296
297     libvlc_media_list_player_release (mlp);
298     catch ();
299
300     libvlc_release (vlc);
301     catch ();
302 }
303
304 static void test_media_list_player_pause_stop(const char** argv, int argc)
305 {
306     libvlc_instance_t *vlc;
307     libvlc_media_t *md;
308     libvlc_media_list_t *ml;
309     libvlc_media_list_player_t *mlp;
310
311     const char * file = test_default_sample;
312
313     log ("Testing play and pause of %s using the media list.\n", file);
314
315     libvlc_exception_init (&ex);
316     vlc = libvlc_new (argc, argv, &ex);
317     catch ();
318
319     md = libvlc_media_new (vlc, file, &ex);
320     catch ();
321
322     ml = libvlc_media_list_new (vlc, &ex);
323     catch ();
324
325     mlp = libvlc_media_list_player_new (vlc, &ex);
326
327     libvlc_media_list_add_media( ml, md, &ex );
328     catch ();
329
330     libvlc_media_list_player_set_media_list( mlp, ml, &ex );
331
332     libvlc_media_list_player_play_item( mlp, md, &ex );
333     catch ();
334
335     libvlc_media_list_player_pause (mlp, &ex);
336     catch();
337
338     libvlc_media_list_player_stop (mlp, &ex);
339     catch ();
340
341     libvlc_media_release (md);
342
343     libvlc_media_list_player_release (mlp);
344     catch ();
345
346     libvlc_release (vlc);
347     catch ();
348 }
349
350 static void test_media_list_player_play_item_at_index(const char** argv, int argc)
351 {
352     libvlc_instance_t *vlc;
353     libvlc_media_t *md;
354     libvlc_media_list_t *ml;
355     libvlc_media_list_player_t *mlp;
356
357     const char * file = test_default_sample;
358
359     log ("Testing play_item_at_index of %s using the media list.\n", file);
360
361     libvlc_exception_init (&ex);
362     vlc = libvlc_new (argc, argv, &ex);
363     catch ();
364
365     md = libvlc_media_new (vlc, file, &ex);
366     catch ();
367
368     ml = libvlc_media_list_new (vlc, &ex);
369     catch ();
370
371     mlp = libvlc_media_list_player_new (vlc, &ex);
372
373     for (unsigned i = 0; i < 5; i++)
374     {
375         libvlc_media_list_add_media( ml, md, &ex );
376         catch ();
377     }
378
379     libvlc_media_list_player_set_media_list( mlp, ml, &ex );
380
381     libvlc_media_list_player_play_item_at_index( mlp, 0, &ex );
382     catch ();
383
384     libvlc_media_list_player_stop (mlp, &ex);
385     catch ();
386
387     libvlc_media_release (md);
388     catch ();
389
390     libvlc_media_list_player_release (mlp);
391     catch ();
392
393     libvlc_release (vlc);
394     catch ();
395 }
396
397 static void test_media_list_player_playback_options (const char** argv, int argc)
398 {
399     libvlc_instance_t *vlc;
400     libvlc_media_t *md;
401     libvlc_media_t *md2;
402     libvlc_media_t *md3;
403     libvlc_media_t *md4;
404     libvlc_media_t *md5;
405     libvlc_media_list_t *ml;
406     libvlc_media_list_t *ml2;
407     libvlc_media_list_t *ml3;
408     libvlc_media_list_t *ml4;
409     libvlc_media_list_t *ml5;
410     libvlc_media_list_t *ml6;
411     libvlc_media_list_player_t *mlp;
412
413     const char * file = test_default_sample;
414
415     log ("Testing media player playback options()\n");
416
417     libvlc_exception_init (&ex);
418     vlc = libvlc_new (argc, argv, &ex);
419     catch ();
420
421     /*
422      *   Create the following media tree:
423      *
424      *  ml1:            0 ---- 1 ---- 2
425      *                 /       |       \
426      *  ml2&4:      0 -- 1     |   0 -- 1 -- 2
427      *                         |
428      *  ml3:    0 -- 1 -- 2 -- 3 -- 4 -- 5 -- 6
429      *                    |                   |
430      *  ml5&6:            0                 0 -- 1
431      */
432
433     md = libvlc_media_new (vlc, file, &ex);
434     catch ();
435
436     md2 = libvlc_media_new (vlc, file, &ex);
437     catch ();
438
439     md3 = libvlc_media_new (vlc, file, &ex);
440     catch ();
441
442     md4 = libvlc_media_new (vlc, file, &ex);
443     catch ();
444
445     md5 = libvlc_media_new (vlc, file, &ex);
446     catch ();
447
448     ml = libvlc_media_list_new (vlc, &ex);
449     catch ();
450
451     ml2 = libvlc_media_list_new (vlc, &ex);
452     catch ();
453
454     ml3 = libvlc_media_list_new (vlc, &ex);
455     catch ();
456
457     ml4 = libvlc_media_list_new (vlc, &ex);
458     catch ();
459
460     ml5 = libvlc_media_list_new (vlc, &ex);
461     catch ();
462
463     ml6 = libvlc_media_list_new (vlc, &ex);
464     catch ();
465
466     media_list_add_file_path (vlc, ml2, file);
467     media_list_add_file_path (vlc, ml2, file);
468
469     media_list_add_file_path (vlc, ml3, file);
470     media_list_add_file_path (vlc, ml3, file);
471     libvlc_media_list_add_media (ml3, md4, &ex);
472     catch ();
473     media_list_add_file_path (vlc, ml3, file);
474     media_list_add_file_path (vlc, ml3, file);
475     media_list_add_file_path (vlc, ml3, file);
476     libvlc_media_list_add_media (ml3, md5, &ex);
477     catch ();
478
479     media_list_add_file_path (vlc, ml4, file);
480     media_list_add_file_path (vlc, ml4, file);
481     media_list_add_file_path (vlc, ml4, file);
482
483     media_list_add_file_path (vlc, ml5, file);
484
485     media_list_add_file_path (vlc, ml6, file);
486     media_list_add_file_path (vlc, ml6, file);
487
488     md->p_subitems = ml2;
489     md2->p_subitems = ml3;
490     md3->p_subitems = ml4;
491     md4->p_subitems = ml5;
492     md5->p_subitems = ml6;
493
494     libvlc_media_list_add_media (ml, md, &ex);
495     catch ();
496
497     libvlc_media_list_add_media (ml, md2, &ex);
498     catch ();
499
500     libvlc_media_list_add_media (ml, md3, &ex);
501     catch ();
502
503     mlp = libvlc_media_list_player_new (vlc, &ex);
504     catch ();
505
506     libvlc_media_list_player_set_media_list (mlp, ml, &ex);
507     catch ();
508
509     // Test default playback mode
510     libvlc_media_list_player_set_playback_mode(mlp, libvlc_playback_mode_default, &ex);
511     catch ();
512
513     libvlc_media_list_player_play_item (mlp, md, &ex);
514     catch ();
515
516     libvlc_media_release (md);
517     catch ();
518     libvlc_media_release (md2);
519     catch ();
520     libvlc_media_release (md3);
521     catch ();
522     libvlc_media_release (md4);
523     catch ();
524     libvlc_media_release (md5);
525     catch ();
526
527     msleep(500000);
528
529     libvlc_media_list_player_stop (mlp, &ex);
530     catch ();
531
532     // Test looping playback mode
533     log ("Testing media player playback option - Loop\n");
534     libvlc_media_list_player_set_playback_mode(mlp, libvlc_playback_mode_loop, &ex);
535     catch ();
536
537     libvlc_media_list_player_play_item (mlp, md, &ex);
538     catch ();
539
540     msleep(500000);
541
542     libvlc_media_list_player_stop (mlp, &ex);
543     catch ();
544
545     // Test repeat playback mode
546     log ("Testing media player playback option - Repeat\n");
547     libvlc_media_list_player_set_playback_mode(mlp, libvlc_playback_mode_repeat, &ex);
548     catch ();
549
550     libvlc_media_list_player_play_item (mlp, md, &ex);
551     catch ();
552
553     msleep(500000);
554
555     libvlc_media_list_player_stop (mlp, &ex);
556     catch ();
557
558     libvlc_media_list_player_release (mlp);
559     catch ();
560
561     libvlc_release (vlc);
562     catch ();
563 }
564
565
566 int main (void)
567 {
568     test_init();
569
570     test_media_list_player_pause_stop (test_defaults_args, test_defaults_nargs);
571     test_media_list_player_play_item_at_index (test_defaults_args, test_defaults_nargs);
572     test_media_list_player_previous (test_defaults_args, test_defaults_nargs);
573     test_media_list_player_next (test_defaults_args, test_defaults_nargs);
574     test_media_list_player_items_queue (test_defaults_args, test_defaults_nargs);
575     test_media_list_player_playback_options (test_defaults_args, test_defaults_nargs);
576     return 0;
577 }