From 7cfac76de2725dc1b6848f6640e0334e88d561cf Mon Sep 17 00:00:00 2001 From: Lars Uebernickel Date: Thu, 9 Feb 2012 18:19:57 +0100 Subject: Add mock cups notifier (only sends one message for now) --- test/mock-cups-notifier.c | 52 +++++++++++++++++++++++++++++++++++++++++++++++ 1 file changed, 52 insertions(+) create mode 100644 test/mock-cups-notifier.c (limited to 'test/mock-cups-notifier.c') 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 +#include + + +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 (¬ifier); + g_clear_object (&con); + g_main_loop_unref (loop); + return 0; +} + -- cgit v1.2.3