7d4e7d44d2298996fc43a7b573876018a9f4f395
[gnulib.git] / test-ptsname.c
1 /* Test of ptsname(3).
2    Copyright (C) 2010 Free Software Foundation, Inc.
3
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.
8
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.
13
14    You should have received a copy of the GNU General Public License
15    along with this program.  If not, see <http://www.gnu.org/licenses/>.  */
16
17 #include <config.h>
18
19 #include <stdlib.h>
20
21 #include "signature.h"
22 SIGNATURE_CHECK (ptsname, char *, (int));
23
24 #include <fcntl.h>
25 #include <stdio.h>
26 #include <string.h>
27 #include <unistd.h>
28
29 #include "macros.h"
30
31 int
32 main (void)
33 {
34   {
35     int fd;
36     char *result;
37
38     /* Open the controlling tty of the current process.  */
39     fd = open ("/dev/tty", O_RDONLY);
40     if (fd < 0)
41       {
42         fprintf (stderr, "Skipping test: cannot open controlling tty\n");
43         return 77;
44       }
45
46     result = ptsname (fd);
47     /* The result is usually NULL, because /dev/tty is a slave, not a
48        master.  */
49     if (result != NULL)
50       {
51         ASSERT (memcmp (result, "/dev/", 5) == 0);
52       }
53
54     close (fd);
55   }
56
57   /* Try various master names of MacOS X.  */
58   {
59     int char1;
60     int char2;
61
62     for (char1 = 'p'; char1 <= 'w'; char1++)
63       for (char2 = '0'; char2 <= 'f'; char2 = (char2 == '9' ? 'a' : char2 + 1))
64         {
65           char master_name[32];
66           int fd;
67
68           sprintf (master_name, "/dev/pty%c%c", char1, char2);
69           fd = open (master_name, O_RDONLY);
70           if (fd >= 0)
71             {
72               char *result;
73               char slave_name[32];
74
75               result = ptsname (fd);
76               ASSERT (result != NULL);
77               sprintf (slave_name, "/dev/tty%c%c", char1, char2);
78               ASSERT (strcmp (result, slave_name) == 0);
79
80               close (fd);
81             }
82         }
83   }
84
85   return 0;
86 }