about summary refs log tree commit diff
path: root/locale/tst-localedef-path-norm.c
blob: ffe8cbd46732386f38e42d61d19b58683649252a (plain) (blame)
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
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
/* Test for localedef path name handling and normalization.
   Copyright (C) 2020-2024 Free Software Foundation, Inc.
   This file is part of the GNU C Library.

   The GNU C Library 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.

   The GNU C 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
   Lesser General Public License for more details.

   You should have received a copy of the GNU Lesser General Public
   License along with the GNU C Library; if not, see
   <https://www.gnu.org/licenses/>.  */

/* The test runs localedef with various named paths to test for expected
   behaviours dealing with codeset name normalization.  That is to say that use
   of UTF-8, and it's variations, are normalized to utf8.  Likewise that values
   after the @ are not normalized and left as-is.  The test needs to run
   localedef with known input values and then check that the generated path
   matches the expected value after normalization.  */

/* Note: In some cases adding -v (verbose) to localedef changes the exit
   status to a non-zero value because some warnings are only enabled in verbose
   mode.  This should probably be changed so warnings are either present or not
   present, regardless of verbosity.  POSIX requires that any warnings cause the
   exit status to be non-zero.  */

#include <array_length.h>
#include <sys/types.h>
#include <sys/stat.h>
#include <unistd.h>

#include <support/capture_subprocess.h>
#include <support/check.h>
#include <support/support.h>
#include <support/xunistd.h>
#include <support/xthread.h>

/* Full path to localedef.  */
static const char *prog;

/* Execute localedef in a subprocess.  */
static void
execv_wrapper (void *args)
{
  char **argv = args;

  execv (prog, argv);
  FAIL_EXIT1 ("execv: %m");
}

struct test_closure
{
  /* Arguments for running localedef.  */
  const char *const argv[16];
  /* Expected directory name for compiled locale.  */
  const char *exp;
  /* Expected path to compiled locale.  */
  const char *complocaledir;
};

/* Run localedef with DATA.ARGV arguments (NULL terminated), and expect path to
   the compiled locale is "DATA.COMPLOCALEDIR/DATA.EXP".  */
static void *
run_test (void *closure)
{
  struct test_closure *data = closure;
  const char * const *args = data->argv;
  const char *exp = data->exp;
  const char *complocaledir = data->complocaledir;
  struct stat64 fs;

  /* Expected output path.  */
  const char *path = xasprintf ("%s/%s", complocaledir, exp);

  /* Run test.  */
  struct support_capture_subprocess result;
  result = support_capture_subprocess (execv_wrapper, (void *)args);
  support_capture_subprocess_check (&result, "execv", 0, sc_allow_none);
  support_capture_subprocess_free (&result);

  /* Verify path is present and is a directory.  */
  xstat (path, &fs);
  if (!S_ISDIR (fs.st_mode))
    {
      support_record_failure ();
      printf ("error: Directory '%s' does not exist.\n", path);
      return (void *) -1ULL;
    }

  return NULL;
}

