summaryrefslogtreecommitdiff
path: root/tests/test-authenticator.c
diff options
context:
space:
mode:
Diffstat (limited to 'tests/test-authenticator.c')
-rw-r--r--tests/test-authenticator.c30
1 files changed, 15 insertions, 15 deletions
diff --git a/tests/test-authenticator.c b/tests/test-authenticator.c
index 3c3bb598..521ded44 100644
--- a/tests/test-authenticator.c
+++ b/tests/test-authenticator.c
@@ -1,4 +1,4 @@
-/*
+/* vi:set et sw=2 sts=2 cin cino=t0,f0,(0,{s,>2s,n-s,^-s,e-s:
* Copyright © 2019 Red Hat, Inc
*
* This program is free software; you can redistribute it and/or
@@ -112,7 +112,7 @@ finish_request_ref_tokens (TokenRequestData *data)
g_variant_builder_init (&results, G_VARIANT_TYPE ("a{sv}"));
g_variant_builder_add (&results, "{sv}", "tokens", g_variant_builder_end (&tokens));
- g_debug ("emitting response");
+ g_info ("emitting response");
flatpak_authenticator_request_emit_response (data->request,
FLATPAK_AUTH_RESPONSE_OK,
g_variant_builder_end (&results));
@@ -130,9 +130,9 @@ http_incoming (GSocketService *service,
g_assert_true (data->request != NULL);
/* For the test, just assume any connection is a valid use of the web flow */
- g_debug ("handling incoming http request");
+ g_info ("handling incoming http request");
- g_debug ("emitting webflow done");
+ g_info ("emitting webflow done");
flatpak_authenticator_request_emit_webflow_done (data->request, options);
finish_request_ref_tokens (data);
@@ -149,7 +149,7 @@ handle_request_close (FlatpakAuthenticatorRequest *object,
{
TokenRequestData *data = user_data;
- g_debug ("handle_request_close");
+ g_info ("handle_request_close");
flatpak_authenticator_request_complete_close (object, invocation);
@@ -157,7 +157,7 @@ handle_request_close (FlatpakAuthenticatorRequest *object,
{
GVariantBuilder results;
- g_debug ("Webflow was cancelled by client");
+ g_info ("Webflow was cancelled by client");
g_variant_builder_init (&results, G_VARIANT_TYPE ("a{sv}"));
flatpak_authenticator_request_emit_response (data->request,
@@ -166,7 +166,7 @@ handle_request_close (FlatpakAuthenticatorRequest *object,
}
else
{
- g_debug ("Ignored webflow cancel by client");
+ g_info ("Ignored webflow cancel by client");
finish_request_ref_tokens (data); /* Silently succeed anyway */
}
@@ -196,7 +196,7 @@ handle_request_ref_tokens (FlatpakAuthenticator *authenticator,
gsize n_refs, i;
g_autofree char *options_s = NULL;
- g_debug ("handling RequestRefTokens");
+ g_info ("handling RequestRefTokens");
options_s = g_variant_print (arg_options, FALSE);
write_request (g_strdup_printf ("remote: %s\n"
@@ -260,7 +260,7 @@ handle_request_ref_tokens (FlatpakAuthenticator *authenticator,
{
g_autoptr(GVariant) options = g_variant_ref_sink (g_variant_new_array (G_VARIANT_TYPE ("{sv}"), NULL, 0));
uri = g_strdup_printf ("http://localhost:%d", (int)port);
- g_debug ("Requesting webflow %s", uri);
+ g_info ("Requesting webflow %s", uri);
flatpak_authenticator_request_emit_webflow (request, uri, options);
}
else
@@ -279,7 +279,7 @@ on_bus_acquired (GDBusConnection *connection,
{
GError *error = NULL;
- g_debug ("Bus acquired, creating skeleton");
+ g_info ("Bus acquired, creating skeleton");
g_dbus_connection_set_exit_on_close (connection, FALSE);
@@ -303,7 +303,7 @@ on_name_acquired (GDBusConnection *connection,
const gchar *name,
gpointer user_data)
{
- g_debug ("Name acquired");
+ g_info ("Name acquired");
}
static void
@@ -311,7 +311,7 @@ on_name_lost (GDBusConnection *connection,
const gchar *name,
gpointer user_data)
{
- g_debug ("Name lost");
+ g_info ("Name lost");
}
@@ -322,7 +322,7 @@ message_handler (const gchar *log_domain,
gpointer user_data)
{
/* Make this look like normal console output */
- if (log_level & G_LOG_LEVEL_DEBUG)
+ if (log_level & (G_LOG_LEVEL_DEBUG | G_LOG_LEVEL_INFO))
g_printerr ("F: %s\n", message);
else
g_printerr ("%s: %s\n", g_get_prgname (), message);
@@ -372,9 +372,9 @@ main (int argc,
}
if (opt_verbose)
- g_log_set_handler (G_LOG_DOMAIN, G_LOG_LEVEL_DEBUG, message_handler, NULL);
+ g_log_set_handler (G_LOG_DOMAIN, G_LOG_LEVEL_INFO, message_handler, NULL);
- g_debug ("Started test-authenticator");
+ g_info ("Started test-authenticator");
session_bus = g_bus_get_sync (G_BUS_TYPE_SESSION, NULL, &error);
if (session_bus == NULL)