[dab82f29] | 1 | /* Copyright (c) 2002,2003,2004,2009 James M. Kretchmar |
---|
| 2 | * |
---|
| 3 | * This file is part of Owl. |
---|
| 4 | * |
---|
| 5 | * Owl is free software: you can redistribute it and/or modify |
---|
| 6 | * it under the terms of the GNU General Public License as published by |
---|
| 7 | * the Free Software Foundation, either version 3 of the License, or |
---|
| 8 | * (at your option) any later version. |
---|
| 9 | * |
---|
| 10 | * Owl is distributed in the hope that it will be useful, |
---|
| 11 | * but WITHOUT ANY WARRANTY; without even the implied warranty of |
---|
| 12 | * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the |
---|
| 13 | * GNU General Public License for more details. |
---|
| 14 | * |
---|
| 15 | * You should have received a copy of the GNU General Public License |
---|
| 16 | * along with Owl. If not, see <http://www.gnu.org/licenses/>. |
---|
| 17 | * |
---|
| 18 | * --------------------------------------------------------------- |
---|
| 19 | * |
---|
| 20 | * As of Owl version 2.1.12 there are patches contributed by |
---|
[fa00c5c] | 21 | * developers of the branched BarnOwl project, Copyright (c) |
---|
| 22 | * 2006-2009 The BarnOwl Developers. All rights reserved. |
---|
[dab82f29] | 23 | */ |
---|
| 24 | |
---|
[7d4fbcd] | 25 | #include "owl.h" |
---|
| 26 | #include <unistd.h> |
---|
| 27 | #include <stdlib.h> |
---|
| 28 | |
---|
[1aee7d9] | 29 | static const char fileIdent[] = "$Id$"; |
---|
| 30 | |
---|
[b2b0773] | 31 | owl_global g; |
---|
| 32 | |
---|
[094009a] | 33 | void screeninit() |
---|
| 34 | { |
---|
[7d4fbcd] | 35 | char buff[1024]; |
---|
| 36 | |
---|
| 37 | sprintf(buff, "TERMINFO=%s", TERMINFO); |
---|
| 38 | putenv(buff); |
---|
| 39 | |
---|
| 40 | initscr(); |
---|
| 41 | start_color(); |
---|
| 42 | /* cbreak(); */ |
---|
| 43 | raw(); |
---|
| 44 | noecho(); |
---|
| 45 | intrflush(stdscr,FALSE); |
---|
| 46 | keypad(stdscr,TRUE); |
---|
| 47 | nodelay(stdscr,1); |
---|
| 48 | clear(); |
---|
| 49 | refresh(); |
---|
| 50 | meta(stdscr, TRUE); |
---|
| 51 | } |
---|
| 52 | |
---|
[094009a] | 53 | void test1() |
---|
| 54 | { |
---|
[7d4fbcd] | 55 | int j; |
---|
| 56 | owl_editwin e; |
---|
| 57 | |
---|
| 58 | screeninit(); |
---|
| 59 | |
---|
[e1c4636] | 60 | owl_editwin_init(&e, stdscr, LINES, COLS, OWL_EDITWIN_STYLE_MULTILINE, NULL); |
---|
[7d4fbcd] | 61 | /* owl_editwin_set_locktext(&e, "Here is some locktext:\n");*/ |
---|
| 62 | doupdate(); |
---|
| 63 | while (1) { |
---|
| 64 | usleep(50); |
---|
| 65 | |
---|
| 66 | j=getch(); |
---|
| 67 | |
---|
| 68 | if (j==ERR) continue; |
---|
| 69 | |
---|
| 70 | if (j==3) break; |
---|
| 71 | |
---|
| 72 | if (j==27) { |
---|
| 73 | j=getch(); |
---|
| 74 | if (j==ERR) continue; |
---|
| 75 | owl_editwin_process_char(&e, j); |
---|
| 76 | doupdate(); |
---|
| 77 | } else { |
---|
| 78 | owl_editwin_process_char(&e, j); |
---|
| 79 | doupdate(); |
---|
| 80 | } |
---|
| 81 | } |
---|
| 82 | endwin(); |
---|
| 83 | printf("Had:\n%s", owl_editwin_get_text(&e)); |
---|
| 84 | } |
---|
| 85 | |
---|
[094009a] | 86 | void test2(char *in) |
---|
| 87 | { |
---|
[7d4fbcd] | 88 | owl_fmtext t; |
---|
| 89 | |
---|
| 90 | screeninit(); |
---|
| 91 | |
---|
| 92 | owl_fmtext_init_null(&t); |
---|
| 93 | owl_fmtext_append_ztext(&t, in); |
---|
| 94 | owl_fmtext_curs_waddstr(&t, stdscr); |
---|
| 95 | wrefresh(stdscr); |
---|
| 96 | sleep(5000); |
---|
| 97 | endwin(); |
---|
| 98 | } |
---|
| 99 | |
---|
[094009a] | 100 | void test3() |
---|
| 101 | { |
---|
[7d4fbcd] | 102 | ZNotice_t *n; |
---|
| 103 | |
---|
| 104 | printf("%i\n", sizeof(n->z_uid.zuid_addr)); |
---|
| 105 | /* gethostbyaddr((char *) &(n->z_uid.zuid_addr), sizeof(n->z_uid.zuid_addr), AF_INET); */ |
---|
| 106 | } |
---|
| 107 | |
---|
[094009a] | 108 | void colorinfo() |
---|
| 109 | { |
---|
[7d4fbcd] | 110 | char buff[1024]; |
---|
| 111 | |
---|
| 112 | screeninit(); |
---|
| 113 | sprintf(buff, "Have %i COLOR_PAIRS\n", COLOR_PAIRS); |
---|
| 114 | addstr(buff); |
---|
| 115 | refresh(); |
---|
| 116 | sleep(10); |
---|
| 117 | endwin(); |
---|
| 118 | } |
---|
| 119 | |
---|
[094009a] | 120 | void test4() |
---|
| 121 | { |
---|
[7d4fbcd] | 122 | int j; |
---|
| 123 | char buff[1024]; |
---|
| 124 | |
---|
| 125 | screeninit(); |
---|
| 126 | |
---|
| 127 | while (1) { |
---|
| 128 | usleep(100); |
---|
| 129 | |
---|
| 130 | j=getch(); |
---|
| 131 | |
---|
| 132 | if (j==ERR) continue; |
---|
| 133 | |
---|
| 134 | if (j==3) break; |
---|
| 135 | sprintf(buff, "%o\n", j); |
---|
| 136 | addstr(buff); |
---|
| 137 | } |
---|
| 138 | endwin(); |
---|
| 139 | } |
---|
| 140 | |
---|
[094009a] | 141 | void test_keypress() |
---|
| 142 | { |
---|
[7d4fbcd] | 143 | int j, rev; |
---|
| 144 | char buff[1024], buff2[64]; |
---|
| 145 | |
---|
| 146 | screeninit(); |
---|
| 147 | |
---|
| 148 | while (1) { |
---|
| 149 | usleep(100); |
---|
| 150 | |
---|
| 151 | j=wgetch(stdscr); |
---|
| 152 | |
---|
| 153 | if (j==ERR) continue; |
---|
| 154 | |
---|
| 155 | if (j==3) break; |
---|
| 156 | if (0 == owl_keypress_tostring(j, 0, buff2, 1000)) { |
---|
| 157 | rev = owl_keypress_fromstring(buff2); |
---|
| 158 | sprintf(buff, "%s : 0x%x 0%o %d %d %s\n", buff2, j, j, j, rev, |
---|
| 159 | (j==rev?"matches":"*** WARNING: Does Not Reverse")); |
---|
| 160 | } else { |
---|
| 161 | sprintf(buff, "UNKNOWN : 0x%x 0%o %d\n", j, j, j); |
---|
| 162 | } |
---|
| 163 | addstr(buff); |
---|
| 164 | } |
---|
| 165 | endwin(); |
---|
| 166 | } |
---|
| 167 | |
---|
| 168 | |
---|
[094009a] | 169 | int main(int argc, char **argv, char **env) |
---|
| 170 | { |
---|
[7d4fbcd] | 171 | int numfailures=0; |
---|
| 172 | if (argc==2 && 0==strcmp(argv[1],"reg")) { |
---|
[e1c4636] | 173 | numfailures += owl_util_regtest(); |
---|
[7d4fbcd] | 174 | numfailures += owl_dict_regtest(); |
---|
| 175 | numfailures += owl_variable_regtest(); |
---|
| 176 | if (numfailures) { |
---|
| 177 | fprintf(stderr, "*** WARNING: %d failures total\n", numfailures); |
---|
| 178 | } |
---|
| 179 | return(numfailures); |
---|
| 180 | } else if (argc==2 && 0==strcmp(argv[1],"test1")) { |
---|
| 181 | test1(); |
---|
| 182 | } else if (argc==2 && 0==strcmp(argv[1],"colorinfo")) { |
---|
| 183 | colorinfo(); |
---|
| 184 | } else if (argc==2 && 0==strcmp(argv[1],"test4")) { |
---|
| 185 | test4(); |
---|
| 186 | } else if (argc==2 && 0==strcmp(argv[1],"keypress")) { |
---|
| 187 | test_keypress(); |
---|
| 188 | } else { |
---|
| 189 | fprintf(stderr, "No test specified. Current options are: reg test1\n"); |
---|
| 190 | } |
---|
| 191 | return(0); |
---|
| 192 | } |
---|