[gst-cvs] gst-plugins-bad: camerabin: Make the tests pass when the camerabin can' t initialise.
Jan Schmidt
thaytan at kemper.freedesktop.org
Fri Mar 6 16:31:16 PST 2009
Module: gst-plugins-bad
Branch: master
Commit: 81a950ddf8e88b4bfe674f2bdd2184d1f5819561
URL: http://cgit.freedesktop.org/gstreamer/gst-plugins-bad/commit/?id=81a950ddf8e88b4bfe674f2bdd2184d1f5819561
Author: Jan Schmidt <thaytan at noraisin.net>
Date: Fri Mar 6 22:36:19 2009 +0000
camerabin: Make the tests pass when the camerabin can't initialise.
The camerabin tests were throwing glib errors and hanging when
gst-plugins-good elements (jpegenc, videocrop) can't found.
---
gst/camerabin/gstcamerabin.c | 14 ++++++++------
tests/check/elements/camerabin.c | 31 +++++++++++++++++++++++++++----
2 files changed, 35 insertions(+), 10 deletions(-)
diff --git a/gst/camerabin/gstcamerabin.c b/gst/camerabin/gstcamerabin.c
index 905a8c9..bdc4f28 100644
--- a/gst/camerabin/gstcamerabin.c
+++ b/gst/camerabin/gstcamerabin.c
@@ -2750,13 +2750,15 @@ gst_camerabin_user_start (GstCameraBin * camera)
}
g_mutex_unlock (camera->capture_mutex);
- g_object_set (G_OBJECT (camera->active_bin), "filename",
- camera->filename->str, NULL);
+ if (camera->active_bin) {
+ g_object_set (G_OBJECT (camera->active_bin), "filename",
+ camera->filename->str, NULL);
- if (camera->active_bin == camera->imgbin) {
- gst_camerabin_start_image_capture (camera);
- } else if (camera->active_bin == camera->vidbin) {
- gst_camerabin_start_video_recording (camera);
+ if (camera->active_bin == camera->imgbin) {
+ gst_camerabin_start_image_capture (camera);
+ } else if (camera->active_bin == camera->vidbin) {
+ gst_camerabin_start_video_recording (camera);
+ }
}
}
diff --git a/tests/check/elements/camerabin.c b/tests/check/elements/camerabin.c
index 53e0e5f..bd8e00e 100644
--- a/tests/check/elements/camerabin.c
+++ b/tests/check/elements/camerabin.c
@@ -141,10 +141,14 @@ setup (void)
gst_tag_setter_add_tags (setter, GST_TAG_MERGE_REPLACE,
GST_TAG_DESCRIPTION, desc_str, NULL);
-
- gst_element_set_state (GST_ELEMENT (camera), GST_STATE_PLAYING);
-
g_free (desc_str);
+
+ if (gst_element_set_state (GST_ELEMENT (camera), GST_STATE_PLAYING) !=
+ GST_STATE_CHANGE_SUCCESS) {
+ gst_element_set_state (GST_ELEMENT (camera), GST_STATE_NULL);
+ gst_object_unref (camera);
+ camera = NULL;
+ }
}
static void
@@ -152,7 +156,8 @@ teardown (void)
{
g_mutex_free (cam_mutex);
g_cond_free (cam_cond);
- gst_check_teardown_element (camera);
+ if (camera)
+ gst_check_teardown_element (camera);
}
static void
@@ -304,6 +309,9 @@ check_file_validity (const gchar * filename)
GST_START_TEST (test_single_image_capture)
{
+ if (!camera)
+ return;
+
/* set still image mode */
g_object_set (camera, "mode", 0,
"filename", make_test_file_name (SINGLE_IMAGE_FILENAME), NULL);
@@ -322,6 +330,9 @@ GST_END_TEST;
GST_START_TEST (test_burst_image_capture)
{
+ if (!camera)
+ return;
+
/* set still image mode */
g_object_set (camera, "mode", 0,
"filename", make_test_seq_file_name (BURST_IMAGE_FILENAME), NULL);
@@ -344,6 +355,9 @@ GST_END_TEST;
GST_START_TEST (test_video_recording)
{
+ if (!camera)
+ return;
+
/* Set video recording mode */
g_object_set (camera, "mode", 1,
"filename", make_test_file_name (VIDEO_FILENAME), NULL);
@@ -360,6 +374,9 @@ GST_START_TEST (test_image_video_cycle)
{
guint i;
+ if (!camera)
+ return;
+
continuous = FALSE;
for (i = 0; i < 2; i++) {
@@ -391,6 +408,9 @@ GST_START_TEST (validate_captured_image_files)
GString *filename;
gint i;
+ if (!camera)
+ return;
+
/* validate single image */
check_file_validity (SINGLE_IMAGE_FILENAME);
@@ -410,6 +430,9 @@ GST_END_TEST;
GST_START_TEST (validate_captured_video_files)
{
+ if (!camera)
+ return;
+
/* validate video recording */
check_file_validity (VIDEO_FILENAME);
More information about the Gstreamer-commits
mailing list