static int
do_test (void)
{
  /* We are running as root inside the container.  */
  prog = xasprintf ("%s/localedef", support_bindir_prefix);

  /* We need an arbitrary absolute path for localedef output.
     Writing to a non-default absolute path disables any kind
     of path normalization since we expect the user wants the path
     exactly as they specified it.  */
#define ABSDIR "/output"
  xmkdirp (ABSDIR, 0777);

  /* It takes ~10 seconds to serially execute 9 localedef test.  We run the
     compilations in parallel to reduce test time.  We don't want to split
     this out into distinct tests because it would require multiple chroots.
     Batching the same localedef tests saves disk space during testing.  */

  struct test_closure tests[] =
  {
  /* Test 1: Expected normalization.
     Run localedef and expect output in $(complocaledir)/en_US1.utf8,
     with normalization changing UTF-8 to utf8.  */
    {
      .argv = { (const char *const) prog,
		"--no-archive",
		"-i", "en_US",
		"-f", "UTF-8",
		"en_US1.UTF-8", NULL },
      .exp = "en_US1.utf8",
      .complocaledir = support_complocaledir_prefix
    },
  /* Test 2: No normalization past '@'.
     Run localedef and expect output in $(complocaledir)/en_US2.utf8@tEsT,
     with normalization changing UTF-8@tEsT to utf8@tEsT (everything after
     @ is untouched).  */
    {
      .argv = { prog,
		"--no-archive",
		"-i", "en_US",
		"-f", "UTF-8",
		"en_US2.UTF-8@tEsT", NULL },
      .exp = "en_US2.utf8@tEsT",
      .complocaledir = support_complocaledir_prefix
    },
  /* Test 3: No normalization past '@' despite period.
     Run localedef and expect output in $(complocaledir)/en_US3@tEsT.UTF-8,
     with normalization changing nothing (everything after @ is untouched)
     despite there being a period near the end.  */
    {
      .argv = { prog,
		"--no-archive",
		"-i", "en_US",
		"-f", "UTF-8",
		"en_US3@tEsT.UTF-8", NULL },
      .exp = "en_US3@tEsT.UTF-8",
      .complocaledir = support_complocaledir_prefix
    },
  /* Test 4: Normalize numeric codeset by adding 'iso' prefix.
     Run localedef and expect output in $(complocaledir)/en_US4.88591,
     with normalization changing 88591 to iso88591.  */
    {
      .argv = { prog,
		"--no-archive",
		"-i", "en_US",
		"-f", "UTF-8",
		"en_US4.88591", NULL },
      .exp = "en_US4.iso88591",
      .complocaledir = support_complocaledir_prefix
    },
  /* Test 5: Don't add 'iso' prefix if first char is alpha.
     Run localedef and expect output in $(complocaledir)/en_US5.a88591,
     with normalization changing nothing.  */
    {
      .argv = { prog,
		"--no-archive",
		"-i", "en_US",
		"-f", "UTF-8",
		"en_US5.a88591", NULL },
      .exp = "en_US5.a88591",
      .complocaledir = support_complocaledir_prefix
    },
  /* Test 6: Don't add 'iso' prefix if last char is alpha.
     Run localedef and expect output in $(complocaledir)/en_US6.88591a,
     with normalization changing nothing.  */
    {
      .argv = { prog,
		"--no-archive",
		"-i", "en_US",
		"-f", "UTF-8",
		"en_US6.88591a", NULL },
      .exp = "en_US6.88591a",
      .complocaledir = support_complocaledir_prefix
    },
  /* Test 7: Don't normalize anything with an absolute path.
     Run localedef and expect output in ABSDIR/en_US7.UTF-8,
     with normalization changing nothing.  */
    {
      .argv = { prog,
		"--no-archive",
		"-i", "en_US",
		"-f", "UTF-8",
		ABSDIR "/en_US7.UTF-8", NULL },
      .exp = "en_US7.UTF-8",
      .complocaledir = ABSDIR
    },
  /* Test 8: Don't normalize anything with an absolute path.
     Run localedef and expect output in ABSDIR/en_US8.UTF-8@tEsT,
     with normalization changing nothing.  */
    {
      .argv = { prog,
		"--no-archive",
		"-i", "en_US",
		"-f", "UTF-8",
		ABSDIR "/en_US8.UTF-8@tEsT", NULL },
      .exp = "en_US8.UTF-8@tEsT",
      .complocaledir = ABSDIR
    },
  /* Test 9: Don't normalize anything with an absolute path.
     Run localedef and expect output in ABSDIR/en_US9@tEsT.UTF-8,
     with normalization changing nothing.  */
    {
      .argv = { prog,
		"--no-archive",
		"-i", "en_US",
		"-f", "UTF-8",
		ABSDIR "/en_US9@tEsT.UTF-8", NULL },
      .exp = "en_US9@tEsT.UTF-8",
      .complocaledir = ABSDIR
    }
  };

  /* Do not run more threads than the maximum of online CPUs.  */
  size_t ntests = array_length (tests);
  long int cpus = sysconf (_SC_NPROCESSORS_ONLN);
  cpus = cpus == -1 ? 1 : cpus;
  printf ("info: cpus=%ld ntests=%zu\n", cpus, ntests);

  pthread_t thr[ntests];

  for (int i = 0; i < ntests; i += cpus)
    {
      int max = i + cpus;
      if (max > ntests)
	max = ntests;

      for (int j = i; j < max; j++)
	thr[j] = xpthread_create (NULL, run_test, &tests[j]);

      for (int j = i; j < max; j++)
	TEST_VERIFY (xpthread_join (thr[j]) == NULL);
    }

  return 0;
}

#define TIMEOUT 30
#include <support/test-driver.c>