mirror of
				https://gitlab.gnome.org/GNOME/glib.git
				synced 2025-11-04 01:58:54 +01:00 
			
		
		
		
	
		
			
				
	
	
		
			107 lines
		
	
	
		
			2.8 KiB
		
	
	
	
		
			C
		
	
	
	
	
	
			
		
		
	
	
			107 lines
		
	
	
		
			2.8 KiB
		
	
	
	
		
			C
		
	
	
	
	
	
/* 
 | 
						|
 * 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
 | 
						|
test_launch_async (GList *uris)
 | 
						|
{
 | 
						|
  GAppInfo *app_info;
 | 
						|
  GAppLaunchContext *context;
 | 
						|
  GAsyncResult *result = NULL;
 | 
						|
  GError *error = NULL;
 | 
						|
 | 
						|
  app_info = g_app_info_get_default_for_uri_scheme ("file");
 | 
						|
  g_assert_nonnull (app_info);
 | 
						|
  g_assert_true (G_IS_OSX_APP_INFO (app_info));
 | 
						|
 | 
						|
  context = g_app_launch_context_new ();
 | 
						|
 | 
						|
  g_app_info_launch_uris_async (G_APP_INFO (app_info), uris, context, NULL, async_result_cb, &result);
 | 
						|
 | 
						|
  while (result == NULL)
 | 
						|
    g_main_context_iteration (NULL, TRUE);
 | 
						|
 | 
						|
  // Locally, the result is TRUE, but in CI it's FALSE, due to the absence 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);
 | 
						|
 | 
						|
  g_clear_error (&error);
 | 
						|
  g_clear_object (&result);
 | 
						|
  g_clear_object (&context);
 | 
						|
  g_clear_object (&app_info);
 | 
						|
}
 | 
						|
 | 
						|
 | 
						|
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);
 | 
						|
}
 | 
						|
 | 
						|
static void
 | 
						|
test_invalid_uri_scheme (void)
 | 
						|
{
 | 
						|
  GAppInfo *app_info;
 | 
						|
 | 
						|
  app_info = g_app_info_get_default_for_uri_scheme ("thisisnotanurlscheme");
 | 
						|
  g_assert_null (app_info);
 | 
						|
}
 | 
						|
 | 
						|
int
 | 
						|
main (int   argc,
 | 
						|
      char *argv[])
 | 
						|
{
 | 
						|
  g_test_init (&argc, &argv, NULL, NULL);
 | 
						|
 | 
						|
  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);
 | 
						|
  g_test_add_func ("/osx-app-info/invalid-uri-scheme", test_invalid_uri_scheme);
 | 
						|
 | 
						|
  return g_test_run ();
 | 
						|
}
 |