usleep tests: Avoid failure due to known Cygwin 3.5.3 bug.
[gnulib.git] / tests / test-readtokens.c
bloba74cc84d19a791f16187004ced15611a8e49fd29
1 /* Test the readtokens module.
2 Copyright (C) 2012-2024 Free Software Foundation, Inc.
4 This program is free software: you can redistribute it and/or modify
5 it under the terms of the GNU General Public License as published by
6 the Free Software Foundation, either version 3 of the License, or
7 (at your option) any later version.
9 This program is distributed in the hope that it will be useful,
10 but WITHOUT ANY WARRANTY; without even the implied warranty of
11 MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
12 GNU General Public License for more details.
14 You should have received a copy of the GNU General Public License
15 along with this program. If not, see <https://www.gnu.org/licenses/>. */
17 #include <config.h>
18 #include <sys/types.h>
19 #include <sys/stat.h>
20 #include <fcntl.h>
21 #include <string.h>
22 #include <stdio.h>
23 #include <unistd.h>
25 #include "readtokens.h"
26 #include "closeout.h"
27 #include "macros.h"
29 static void
30 basic (void)
32 char const *filename = "in.827";
33 int fd = open (filename, O_CREAT | O_WRONLY, 0600);
34 ASSERT (fd >= 0);
35 ASSERT (write (fd, "a|b;c+d", 7) == 7);
36 ASSERT (close (fd) == 0);
39 token_buffer tb;
40 FILE *fp = fopen (filename, "r");
41 ASSERT (fp);
43 init_tokenbuffer (&tb);
44 ASSERT (readtoken (fp, "|;", 2, &tb) == 1 && tb.buffer[0] == 'a');
45 ASSERT (readtoken (fp, "|;", 2, &tb) == 1 && tb.buffer[0] == 'b');
46 ASSERT (readtoken (fp, "+", 1, &tb) == 1 && tb.buffer[0] == 'c');
47 ASSERT (readtoken (fp, "-", 1, &tb) == 1 && tb.buffer[0] == 'd');
48 ASSERT (readtoken (fp, "%", 0, &tb) == (size_t) -1);
49 ASSERT ( ! ferror (fp));
50 ASSERT (fclose (fp) == 0);
54 int
55 main (int argc, char **argv)
57 token_buffer tb;
58 char const *delim;
59 size_t delim_len;
61 atexit (close_stdout);
63 if (argc == 1)
65 basic ();
66 return 0;
69 init_tokenbuffer (&tb);
71 if (argc != 2)
72 return 99;
74 delim = argv[1];
75 delim_len = strlen (delim);
77 if (STREQ (delim, "\\0"))
79 delim = "";
80 delim_len = 1;
83 while (1)
85 size_t token_length = readtoken (stdin, delim, delim_len, &tb);
86 if (token_length == (size_t) -1)
87 break;
88 fwrite (tb.buffer, 1, token_length, stdout);
89 putchar (':');
91 putchar ('\n');
92 free (tb.buffer);
94 ASSERT ( ! ferror (stdin));
96 return test_exit_status;