/* -*- Mode: C; tab-width: 8; indent-tabs-mode: t; c-basic-offset: 8; coding: utf-8 -*- */ /* * This file is part of GtkSourceView * * Copyright (C) 2013 - Paolo Borelli * * GtkSourceView 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. * * GtkSourceView 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, write to the Free Software * Foundation, Inc., 51 Franklin St, Fifth Floor, Boston, MA 02110-1301 USA */ #ifdef HAVE_CONFIG_H #include #endif #include #include #include typedef struct _TestFixture TestFixture; struct _TestFixture { GtkSourceLanguageManager *manager; }; /* If we are running from the source dir (e.g. during make check) * we override the path to read from the data dir */ static void test_fixture_setup (TestFixture *fixture, gconstpointer data) { gchar *dir; gchar **lang_dirs; dir = g_build_filename (TOP_SRCDIR, "data", "language-specs", NULL); fixture->manager = gtk_source_language_manager_get_default (); if (g_file_test (dir, G_FILE_TEST_IS_DIR)) { lang_dirs = g_new0 (gchar *, 3); lang_dirs[0] = dir; lang_dirs[1] = g_test_build_filename (G_TEST_DIST, "language-specs", NULL); } else { const gchar * const *current; int i; g_free (dir); current = gtk_source_language_manager_get_search_path (fixture->manager); lang_dirs = g_new0 (gchar *, g_strv_length ((gchar **)current) + 2); for (i = 0; current[i] != NULL; i++) { lang_dirs[i] = g_strdup(current[i]); } lang_dirs[i] = g_test_build_filename (G_TEST_DIST, "language-specs", NULL); } gtk_source_language_manager_set_search_path (fixture->manager, lang_dirs); g_strfreev (lang_dirs); } static void test_fixture_teardown (TestFixture *fixture, gconstpointer data) { } static void compare_strv (const gchar **strv, const gchar **expected_strv) { if (expected_strv != NULL) { guint n, i; n = g_strv_length ((gchar **) expected_strv); for (i = 0; i < n; i++) { g_assert_cmpstr (strv[i], ==, expected_strv[i]); } } else { g_assert (strv == NULL); } } static void check_language (GtkSourceLanguage *language, const gchar *id, const gchar *expected_name, const gchar *expected_section, gboolean expected_hidden, const gchar *expected_extra_meta, const gchar **expected_mime, const gchar **expected_glob, const gchar **expected_styles, const gchar *style_id, const gchar *expected_style_name) { gchar **mime; gchar **glob; gchar **styles; g_assert_cmpstr (gtk_source_language_get_id (language), ==, id); g_assert_cmpstr (gtk_source_language_get_name (language), ==, expected_name); g_assert_cmpstr (gtk_source_language_get_section (language), ==, expected_section); g_assert (gtk_source_language_get_hidden (language) == expected_hidden); g_assert_cmpstr (gtk_source_language_get_metadata (language, "extra-meta"), ==, expected_extra_meta); mime = gtk_source_language_get_mime_types (language); compare_strv ((const gchar **) mime, expected_mime); g_strfreev (mime); glob = gtk_source_language_get_globs (language); compare_strv ((const gchar **) glob, expected_glob); g_strfreev (glob); styles = gtk_source_language_get_style_ids (language); compare_strv ((const gchar **) styles, expected_styles); g_strfreev (styles); if (expected_style_name != NULL) { g_assert_cmpstr (gtk_source_language_get_style_name (language, style_id), ==, expected_style_name); } } static void test_language (TestFixture *fixture, gconstpointer data) { GtkSourceLanguage *language; const gchar *mime[] = { "text/x-test", "application/x-test", NULL}; const gchar *glob[] = { "*.test", "*.tst", NULL}; const gchar *styles[] = { "test-full:keyword", "test-full:string", NULL}; language = gtk_source_language_manager_get_language (fixture->manager, "test-full"); check_language (language, "test-full", "Test Full", "Sources", FALSE, "extra", mime, glob, styles, "test-full:string", "String"); language = gtk_source_language_manager_get_language (fixture->manager, "test-empty"); check_language (language, "test-empty", "Test Empty", "Others", TRUE, NULL, NULL, NULL, NULL, NULL, NULL); } int main (int argc, char** argv) { gtk_test_init (&argc, &argv); g_test_add ("/Language/language-properties", TestFixture, NULL, test_fixture_setup, test_language, test_fixture_teardown); return g_test_run(); }