2024-07-24 16:35:48 +02:00
|
|
|
/*
|
|
|
|
* Copyright (C) 2024 GNOME Foundation
|
|
|
|
* Copyright (C) 2024 Arjan Molenaar
|
|
|
|
*
|
|
|
|
* SPDX-License-Identifier: LGPL-2.1-or-later
|
|
|
|
*
|
|
|
|
* This library is free software; you can redistribute it and/or
|
|
|
|
* modify it under the terms of the GNU Lesser General Public
|
|
|
|
* License as published by the Free Software Foundation; either
|
|
|
|
* version 2.1 of the License, or (at your option) any later version.
|
|
|
|
*
|
|
|
|
* This library is distributed in the hope that it will be useful,
|
|
|
|
* but WITHOUT ANY WARRANTY; without even the implied warranty of
|
|
|
|
* MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU
|
|
|
|
* Lesser General Public License for more details.
|
|
|
|
*
|
|
|
|
* You should have received a copy of the GNU Lesser General
|
|
|
|
* Public License along with this library; if not, see <http://www.gnu.org/licenses/>.
|
|
|
|
*/
|
|
|
|
|
|
|
|
#include <gio/gio.h>
|
|
|
|
#include <gio/gosxappinfo.h>
|
|
|
|
|
|
|
|
|
|
|
|
static void
|
|
|
|
async_result_cb (GObject *source_object,
|
|
|
|
GAsyncResult *result,
|
|
|
|
gpointer user_data)
|
|
|
|
{
|
|
|
|
GAsyncResult **result_out = user_data;
|
|
|
|
|
|
|
|
g_assert (*result_out == NULL);
|
|
|
|
*result_out = g_object_ref (result);
|
|
|
|
g_main_context_wakeup (g_main_context_get_thread_default ());
|
|
|
|
}
|
|
|
|
|
|
|
|
static void
|
2024-09-27 19:08:01 +02:00
|
|
|
test_launch_async (GList *uris)
|
2024-07-24 16:35:48 +02:00
|
|
|
{
|
|
|
|
GAppInfo *app_info;
|
|
|
|
GAppLaunchContext *context;
|
|
|
|
GAsyncResult *result = NULL;
|
|
|
|
GError *error = NULL;
|
|
|
|
|
2024-08-10 19:42:32 +02:00
|
|
|
app_info = g_app_info_get_default_for_uri_scheme ("file");
|
2024-07-24 16:35:48 +02:00
|
|
|
g_assert_nonnull (app_info);
|
|
|
|
g_assert_true (G_IS_OSX_APP_INFO (app_info));
|
|
|
|
|
|
|
|
context = g_app_launch_context_new ();
|
|
|
|
|
2024-09-27 19:08:01 +02:00
|
|
|
g_app_info_launch_uris_async (G_APP_INFO (app_info), uris, context, NULL, async_result_cb, &result);
|
2024-07-24 16:35:48 +02:00
|
|
|
|
|
|
|
while (result == NULL)
|
|
|
|
g_main_context_iteration (NULL, TRUE);
|
|
|
|
|
2024-07-24 17:42:48 +02:00
|
|
|
// Locally, the result is TRUE, but in CI it's FALSE, due to the absense of a GUI(?)
|
|
|
|
if (g_app_info_launch_uris_finish (G_APP_INFO (app_info), result, &error))
|
|
|
|
g_assert_no_error (error);
|
|
|
|
else
|
|
|
|
g_assert_error (error, G_IO_ERROR, G_IO_ERROR_FAILED);
|
2024-07-24 16:35:48 +02:00
|
|
|
|
|
|
|
g_clear_error (&error);
|
|
|
|
g_clear_object (&result);
|
|
|
|
g_clear_object (&context);
|
|
|
|
g_clear_object (&app_info);
|
|
|
|
}
|
|
|
|
|
2024-09-27 19:08:01 +02:00
|
|
|
|
|
|
|
static void
|
|
|
|
test_launch_async_with_uris (void)
|
|
|
|
{
|
|
|
|
GList *uris;
|
|
|
|
uris = g_list_prepend (NULL, "file:///hopefully/an/invalid/path.txt");
|
|
|
|
|
|
|
|
test_launch_async (uris);
|
|
|
|
|
|
|
|
g_list_free (uris);
|
|
|
|
}
|
|
|
|
|
|
|
|
static void
|
|
|
|
test_launch_async_without_uris (void)
|
|
|
|
{
|
|
|
|
test_launch_async (NULL);
|
|
|
|
}
|
|
|
|
|
2024-07-24 17:24:46 +02:00
|
|
|
static void
|
|
|
|
test_invalid_uri_scheme (void)
|
|
|
|
{
|
|
|
|
GAppInfo *app_info;
|
|
|
|
|
2024-08-10 19:42:32 +02:00
|
|
|
app_info = g_app_info_get_default_for_uri_scheme ("thisisnotanurlscheme");
|
2024-07-24 17:24:46 +02:00
|
|
|
g_assert_null (app_info);
|
|
|
|
}
|
|
|
|
|
2024-07-24 16:35:48 +02:00
|
|
|
int
|
|
|
|
main (int argc,
|
|
|
|
char *argv[])
|
|
|
|
{
|
2024-07-24 17:24:46 +02:00
|
|
|
g_test_init (&argc, &argv, NULL, NULL);
|
2024-07-24 16:35:48 +02:00
|
|
|
|
2024-09-27 19:08:01 +02:00
|
|
|
g_test_add_func ("/osx-app-info/launch-async-with-uris", test_launch_async_with_uris);
|
|
|
|
g_test_add_func ("/osx-app-info/launch-async-without-uris", test_launch_async_without_uris);
|
2024-07-24 17:24:46 +02:00
|
|
|
g_test_add_func ("/osx-app-info/invalid-uri-scheme", test_invalid_uri_scheme);
|
2024-07-24 16:35:48 +02:00
|
|
|
|
|
|
|
return g_test_run ();
|
|
|
|
}
|