summaryrefslogtreecommitdiffstats
path: root/test
diff options
context:
space:
mode:
authorMatthias Vogelgesang <matthias.vogelgesang@kit.edu>2012-03-05 10:49:37 +0100
committerMatthias Vogelgesang <matthias.vogelgesang@kit.edu>2012-03-05 10:49:37 +0100
commit38a25bb40b18fc820157d9af832daf08bbc7cd9e (patch)
tree820fe465ef0be2fa0569e3eb5bca818d566a72d2 /test
parent06300e8df49b5767600bc65a8ad30a809004d6cf (diff)
downloadlibuca-38a25bb40b18fc820157d9af832daf08bbc7cd9e.tar.gz
libuca-38a25bb40b18fc820157d9af832daf08bbc7cd9e.tar.bz2
libuca-38a25bb40b18fc820157d9af832daf08bbc7cd9e.tar.xz
libuca-38a25bb40b18fc820157d9af832daf08bbc7cd9e.zip
Use property notification instead of signal
Up to this point we used a custom signal to notify about starting and stopping recording of data. However, such signals come (almost) for free for each property. This way, you can query "is-recording" but also be notified when "is-recording" was changed by the camera itself.
Diffstat (limited to 'test')
-rw-r--r--test/CMakeLists.txt12
-rw-r--r--test/test-mock.c50
2 files changed, 48 insertions, 14 deletions
diff --git a/test/CMakeLists.txt b/test/CMakeLists.txt
index b853cb5..4ee097b 100644
--- a/test/CMakeLists.txt
+++ b/test/CMakeLists.txt
@@ -51,9 +51,9 @@ target_link_libraries(test-gobject
${GOBJECT2_LIBRARIES}
)
-#add_executable(test-mock test-mock.c)
-#target_link_libraries(test-mock
-# uca-gobject
-# ${GLIB2_LIBRARIES}
-# ${GOBJECT2_LIBRARIES}
-# )
+add_executable(test-mock test-mock.c)
+target_link_libraries(test-mock
+ uca-gobject
+ ${GLIB2_LIBRARIES}
+ ${GOBJECT2_LIBRARIES}
+ )
diff --git a/test/test-mock.c b/test/test-mock.c
index 2b298a9..ceb4b20 100644
--- a/test/test-mock.c
+++ b/test/test-mock.c
@@ -20,6 +20,12 @@ static void fixture_teardown(Fixture *fixture, gconstpointer data)
g_object_unref(fixture->camera);
}
+static void on_property_change(gpointer instance, GParamSpec *pspec, gpointer user_data)
+{
+ gboolean *success = (gboolean *) user_data;
+ *success = TRUE;
+}
+
static void test_recording(Fixture *fixture, gconstpointer data)
{
GError *error = NULL;
@@ -35,6 +41,39 @@ static void test_recording(Fixture *fixture, gconstpointer data)
g_assert(error == NULL);
}
+static void test_recording_signal(Fixture *fixture, gconstpointer data)
+{
+ UcaCamera *camera = UCA_CAMERA(fixture->camera);
+ gboolean success = FALSE;
+ g_signal_connect(G_OBJECT(camera), "notify::is-recording",
+ (GCallback) on_property_change, &success);
+
+ uca_camera_start_recording(camera, NULL);
+ g_assert(success == TRUE);
+
+ success = FALSE;
+ uca_camera_stop_recording(camera, NULL);
+ g_assert(success == TRUE);
+}
+
+static void test_recording_property(Fixture *fixture, gconstpointer data)
+{
+ UcaCamera *camera = UCA_CAMERA(fixture->camera);
+
+ gboolean is_recording = FALSE;
+ uca_camera_start_recording(camera, NULL);
+ g_object_get(G_OBJECT(camera),
+ "is-recording", &is_recording,
+ NULL);
+ g_assert(is_recording == TRUE);
+
+ uca_camera_stop_recording(camera, NULL);
+ g_object_get(G_OBJECT(camera),
+ "is-recording", &is_recording,
+ NULL);
+ g_assert(is_recording == FALSE);
+}
+
static void test_base_properties(Fixture *fixture, gconstpointer data)
{
UcaCamera *camera = UCA_CAMERA(fixture->camera);
@@ -65,18 +104,11 @@ static void test_binnings_properties(Fixture *fixture, gconstpointer data)
g_assert(g_value_get_uint(value) == 1);
}
-static void signal_handler(gpointer instance, const gchar *name, gpointer user_data)
-{
- g_print("name: %s\n", name);
- gboolean *success = (gboolean *) user_data;
- *success = TRUE;
-}
-
static void test_signal(Fixture *fixture, gconstpointer data)
{
UcaCamera *camera = UCA_CAMERA(fixture->camera);
gboolean success = FALSE;
- g_signal_connect(camera, "property-changed", (GCallback) signal_handler, &success);
+ g_signal_connect(camera, "notify::framerate", (GCallback) on_property_change, &success);
g_object_set(G_OBJECT(camera),
"framerate", 30,
NULL);
@@ -90,7 +122,9 @@ int main(int argc, char *argv[])
g_test_bug_base("http://ufo.kit.edu/ufo/ticket");
g_test_add("/recording", Fixture, NULL, fixture_setup, test_recording, fixture_teardown);
+ g_test_add("/recording/signal", Fixture, NULL, fixture_setup, test_recording_signal, fixture_teardown);
g_test_add("/properties/base", Fixture, NULL, fixture_setup, test_base_properties, fixture_teardown);
+ g_test_add("/properties/recording", Fixture, NULL, fixture_setup, test_recording_property, fixture_teardown);
g_test_add("/properties/binnings", Fixture, NULL, fixture_setup, test_binnings_properties, fixture_teardown);
g_test_add("/signal", Fixture, NULL, fixture_setup, test_signal, fixture_teardown);