[pango/pango2: 42/112] Use test fonts in test-break
- From: Matthias Clasen <matthiasc src gnome org>
- To: commits-list gnome org
- Cc:
- Subject: [pango/pango2: 42/112] Use test fonts in test-break
- Date: Sun, 12 Jun 2022 23:20:25 +0000 (UTC)
commit 7454fe918efae49b21419ffdbfb1cb48e38931bf
Author: Matthias Clasen <mclasen redhat com>
Date: Sun Jun 5 01:05:14 2022 -0400
Use test fonts in test-break
tests/test-break.c | 50 ++++++++++++++++++++++++++++++++++++++++++++++++--
1 file changed, 48 insertions(+), 2 deletions(-)
---
diff --git a/tests/test-break.c b/tests/test-break.c
index d9039fc07..f7fd36ae4 100644
--- a/tests/test-break.c
+++ b/tests/test-break.c
@@ -29,10 +29,12 @@
#include "config.h"
#include <pango/pangocairo.h>
+#include <pango/pangofc-hbfontmap.h>
#include "test-common.h"
#include "validate-log-attrs.h"
+static PangoFontMap *map = NULL;
static PangoContext *context;
static gboolean opt_hex_chars;
@@ -358,21 +360,50 @@ test_break (gconstpointer d)
g_free (expected_file);
}
+static void
+install_fonts (const char *dir)
+{
+ FcConfig *config;
+ char *path;
+ gsize len;
+ char *conf;
+
+ config = FcConfigCreate ();
+
+ path = g_build_filename (dir, "fonts.conf", NULL);
+ g_file_get_contents (path, &conf, &len, NULL);
+
+ if (!FcConfigParseAndLoadFromMemory (config, (const FcChar8 *) conf, TRUE))
+ g_error ("Failed to parse fontconfig configuration");
+
+ g_free (conf);
+ g_free (path);
+
+ FcConfigAppFontAddDir (config, (const FcChar8 *) dir);
+ map = PANGO_FONT_MAP (pango_fc_hb_font_map_new ());
+ pango_fc_hb_font_map_set_config (PANGO_FC_HB_FONT_MAP (map), config);
+ FcConfigDestroy (config);
+}
+
int
main (int argc, char *argv[])
{
GDir *dir;
GError *error = NULL;
+ char *opt_fonts = NULL;
const gchar *name;
gchar *path;
gboolean opt_legend = 0;
GOptionContext *option_context;
GOptionEntry entries[] = {
+ { "fonts", 0, 0, G_OPTION_ARG_FILENAME, &opt_fonts, "Fonts to use", "DIR" },
{ "hex-chars", 0, 0, G_OPTION_ARG_NONE, &opt_hex_chars, "Print all chars in hex", NULL },
{ "legend", 0, 0, G_OPTION_ARG_NONE, &opt_legend, "Explain the output", NULL },
{ NULL, 0 },
};
+ setlocale (LC_ALL, "");
+
option_context = g_option_context_new ("");
g_option_context_add_main_entries (option_context, entries, NULL);
g_option_context_set_ignore_unknown_options (option_context, TRUE);
@@ -383,9 +414,14 @@ main (int argc, char *argv[])
}
g_option_context_free (option_context);
- setlocale (LC_ALL, "");
+ if (opt_fonts)
+ {
+ install_fonts (opt_fonts);
+ g_free (opt_fonts);
+ }
- context = pango_font_map_create_context (pango_cairo_font_map_get_default ());
+ if (map)
+ context = pango_font_map_create_context (map);
if (opt_legend)
{
@@ -417,6 +453,16 @@ main (int argc, char *argv[])
g_test_init (&argc, &argv, NULL);
+ if (!opt_fonts)
+ {
+ path = g_test_build_filename (G_TEST_DIST, "fonts", NULL);
+ install_fonts (path);
+ g_free (path);
+ }
+
+ if (map)
+ context = pango_font_map_create_context (map);
+
path = g_test_build_filename (G_TEST_DIST, "breaks", NULL);
dir = g_dir_open (path, 0, &error);
g_free (path);
[
Date Prev][
Date Next] [
Thread Prev][
Thread Next]
[
Thread Index]
[
Date Index]
[
Author Index]