aboutsummaryrefslogtreecommitdiff
path: root/test/mock-cups-notifier.c
diff options
context:
space:
mode:
Diffstat (limited to 'test/mock-cups-notifier.c')
-rw-r--r--test/mock-cups-notifier.c52
1 files changed, 52 insertions, 0 deletions
diff --git a/test/mock-cups-notifier.c b/test/mock-cups-notifier.c
new file mode 100644
index 0000000..10d5fe5
--- /dev/null
+++ b/test/mock-cups-notifier.c
@@ -0,0 +1,52 @@
+
+#include <glib.h>
+#include <cups-notifier.h>
+
+
+int main (int argc, char **argv)
+{
+ GMainLoop *loop;
+ CupsNotifier *notifier;
+ GDBusConnection *con;
+ GError *error = NULL;
+
+ g_type_init ();
+
+ loop = g_main_loop_new (NULL, FALSE);
+
+ con = g_bus_get_sync (G_BUS_TYPE_SYSTEM, NULL, &error);
+ if (error) {
+ g_printerr ("Error getting system bus: %s\n", error->message);
+ g_error_free (error);
+ goto out;
+ }
+
+ notifier = cups_notifier_skeleton_new ();
+
+ g_dbus_interface_skeleton_export (G_DBUS_INTERFACE_SKELETON (notifier),
+ con,
+ "/org/cups/cupsd/Notifier",
+ &error);
+ if (error) {
+ g_printerr ("Error exporting cups Notifier object: %s\n", error->message);
+ g_error_free (error);
+ goto out;
+ }
+
+ cups_notifier_emit_printer_state_changed (notifier,
+ "Printer state changed!",
+ "file:///tmp/print",
+ "hp-LaserJet-1012",
+ 5,
+ "toner-low",
+ FALSE);
+
+ g_main_context_iteration (NULL, FALSE);
+
+out:
+ g_clear_object (&notifier);
+ g_clear_object (&con);
+ g_main_loop_unref (loop);
+ return 0;
+}
+