Skip to content
Projects
Groups
Snippets
Help
Loading...
Help
Support
Keyboard shortcuts
?
Submit feedback
Contribute to GitLab
Sign in
Toggle navigation
V
vlc-gpu
Project overview
Project overview
Details
Activity
Releases
Repository
Repository
Files
Commits
Branches
Tags
Contributors
Graph
Compare
Issues
0
Issues
0
List
Boards
Labels
Milestones
Redmine
Redmine
Merge Requests
0
Merge Requests
0
CI / CD
CI / CD
Pipelines
Jobs
Schedules
Operations
Operations
Metrics
Environments
Analytics
Analytics
CI / CD
Repository
Value Stream
Wiki
Wiki
Snippets
Snippets
Members
Members
Collapse sidebar
Close sidebar
Activity
Graph
Create a new issue
Jobs
Commits
Issue Boards
Open sidebar
videolan
vlc-gpu
Commits
ade35d4a
Commit
ade35d4a
authored
Mar 28, 2008
by
Lukas Durfina
Committed by
Pierre d'Herbemont
Mar 30, 2008
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
Add tests for media list.
Signed-off-by:
Pierre d'Herbemont
<
pdherbemont@free.fr
>
parent
cef623b9
Changes
1
Show whitespace changes
Inline
Side-by-side
Showing
1 changed file
with
94 additions
and
5 deletions
+94
-5
src/control/testapi.c
src/control/testapi.c
+94
-5
No files found.
src/control/testapi.c
View file @
ade35d4a
...
@@ -37,6 +37,18 @@ static libvlc_exception_t ex;
...
@@ -37,6 +37,18 @@ static libvlc_exception_t ex;
#define log( ... ) printf( "testapi: " __VA_ARGS__ );
#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
)
static
void
catch
(
void
)
{
{
if
(
libvlc_exception_raised
(
&
ex
))
if
(
libvlc_exception_raised
(
&
ex
))
...
@@ -86,7 +98,7 @@ static void test_core (const char ** argv, int argc)
...
@@ -86,7 +98,7 @@ static void test_core (const char ** argv, int argc)
static
void
test_media_list
(
const
char
**
argv
,
int
argc
)
static
void
test_media_list
(
const
char
**
argv
,
int
argc
)
{
{
libvlc_instance_t
*
vlc
;
libvlc_instance_t
*
vlc
;
libvlc_media_descriptor_t
*
md
;
libvlc_media_descriptor_t
*
md
1
,
*
md2
,
*
md3
,
*
md4
;
libvlc_media_list_t
*
ml
;
libvlc_media_list_t
*
ml
;
log
(
"Testing media_list
\n
"
);
log
(
"Testing media_list
\n
"
);
...
@@ -98,18 +110,95 @@ static void test_media_list (const char ** argv, int argc)
...
@@ -98,18 +110,95 @@ static void test_media_list (const char ** argv, int argc)
ml
=
libvlc_media_list_new
(
vlc
,
&
ex
);
ml
=
libvlc_media_list_new
(
vlc
,
&
ex
);
catch
();
catch
();
md
=
libvlc_media_descriptor_new
(
vlc
,
"/dev/null"
,
&
ex
);
md1
=
libvlc_media_descriptor_new
(
vlc
,
"/dev/null"
,
&
ex
);
catch
();
md2
=
libvlc_media_descriptor_new
(
vlc
,
"/dev/null"
,
&
ex
);
catch
();
md3
=
libvlc_media_descriptor_new
(
vlc
,
"/dev/null"
,
&
ex
);
catch
();
catch
();
libvlc_media_list_add_media_descriptor
(
ml
,
md
,
&
ex
);
libvlc_media_list_add_media_descriptor
(
ml
,
md
1
,
&
ex
);
catch
();
catch
();
libvlc_media_list_add_media_descriptor
(
ml
,
md
,
&
ex
);
libvlc_media_list_add_media_descriptor
(
ml
,
md
2
,
&
ex
);
catch
();
catch
();
assert
(
libvlc_media_list_count
(
ml
,
&
ex
)
==
2
);
assert
(
libvlc_media_list_count
(
ml
,
&
ex
)
==
2
);
catch
();
catch
();
libvlc_media_descriptor_release
(
md
);
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_descriptor
(
ml
,
md1
,
&
ex
);
/* add 2 items */
catch
();
libvlc_media_list_add_media_descriptor
(
ml
,
md1
,
&
ex
);
catch
();
/* there should be 3 pieces */
assert
(
libvlc_media_list_count
(
ml
,
&
ex
)
==
3
);
catch
();
libvlc_media_list_insert_media_descriptor
(
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_descriptor_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_descriptor_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_descriptor_release
(
md1
);
libvlc_media_descriptor_release
(
md2
);
libvlc_media_descriptor_release
(
md3
);
libvlc_media_descriptor_release
(
md4
);
libvlc_media_list_release
(
ml
);
libvlc_media_list_release
(
ml
);
...
...
Write
Preview
Markdown
is supported
0%
Try again
or
attach a new file
Attach a file
Cancel
You are about to add
0
people
to the discussion. Proceed with caution.
Finish editing this message first!
Cancel
Please
register
or
sign in
to comment