mirror of
https://gitlab.gnome.org/GNOME/nautilus
synced 2024-11-05 16:04:31 +00:00
ee495dba40
* HACKING: Tell people about the gnome-xml branch. * libnautilus/Makefile.am: * libnautilus/gnome-icon-container-grid.c: * libnautilus/gnome-icon-container-grid.h: * libnautilus/gnome-icon-container-private.h: * libnautilus/gnome-icon-container.c: Broke out the grid code from the main container code. This is a first step toward improving the layout code. * libnautilus/nautilus-directory-private.h: * libnautilus/nautilus-directory.c: * libnautilus/nautilus-directory.h: * src/fm-directory-view.c: Got started on making the directory I/O async. There's still a long way to go, this was a baby step. * libnautilus/nautilus-bookmark.c: * libnautilus/nautilus-bookmark.h: * libnautilus/nautilus-self-checks.c: General cleanup. * libnautilus/nautilus-file.h: Rearranged a little bit. * libnautilus/nautilus-file-utilities.c: Put FIXME in where there's code that needs to be changed.
137 lines
3.2 KiB
C
137 lines
3.2 KiB
C
/* -*- Mode: C; indent-tabs-mode: t; c-basic-offset: 8; tab-width: 8 -*-
|
|
|
|
nautilus-self-checks.c: The self-check framework.
|
|
|
|
Copyright (C) 1999 Eazel, Inc.
|
|
|
|
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 2 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, write to the
|
|
Free Software Foundation, Inc., 59 Temple Place - Suite 330,
|
|
Boston, MA 02111-1307, USA.
|
|
|
|
Author: Darin Adler <darin@eazel.com>
|
|
*/
|
|
|
|
#include <config.h>
|
|
|
|
#if ! defined (NAUTILUS_OMIT_SELF_CHECK)
|
|
|
|
#include "nautilus-self-checks.h"
|
|
|
|
#include <stdio.h>
|
|
#include <stdlib.h>
|
|
|
|
static gboolean failed;
|
|
|
|
static const char *current_expression;
|
|
static const char *current_file_name;
|
|
static int current_line_number;
|
|
|
|
void nautilus_exit_if_self_checks_failed (void)
|
|
{
|
|
if (!failed) {
|
|
return;
|
|
}
|
|
|
|
printf ("\n");
|
|
|
|
exit (EXIT_FAILURE);
|
|
}
|
|
|
|
static void
|
|
nautilus_report_check_failure (char *result, char *expected)
|
|
{
|
|
if (!failed) {
|
|
printf ("\n");
|
|
}
|
|
|
|
printf ("FAIL: check failed in %s, line %d\n", current_file_name, current_line_number);
|
|
printf (" evaluated: %s\n", current_expression);
|
|
printf (" expected: %s\n", expected == NULL ? "NULL" : expected);
|
|
printf (" got: %s\n", result == NULL ? "NULL" : result);
|
|
|
|
failed = TRUE;
|
|
|
|
g_free (result);
|
|
g_free (expected);
|
|
}
|
|
|
|
static char *
|
|
nautilus_strdup_boolean (gboolean boolean)
|
|
{
|
|
if (boolean == FALSE) {
|
|
return g_strdup ("FALSE");
|
|
}
|
|
if (boolean == TRUE) {
|
|
return g_strdup ("TRUE");
|
|
}
|
|
return g_strdup_printf ("gboolean(%d)", boolean);
|
|
}
|
|
|
|
void
|
|
nautilus_before_check (const char *expression,
|
|
const char *file_name,
|
|
int line_number)
|
|
{
|
|
current_expression = expression;
|
|
current_file_name = file_name;
|
|
current_line_number = line_number;
|
|
}
|
|
|
|
static void
|
|
nautilus_after_check ()
|
|
{
|
|
/* It would be good to check here if there was a memory leak. */
|
|
}
|
|
|
|
void
|
|
nautilus_check_boolean_result (gboolean result, gboolean expected)
|
|
{
|
|
if (result != expected) {
|
|
nautilus_report_check_failure (nautilus_strdup_boolean(result),
|
|
nautilus_strdup_boolean(expected));
|
|
}
|
|
nautilus_after_check ();
|
|
}
|
|
|
|
void
|
|
nautilus_check_integer_result (long result, long expected)
|
|
{
|
|
if (result != expected) {
|
|
nautilus_report_check_failure (g_strdup_printf("%ld", result),
|
|
g_strdup_printf("%ld", expected));
|
|
}
|
|
nautilus_after_check ();
|
|
}
|
|
|
|
void
|
|
nautilus_check_string_result (char *result, const char *expected)
|
|
{
|
|
gboolean match;
|
|
|
|
/* Stricter than nautilus_strcmp.
|
|
* NULL does not match "" in this test.
|
|
*/
|
|
if (expected == NULL) {
|
|
match = result == NULL;
|
|
} else {
|
|
match = result != NULL && strcmp (result, expected) == 0;
|
|
}
|
|
|
|
if (!match) {
|
|
nautilus_report_check_failure (result, g_strdup (expected));
|
|
}
|
|
nautilus_after_check ();
|
|
}
|
|
|
|
#endif /* ! NAUTILUS_OMIT_SELF_CHECK */
|