blob: dc2f20bd518f5672e4f6895c263021ba347328a0 [file] [log] [blame]
Andrew M. Kuchling2158df02001-10-22 15:26:09 +00001#
2# Test script for the curses module
3#
4# This script doesn't actually display anything very coherent. but it
5# does call every method and function.
6#
7# Functions not tested: {def,reset}_{shell,prog}_mode, getch(), getstr(),
Neal Norwitz88bbd732006-01-10 07:05:44 +00008# init_color()
9# Only called, not tested: getmouse(), ungetmouse()
Andrew M. Kuchling2158df02001-10-22 15:26:09 +000010#
11
Neal Norwitzeeab7da2006-01-05 06:09:13 +000012import curses, sys, tempfile, os
Neal Norwitz5e3d8622006-01-09 06:24:35 +000013import curses.panel
Andrew M. Kuchling2158df02001-10-22 15:26:09 +000014
15# Optionally test curses module. This currently requires that the
16# 'curses' resource be given on the regrtest command line using the -u
17# option. If not available, nothing after this line will be executed.
18
Neal Norwitz9f39f682006-01-06 04:18:21 +000019from test.test_support import requires, TestSkipped
20requires('curses')
21
22# XXX: if newterm was supported we could use it instead of initscr and not exit
23term = os.environ.get('TERM')
24if not term or term == 'unknown':
25 raise TestSkipped, "$TERM=%r, calling initscr() may cause exit" % term
Andrew M. Kuchling2158df02001-10-22 15:26:09 +000026
Anthony Baxter76801852006-04-04 13:32:08 +000027if sys.platform == "cygwin":
28 raise TestSkipped("cygwin's curses mostly just hangs")
29
Andrew M. Kuchling2158df02001-10-22 15:26:09 +000030def window_funcs(stdscr):
31 "Test the methods of windows"
32 win = curses.newwin(10,10)
33 win = curses.newwin(5,5, 5,5)
34 win2 = curses.newwin(15,15, 5,5)
35
36 for meth in [stdscr.addch, stdscr.addstr]:
37 for args in [('a'), ('a', curses.A_BOLD),
38 (4,4, 'a'), (5,5, 'a', curses.A_BOLD)]:
Raymond Hettingerff41c482003-04-06 09:01:11 +000039 meth(*args)
Andrew M. Kuchling2158df02001-10-22 15:26:09 +000040
41 for meth in [stdscr.box, stdscr.clear, stdscr.clrtobot,
42 stdscr.clrtoeol, stdscr.cursyncup, stdscr.delch,
43 stdscr.deleteln, stdscr.erase, stdscr.getbegyx,
44 stdscr.getbkgd, stdscr.getkey, stdscr.getmaxyx,
45 stdscr.getparyx, stdscr.getyx, stdscr.inch,
46 stdscr.insertln, stdscr.instr, stdscr.is_wintouched,
47 win.noutrefresh, stdscr.redrawwin, stdscr.refresh,
48 stdscr.standout, stdscr.standend, stdscr.syncdown,
49 stdscr.syncup, stdscr.touchwin, stdscr.untouchwin]:
50 meth()
51
52 stdscr.addnstr('1234', 3)
53 stdscr.addnstr('1234', 3, curses.A_BOLD)
54 stdscr.addnstr(4,4, '1234', 3)
55 stdscr.addnstr(5,5, '1234', 3, curses.A_BOLD)
56
57 stdscr.attron(curses.A_BOLD)
58 stdscr.attroff(curses.A_BOLD)
59 stdscr.attrset(curses.A_BOLD)
60 stdscr.bkgd(' ')
61 stdscr.bkgd(' ', curses.A_REVERSE)
62 stdscr.bkgdset(' ')
63 stdscr.bkgdset(' ', curses.A_REVERSE)
64
65 win.border(65, 66, 67, 68,
66 69, 70, 71, 72)
67 win.border('|', '!', '-', '_',
68 '+', '\\', '#', '/')
69 try:
70 win.border(65, 66, 67, 68,
71 69, [], 71, 72)
72 except TypeError:
73 pass
74 else:
75 raise RuntimeError, "Expected win.border() to raise TypeError"
76
77 stdscr.clearok(1)
78
79 win4 = stdscr.derwin(2,2)
80 win4 = stdscr.derwin(1,1, 5,5)
81 win4.mvderwin(9,9)
82
83 stdscr.echochar('a')
84 stdscr.echochar('a', curses.A_BOLD)
85 stdscr.hline('-', 5)
86 stdscr.hline('-', 5, curses.A_BOLD)
87 stdscr.hline(1,1,'-', 5)
88 stdscr.hline(1,1,'-', 5, curses.A_BOLD)
89
90 stdscr.idcok(1)
91 stdscr.idlok(1)
92 stdscr.immedok(1)
93 stdscr.insch('c')
94 stdscr.insdelln(1)
95 stdscr.insnstr('abc', 3)
96 stdscr.insnstr('abc', 3, curses.A_BOLD)
97 stdscr.insnstr(5, 5, 'abc', 3)
98 stdscr.insnstr(5, 5, 'abc', 3, curses.A_BOLD)
99
100 stdscr.insstr('def')
101 stdscr.insstr('def', curses.A_BOLD)
102 stdscr.insstr(5, 5, 'def')
103 stdscr.insstr(5, 5, 'def', curses.A_BOLD)
104 stdscr.is_linetouched(0)
105 stdscr.keypad(1)
106 stdscr.leaveok(1)
107 stdscr.move(3,3)
108 win.mvwin(2,2)
109 stdscr.nodelay(1)
110 stdscr.notimeout(1)
111 win2.overlay(win)
112 win2.overwrite(win)
Neal Norwitz88bbd732006-01-10 07:05:44 +0000113 win2.overlay(win, 1, 2, 3, 3, 2, 1)
114 win2.overwrite(win, 1, 2, 3, 3, 2, 1)
Andrew M. Kuchling2158df02001-10-22 15:26:09 +0000115 stdscr.redrawln(1,2)
116
117 stdscr.scrollok(1)
118 stdscr.scroll()
119 stdscr.scroll(2)
120 stdscr.scroll(-3)
121
Andrew M. Kuchlingd1badac2005-06-15 18:44:23 +0000122 stdscr.move(12, 2)
Andrew M. Kuchling2158df02001-10-22 15:26:09 +0000123 stdscr.setscrreg(10,15)
124 win3 = stdscr.subwin(10,10)
125 win3 = stdscr.subwin(10,10, 5,5)
126 stdscr.syncok(1)
127 stdscr.timeout(5)
128 stdscr.touchline(5,5)
129 stdscr.touchline(5,5,0)
130 stdscr.vline('a', 3)
131 stdscr.vline('a', 3, curses.A_STANDOUT)
132 stdscr.vline(1,1, 'a', 3)
133 stdscr.vline(1,1, 'a', 3, curses.A_STANDOUT)
134
135 if hasattr(curses, 'resize'):
136 stdscr.resize()
137 if hasattr(curses, 'enclose'):
138 stdscr.enclose()
139
140
141def module_funcs(stdscr):
142 "Test module-level functions"
143
144 for func in [curses.baudrate, curses.beep, curses.can_change_color,
145 curses.cbreak, curses.def_prog_mode, curses.doupdate,
146 curses.filter, curses.flash, curses.flushinp,
147 curses.has_colors, curses.has_ic, curses.has_il,
148 curses.isendwin, curses.killchar, curses.longname,
149 curses.nocbreak, curses.noecho, curses.nonl,
150 curses.noqiflush, curses.noraw,
151 curses.reset_prog_mode, curses.termattrs,
152 curses.termname, curses.erasechar, curses.getsyx]:
153 func()
154
155 # Functions that actually need arguments
Michael W. Hudson2b3feec2004-08-07 15:27:16 +0000156 if curses.tigetstr("cnorm"):
157 curses.curs_set(1)
Andrew M. Kuchling2158df02001-10-22 15:26:09 +0000158 curses.delay_output(1)
159 curses.echo() ; curses.echo(1)
160
161 f = tempfile.TemporaryFile()
162 stdscr.putwin(f)
163 f.seek(0)
164 curses.getwin(f)
165 f.close()
166
167 curses.halfdelay(1)
168 curses.intrflush(1)
169 curses.meta(1)
170 curses.napms(100)
171 curses.newpad(50,50)
172 win = curses.newwin(5,5)
173 win = curses.newwin(5,5, 1,1)
174 curses.nl() ; curses.nl(1)
175 curses.putp('abc')
176 curses.qiflush()
177 curses.raw() ; curses.raw(1)
178 curses.setsyx(5,5)
Andrew M. Kuchling2158df02001-10-22 15:26:09 +0000179 curses.tigetflag('hc')
180 curses.tigetnum('co')
181 curses.tigetstr('cr')
182 curses.tparm('cr')
183 curses.typeahead(sys.__stdin__.fileno())
184 curses.unctrl('a')
185 curses.ungetch('a')
186 curses.use_env(1)
187
188 # Functions only available on a few platforms
189 if curses.has_colors():
190 curses.start_color()
191 curses.init_pair(2, 1,1)
192 curses.color_content(1)
193 curses.color_pair(2)
Andrew M. Kuchlingd1badac2005-06-15 18:44:23 +0000194 curses.pair_content(curses.COLOR_PAIRS - 1)
Andrew M. Kuchling2158df02001-10-22 15:26:09 +0000195 curses.pair_number(0)
196
Michael W. Hudson2b3feec2004-08-07 15:27:16 +0000197 if hasattr(curses, 'use_default_colors'):
198 curses.use_default_colors()
Andrew M. Kuchling69f31eb2003-08-13 23:11:04 +0000199
Andrew M. Kuchling2158df02001-10-22 15:26:09 +0000200 if hasattr(curses, 'keyname'):
201 curses.keyname(13)
202
203 if hasattr(curses, 'has_key'):
204 curses.has_key(13)
205
206 if hasattr(curses, 'getmouse'):
Anthony Baxtere94e3b42006-04-06 07:12:39 +0000207 (availmask, oldmask) = curses.mousemask(curses.BUTTON1_PRESSED)
208 # availmask indicates that mouse stuff not available.
209 if availmask != 0:
210 curses.mouseinterval(10)
211 # just verify these don't cause errors
212 m = curses.getmouse()
213 curses.ungetmouse(*m)
Andrew M. Kuchling2158df02001-10-22 15:26:09 +0000214
Andrew M. Kuchlinge752e202003-08-29 18:37:37 +0000215def unit_tests():
216 from curses import ascii
217 for ch, expected in [('a', 'a'), ('A', 'A'),
218 (';', ';'), (' ', ' '),
Andrew M. Kuchlinge8792c12003-08-29 18:49:05 +0000219 ('\x7f', '^?'), ('\n', '^J'), ('\0', '^@'),
220 # Meta-bit characters
221 ('\x8a', '!^J'), ('\xc1', '!A'),
222 ]:
Andrew M. Kuchlinge752e202003-08-29 18:37:37 +0000223 if ascii.unctrl(ch) != expected:
224 print 'curses.unctrl fails on character', repr(ch)
Tim Peters58eb11c2004-01-18 20:29:55 +0000225
Andrew M. Kuchlinge752e202003-08-29 18:37:37 +0000226
Neal Norwitz5e3d8622006-01-09 06:24:35 +0000227def test_userptr_without_set(stdscr):
228 w = curses.newwin(10, 10)
229 p = curses.panel.new_panel(w)
230 # try to access userptr() before calling set_userptr() -- segfaults
231 try:
232 p.userptr()
233 raise RuntimeError, 'userptr should fail since not set'
234 except curses.panel.error:
235 pass
Andrew M. Kuchling2158df02001-10-22 15:26:09 +0000236
237def main(stdscr):
238 curses.savetty()
239 try:
240 module_funcs(stdscr)
241 window_funcs(stdscr)
Neal Norwitz5e3d8622006-01-09 06:24:35 +0000242 test_userptr_without_set(stdscr)
Andrew M. Kuchling2158df02001-10-22 15:26:09 +0000243 finally:
244 curses.resetty()
245
246if __name__ == '__main__':
247 curses.wrapper(main)
Andrew M. Kuchlinge752e202003-08-29 18:37:37 +0000248 unit_tests()
Andrew M. Kuchling2158df02001-10-22 15:26:09 +0000249else:
250 try:
Georg Brandl05f5ba92006-01-12 15:41:05 +0000251 # testing setupterm() inside initscr/endwin
252 # causes terminal breakage
253 curses.setupterm(fd=sys.__stdout__.fileno())
Andrew M. Kuchling2158df02001-10-22 15:26:09 +0000254 stdscr = curses.initscr()
255 main(stdscr)
256 finally:
257 curses.endwin()
Andrew M. Kuchlinge752e202003-08-29 18:37:37 +0000258
259 unit_tests()