summaryrefslogtreecommitdiffstats
path: root/grub-core/tests/gfxterm_menu.c
blob: 12836fb96598d98b5cbf371a953e6ec702eb50de (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
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
/*
 *  GRUB  --  GRand Unified Bootloader
 *  Copyright (C) 2013 Free Software Foundation, Inc.
 *
 *  GRUB 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.
 *
 *  GRUB 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 GRUB.  If not, see <http://www.gnu.org/licenses/>.
 */

/* All tests need to include test.h for GRUB testing framework.  */
#include <grub/test.h>
#include <grub/dl.h>
#include <grub/video.h>
#include <grub/video_fb.h>
#include <grub/command.h>
#include <grub/font.h>
#include <grub/procfs.h>
#include <grub/env.h>
#include <grub/normal.h>
#include <grub/time.h>

GRUB_MOD_LICENSE ("GPLv3+");


static const char testfile[] =
  "menuentry \"test\" {\n"
  "\ttrue\n"
  "}\n"
  "menuentry \"s̛ ơ t o̒ s̒ u o̕̚ 8.04 m̂ñåh̊z̆x̣ a̡ b̢g̢ u᷎ô᷎ ô᷎ O̷ a̖̣ ȃ̐\" --class ubuntu --class linux --class os {\n"
  "\ttrue\n"
  "}\n"
  "menuentry \" הַרמלל(טוֹבָ) לֶךְ\" --class opensuse --class linux --class os {\n"
  "\ttrue\n"
  "}\n"
  "menuentry \"الرملل جِداً لِكَ\" --class gentoo --class linux --class os {\n"
  "\ttrue\n"
  "}\n"
  "menuentry \"ὑπόγυͅον\" --class kubuntu --class linux --class os {\n"
  "\ttrue\n"
  "}\n"
  "menuentry \"سَّ نِّ نَّ نٌّ نّْ\" --class linuxmint --class linux --class os {\n"
  "\ttrue\n"
  "}\n"
  /* Chinese & UTF-8 test from Carbon Jiao. */
  "menuentry \"从硬盘的第一主分区启动\" --class \"windows xp\" --class windows --class os {\n"
  "\ttrue\n"
  "}\n"
  "timeout=3\n";

static char *
get_test_cfg (grub_size_t *sz)
{
  *sz = grub_strlen (testfile);
  return grub_strdup (testfile);
}

struct grub_procfs_entry test_cfg = 
{
  .name = "test.cfg",
  .get_contents = get_test_cfg
};

struct
{
  const char *name;
  const char *var;
  const char *val;  
} tests[] =
  {
    { "gfxterm_menu", NULL, NULL },
    { "gfxmenu", "theme", "starfield/theme.txt" },
    { "gfxterm_ar", "lang", "en@arabic" },
    { "gfxterm_cyr", "lang", "en@cyrillic" },
    { "gfxterm_heb", "lang", "en@hebrew" },
    { "gfxterm_gre", "lang", "en@greek" },
    { "gfxterm_ru", "lang", "ru" },
    { "gfxterm_fr", "lang", "fr" },
    { "gfxterm_quot", "lang", "en@quot" },
    { "gfxterm_piglatin", "lang", "en@piglatin" },
    { "gfxterm_ch", "lang", "de_CH" },
    { "gfxterm_red", "menu_color_normal", "red/blue" },
    { "gfxterm_high", "menu_color_highlight", "blue/red" },
  };

#define FONT_NAME "Unknown Regular 16"

/* Functional test main method.  */
static void
gfxterm_menu (void)
{
  unsigned i, j;
  grub_font_t font;

  grub_dl_load ("png");
  grub_dl_load ("gettext");
  grub_dl_load ("gfxterm");

  grub_errno = GRUB_ERR_NONE;

  grub_dl_load ("gfxmenu");

  font = grub_font_get (FONT_NAME);
  if (font && grub_strcmp (font->name, FONT_NAME) != 0)
    font = 0;
  if (!font)
    font = grub_font_load ("unicode");

  if (!font)
    {
      grub_test_assert (0, "unicode font not found: %s", grub_errmsg);
      return;
    }

  grub_procfs_register ("test.cfg", &test_cfg);
  
  for (j = 0; j < ARRAY_SIZE (tests); j++)
    for (i = 0; i < GRUB_TEST_VIDEO_SMALL_N_MODES; i++)
      {
	grub_uint64_t start;

#if defined (GRUB_MACHINE_MIPS_QEMU_MIPS) || defined (GRUB_MACHINE_IEEE1275)
	if (grub_test_video_modes[i].width > 1024)
	  continue;
	if (grub_strcmp (tests[j].name, "gfxmenu") == 0
	    && grub_test_video_modes[i].width > 800)
	  continue;
#endif
	start = grub_get_time_ms ();

	grub_video_capture_start (&grub_test_video_modes[i],
				  grub_video_fbstd_colors,
				  grub_test_video_modes[i].number_of_colors);
	if (grub_errno)
	  {
	    grub_test_assert (0, "can't start capture: %d: %s",
			      grub_errno, grub_errmsg);
	    return;
	  }
	grub_terminal_input_fake_sequence ((int []) { -1, -1, -1, GRUB_TERM_KEY_DOWN, -1, 'e',
	      -1, GRUB_TERM_KEY_RIGHT, -1, 'x', -1,  GRUB_TERM_ESC, -1, GRUB_TERM_ESC }, 14);

	grub_video_checksum (tests[j].name);

	if (grub_test_use_gfxterm ())
	  return;

	grub_env_context_open ();
	if (tests[j].var)
	  grub_env_set (tests[j].var, tests[j].val);
	grub_normal_execute ("(proc)/test.cfg", 1, 0);
	grub_env_context_close ();

	grub_test_use_gfxterm_end ();

	grub_terminal_input_fake_sequence_end ();
	grub_video_checksum_end ();
	grub_video_capture_end ();

	if (tests[j].var)
	  grub_env_unset (tests[j].var);
	grub_printf ("%s %dx%dx%s done %lld ms\n", tests[j].name,
		     grub_test_video_modes[i].width,
		     grub_test_video_modes[i].height,
		     grub_video_checksum_get_modename (), (long long) (grub_get_time_ms () - start));
      }

  grub_procfs_unregister (&test_cfg);
}

/* Register example_test method as a functional test.  */
GRUB_FUNCTIONAL_TEST (gfxterm_menu, gfxterm_menu);