]> ncurses.scripts.mit.edu Git - ncurses.git/blob - test/test_endwin.c
ncurses 6.4 - patch 20240420
[ncurses.git] / test / test_endwin.c
1 /****************************************************************************
2  * Copyright 2023 Thomas E. Dickey                                          *
3  *                                                                          *
4  * Permission is hereby granted, free of charge, to any person obtaining a  *
5  * copy of this software and associated documentation files (the            *
6  * "Software"), to deal in the Software without restriction, including      *
7  * without limitation the rights to use, copy, modify, merge, publish,      *
8  * distribute, distribute with modifications, sublicense, and/or sell       *
9  * copies of the Software, and to permit persons to whom the Software is    *
10  * furnished to do so, subject to the following conditions:                 *
11  *                                                                          *
12  * The above copyright notice and this permission notice shall be included  *
13  * in all copies or substantial portions of the Software.                   *
14  *                                                                          *
15  * THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS  *
16  * OR IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF               *
17  * MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT.   *
18  * IN NO EVENT SHALL THE ABOVE COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM,   *
19  * DAMAGES OR OTHER LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR    *
20  * OTHERWISE, ARISING FROM, OUT OF OR IN CONNECTION WITH THE SOFTWARE OR    *
21  * THE USE OR OTHER DEALINGS IN THE SOFTWARE.                               *
22  *                                                                          *
23  * Except as contained in this notice, the name(s) of the above copyright   *
24  * holders shall not be used in advertising or otherwise to promote the     *
25  * sale, use or other dealings in this Software without prior written       *
26  * authorization.                                                           *
27  ****************************************************************************/
28 /*
29  * $Id: test_endwin.c,v 1.2 2023/11/10 15:17:19 tom Exp $
30  */
31 #include <test.priv.h>
32
33 static void
34 usage(int ok)
35 {
36     static const char *msg[] =
37     {
38         "Usage: test_endwin [options]"
39         ,""
40         ,"Options:"
41         ," -e   call endwin() an extra time"
42         ," -i   call initscr() before endwin()"
43         ," -n   call newterm() before endwin()"
44         ," -r   call refresh() before endwin()"
45         ," -s   call getch() after endwin(), to refresh screen"
46         ,""
47         ,USAGE_COMMON
48     };
49     size_t n;
50
51     for (n = 0; n < SIZEOF(msg); n++)
52         fprintf(stderr, "%s\n", msg[n]);
53
54     ExitProgram(ok ? EXIT_SUCCESS : EXIT_FAILURE);
55 }
56 /* *INDENT-OFF* */
57 VERSION_COMMON()
58 /* *INDENT-ON* */
59
60 #define status(opt,name,rc) if (opt) printf(" %s: %s", name, (rc) == OK ? "OK" : "ERR")
61
62 int
63 main(int argc, char *argv[])
64 {
65     int ch;
66     int rc_r = OK;
67     int rc_e1 = OK;
68     int rc_e2 = OK;
69     int rc_e3 = OK;
70     SCREEN *sp = NULL;
71     bool opt_e = FALSE;
72     bool opt_i = FALSE;
73     bool opt_n = FALSE;
74     bool opt_r = FALSE;
75     bool opt_s = FALSE;
76
77     while ((ch = getopt(argc, argv, "einrs" OPTS_COMMON)) != -1) {
78         switch (ch) {
79         case 'e':
80             opt_e = TRUE;
81             break;
82         case 'i':
83             opt_i = TRUE;
84             break;
85         case 'n':
86             opt_n = TRUE;
87             break;
88         case 'r':
89             opt_r = TRUE;
90             break;
91         case 's':
92             opt_s = TRUE;
93             break;
94         case OPTS_VERSION:
95             show_version(argv);
96             ExitProgram(EXIT_SUCCESS);
97         default:
98             usage(ch == OPTS_USAGE);
99             /* NOTREACHED */
100         }
101     }
102     if (optind < argc)
103         usage(FALSE);
104     if (opt_i && opt_n)
105         usage(TRUE);
106
107     if (opt_i) {
108         initscr();
109     } else if (opt_n) {
110         sp = newterm(NULL, stdout, stdin);
111     }
112     if (opt_r) {
113         rc_r = refresh();
114     }
115     rc_e1 = endwin();
116     if (opt_e) {
117         rc_e2 = endwin();
118     }
119     if (opt_s) {
120         getch();
121         rc_e3 = endwin();
122     }
123     printf("status:");
124     status(opt_i, "initscr(-i)", OK);
125     status(opt_n, "newterm(-n)", (sp != NULL) ? OK : ERR);
126     status(opt_r, "refresh(-r)", rc_r);
127     status(TRUE, "endwin", rc_e1);
128     status(opt_e, "endwin(-e)", rc_e2);
129     status(opt_s, "endwin(-s)", rc_e3);
130     printf("\n");
131     ExitProgram(EXIT_SUCCESS);
132 }