summaryrefslogtreecommitdiff
path: root/tests/common/tracker-test-helpers.c
blob: 65f7cf26597c1b2c2365b365e99077c236569096 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
/*
 * Copyright (C) 2008, Nokia <ivan.frade@nokia.com>
 *
 * This library 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 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
 * General Public License for more details.
 *
 * You should have received a copy of the GNU General Public
 * License along with this library; if not, write to the
 * Free Software Foundation, Inc., 51 Franklin Street, Fifth Floor,
 * Boston, MA  02110-1301, USA.
 */
#include "tracker-test-helpers.h"

static gchar *nonutf8_str = NULL;

gboolean
tracker_test_helpers_cmpstr_equal (const gchar *obtained,
                                   const gchar *expected)
{
	gboolean result;

	if (expected == obtained) {
		return TRUE;
	}

	if (expected && obtained) {
		result = !g_utf8_collate (expected, obtained);
		if (!result) {
			g_warning ("Expected %s - obtained %s", expected, obtained);
		}
		return result;
	} else {
		g_warning ("\n Only one of the strings is NULL\n");
		return FALSE;
	}
}

const gchar *
tracker_test_helpers_get_nonutf8 (void)
{
	GMappedFile *file = NULL;

	if (!nonutf8_str) {
		file = g_mapped_file_new (TEST_TEXT, FALSE, NULL);
		nonutf8_str = g_strdup (g_mapped_file_get_contents (file));
		nonutf8_str [g_mapped_file_get_length (file) -1] = '\0';
#if GLIB_CHECK_VERSION(2,22,0)
		g_mapped_file_unref (file);
#else
		g_mapped_file_free (file);
#endif
	}

	return nonutf8_str;
}

void
tracker_test_helpers_free_nonutf8 (void)
{
	if (nonutf8_str) {
		g_free (nonutf8_str);
		nonutf8_str = NULL;
	}
}