diff options
author | Jan Schmidt <thaytan@noraisin.net> | 2009-03-06 22:36:19 +0000 |
---|---|---|
committer | Jan Schmidt <thaytan@noraisin.net> | 2009-03-07 00:31:07 +0000 |
commit | 81a950ddf8e88b4bfe674f2bdd2184d1f5819561 (patch) | |
tree | bc670fa5a3cb74aef91f222312b349e3097802fc | |
parent | 14a881ac0595c2f812b09da5cde4a7c5487edef0 (diff) | |
download | gst-plugins-bad-81a950ddf8e88b4bfe674f2bdd2184d1f5819561.tar.gz gst-plugins-bad-81a950ddf8e88b4bfe674f2bdd2184d1f5819561.tar.bz2 gst-plugins-bad-81a950ddf8e88b4bfe674f2bdd2184d1f5819561.zip |
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.
-rw-r--r-- | gst/camerabin/gstcamerabin.c | 14 | ||||
-rw-r--r-- | 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 905a8c9c..bdc4f28b 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 53e0e5fa..bd8e00ec 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); |