]> git.sesse.net Git - vlc/blob - bindings/java/core/src/test/java/org/videolan/jvlc/internal/LibVlcMediaTest.java
Add some locking.
[vlc] / bindings / java / core / src / test / java / org / videolan / jvlc / internal / LibVlcMediaTest.java
1 /*****************************************************************************
2  * MediaDescriptorTest.java: VLC Java Bindings
3  *****************************************************************************
4  * Copyright (C) 1998-2008 the VideoLAN team
5  *
6  * Authors: Filippo Carone <filippo@carone.org>
7  *
8  *
9  * $Id $
10  *
11  * This program is free software; you can redistribute it and/or modify
12  * it under the terms of the GNU General Public License as published by
13  * the Free Software Foundation; either version 2 of the License, or
14  * (at your option) any later version.
15  *
16  * This program is distributed in the hope that it will be useful,
17  * but WITHOUT ANY WARRANTY; without even the implied warranty of
18  * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the
19  * GNU General Public License for more details.
20  *
21  * You should have received a copy of the GNU General Public License
22  * along with this program; if not, write to the Free Software
23  * Foundation, Inc., 59 Temple Place - Suite 330, Boston, MA  02111, USA.
24  *****************************************************************************/
25
26 package org.videolan.jvlc.internal;
27
28 import junit.framework.Assert;
29
30 import org.junit.Test;
31 import org.videolan.jvlc.internal.LibVlc.LibVlcEventManager;
32 import org.videolan.jvlc.internal.LibVlc.LibVlcMedia;
33 import org.videolan.jvlc.internal.LibVlc.libvlc_exception_t;
34
35
36 public class LibVlcMediaTest extends AbstractVLCInternalTest
37 {
38     
39     @Test
40     public void testMediaNew() throws Exception
41     {
42         libvlc_exception_t exception = new libvlc_exception_t();
43         LibVlcMedia md = libvlc.libvlc_media_new(libvlcInstance, mrl, exception);
44         Assert.assertNotNull(md);
45         Assert.assertEquals(0, exception.b_raised);
46     }
47     
48     @Test
49     public void testMediaGetMrl()
50     {
51         libvlc_exception_t exception = new libvlc_exception_t();
52         LibVlcMedia md = libvlc.libvlc_media_new(libvlcInstance, mrl, exception);
53         String mdMrl = libvlc.libvlc_media_get_mrl(md, exception);
54         Assert.assertEquals(mrl, mdMrl);
55     }
56     
57     @Test
58     public void testMediaDuplicate()
59     {
60         libvlc_exception_t exception = new libvlc_exception_t();
61         LibVlcMedia md = libvlc.libvlc_media_new(libvlcInstance, mrl, exception);
62         LibVlcMedia md2 = libvlc.libvlc_media_duplicate(md);
63         Assert.assertNotSame(md.getPointer(), md2.getPointer());
64         Assert.assertEquals(libvlc.libvlc_media_get_mrl(md2, exception), libvlc.libvlc_media_get_mrl(md, exception));
65     }
66     
67     @Test
68     public void testMediaEventManager()
69     {
70         libvlc_exception_t exception = new libvlc_exception_t();
71         LibVlcMedia md = libvlc.libvlc_media_new(libvlcInstance, mrl, exception);
72         LibVlcEventManager evManager = libvlc.libvlc_media_event_manager(md, exception);
73         Assert.assertEquals(0, exception.b_raised);
74         Assert.assertNotNull(evManager);
75     }
76
77     @Test
78     public void testMediaGetState()
79     {
80         libvlc_exception_t exception = new libvlc_exception_t();
81         LibVlcMedia md = libvlc.libvlc_media_new(libvlcInstance, mrl, exception);
82         int state = libvlc.libvlc_media_get_state(md, exception);
83         Assert.assertEquals(0, exception.b_raised);
84         Assert.assertEquals(LibVlcState.libvlc_NothingSpecial.ordinal(), state);
85     }
86
87     @Test
88     public void testMediaIsPreparsed()
89     {
90         libvlc_exception_t exception = new libvlc_exception_t();
91         LibVlcMedia md = libvlc.libvlc_media_new(libvlcInstance, mrl, exception);
92         int state = libvlc.libvlc_media_is_preparsed(md, exception);
93         Assert.assertEquals(0, exception.b_raised);
94         Assert.assertEquals(0, state);
95     }
96
97     
98 }