PIKApp/app/tests/test-single-window-mode.c

160 lines
5.0 KiB
C
Raw Normal View History

2023-09-26 00:35:21 +02:00
/* PIKA - Photo and Image Kooker Application
* a rebranding of The GNU Image Manipulation Program (created with heckimp)
* A derived work which may be trivial. However, any changes may be (C)2023 by Aldercone Studio
*
* Original copyright, applying to most contents (license remains unchanged):
* Copyright (C) 1995 Spencer Kimball and Peter Mattis
*
* test-single-window-mode.c
* Copyright (C) 2011 Martin Nordholts <martinn@src.gnome.org>
*
* This program is free software: you can redistribute it and/or modify
* it under the terms of the GNU General Public License as published by
* the Free Software Foundation; either version 3 of the License, or
* (at your option) any later version.
*
* This program 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 General Public License for more details.
*
* You should have received a copy of the GNU General Public License
* along with this program. If not, see <https://www.gnu.org/licenses/>.
*/
#include <stdlib.h>
#include <string.h>
#include <gegl.h>
#include <gtk/gtk.h>
#include <gdk/gdkkeysyms.h>
#include "libpikabase/pikabase.h"
#include "libpikamath/pikamath.h"
#include "libpikawidgets/pikawidgets.h"
#include "dialogs/dialogs-types.h"
#include "display/pikadisplay.h"
#include "display/pikadisplayshell.h"
#include "display/pikadisplayshell-scale.h"
#include "display/pikadisplayshell-transform.h"
#include "display/pikaimagewindow.h"
#include "widgets/pikadialogfactory.h"
#include "widgets/pikadock.h"
#include "widgets/pikadockable.h"
#include "widgets/pikadockbook.h"
#include "widgets/pikadockcontainer.h"
#include "widgets/pikadocked.h"
#include "widgets/pikadockwindow.h"
#include "widgets/pikahelp-ids.h"
#include "widgets/pikasessioninfo.h"
#include "widgets/pikatoolbox.h"
#include "widgets/pikatooloptionseditor.h"
#include "widgets/pikauimanager.h"
#include "widgets/pikawidgets-utils.h"
#include "core/pika.h"
#include "core/pikachannel.h"
#include "core/pikacontext.h"
#include "core/pikaimage.h"
#include "core/pikalayer.h"
#include "core/pikatoolinfo.h"
#include "core/pikatooloptions.h"
#include "pikacoreapp.h"
#include "pika-app-test-utils.h"
#include "tests.h"
#define ADD_TEST(function) \
g_test_add_data_func ("/pika-single-window-mode/" #function, pika, function);
/* Put this in the code below when you want the test to pause so you
* can do measurements of widgets on the screen for example
*/
#define PIKA_PAUSE (g_usleep (20 * 1000 * 1000))
/**
* new_dockable_not_in_new_window:
* @data:
*
* Test that in single-window mode, new dockables are not put in new
* windows (they should end up in the single image window).
**/
static void
new_dockable_not_in_new_window (gconstpointer data)
{
Pika *pika = PIKA (data);
PikaDialogFactory *factory = pika_dialog_factory_get_singleton ();
gint dialogs_before = 0;
gint toplevels_before = 0;
gint dialogs_after = 0;
gint toplevels_after = 0;
GList *dialogs;
GList *iter;
pika_test_run_mainloop_until_idle ();
/* Count dialogs before we create the dockable */
dialogs = pika_dialog_factory_get_open_dialogs (factory);
dialogs_before = g_list_length (dialogs);
for (iter = dialogs; iter; iter = g_list_next (iter))
{
if (gtk_widget_is_toplevel (iter->data))
toplevels_before++;
}
/* Create a dockable */
pika_ui_manager_activate_action (pika_test_utils_get_ui_manager (pika),
"dialogs",
"dialogs-undo-history");
pika_test_run_mainloop_until_idle ();
/* Count dialogs after we created the dockable */
dialogs = pika_dialog_factory_get_open_dialogs (factory);
dialogs_after = g_list_length (dialogs);
for (iter = dialogs; iter; iter = g_list_next (iter))
{
if (gtk_widget_is_toplevel (iter->data))
toplevels_after++;
}
/* We got one more session managed dialog ... */
g_assert_cmpint (dialogs_before + 1, ==, dialogs_after);
/* ... but no new toplevels */
g_assert_cmpint (toplevels_before, ==, toplevels_after);
}
int main(int argc, char **argv)
{
Pika *pika = NULL;
gint result = -1;
pika_test_bail_if_no_display ();
gtk_test_init (&argc, &argv, NULL);
pika_test_utils_setup_menus_path ();
/* Launch PIKA in single-window mode */
g_setenv ("PIKA_TESTING_SESSIONRC_NAME", "sessionrc-2-8-single-window", TRUE /*overwrite*/);
pika = pika_init_for_gui_testing (TRUE /*show_gui*/);
pika_test_run_mainloop_until_idle ();
ADD_TEST (new_dockable_not_in_new_window);
/* Run the tests and return status */
g_application_run (pika->app, 0, NULL);
result = pika_core_app_get_exit_status (PIKA_CORE_APP (pika->app));
/* Exit properly so we don't break script-fu plug-in wire */
g_application_quit (G_APPLICATION (pika->app));
g_clear_object (&pika->app);
return result;
}