2008-08-16 23:26:59 +08:00
|
|
|
import py
|
2009-03-11 09:40:08 +08:00
|
|
|
import os, sys
|
2009-11-05 04:34:07 +08:00
|
|
|
from py.impl.io import terminalwriter
|
2008-08-16 23:26:59 +08:00
|
|
|
|
2009-08-22 18:45:58 +08:00
|
|
|
def test_terminal_width_COLUMNS(monkeypatch):
|
|
|
|
""" Dummy test for get_terminal_width
|
|
|
|
"""
|
|
|
|
fcntl = py.test.importorskip("fcntl")
|
|
|
|
monkeypatch.setattr(fcntl, 'ioctl', lambda *args: int('x'))
|
|
|
|
monkeypatch.setenv('COLUMNS', '42')
|
|
|
|
assert terminalwriter.get_terminal_width() == 41
|
|
|
|
monkeypatch.delenv('COLUMNS', raising=False)
|
2008-08-16 23:26:59 +08:00
|
|
|
|
2009-04-04 01:45:25 +08:00
|
|
|
def test_terminalwriter_defaultwidth_80(monkeypatch):
|
|
|
|
monkeypatch.setattr(terminalwriter, '_getdimensions', lambda: 0/0)
|
2009-08-22 18:45:58 +08:00
|
|
|
monkeypatch.delenv('COLUMNS', raising=False)
|
2009-04-04 01:45:25 +08:00
|
|
|
tw = py.io.TerminalWriter()
|
2009-08-22 18:45:58 +08:00
|
|
|
assert tw.fullwidth == 80-1
|
|
|
|
|
|
|
|
def test_terminalwriter_computes_width(monkeypatch):
|
|
|
|
monkeypatch.setattr(terminalwriter, 'get_terminal_width', lambda: 42)
|
|
|
|
tw = py.io.TerminalWriter()
|
|
|
|
assert tw.fullwidth == 42
|
2008-08-16 23:26:59 +08:00
|
|
|
|
|
|
|
def test_terminalwriter_default_instantiation():
|
|
|
|
tw = py.io.TerminalWriter(stringio=True)
|
|
|
|
assert hasattr(tw, 'stringio')
|
|
|
|
|
2009-05-13 19:06:32 +08:00
|
|
|
def test_terminalwriter_dumb_term_no_markup(monkeypatch):
|
|
|
|
monkeypatch.setattr(os, 'environ', {'TERM': 'dumb', 'PATH': ''})
|
2009-08-21 02:47:39 +08:00
|
|
|
class MyFile:
|
|
|
|
def isatty(self):
|
|
|
|
return True
|
|
|
|
monkeypatch.setattr(sys, 'stdout', MyFile())
|
2009-05-13 19:06:32 +08:00
|
|
|
assert sys.stdout.isatty()
|
|
|
|
tw = py.io.TerminalWriter()
|
|
|
|
assert not tw.hasmarkup
|
|
|
|
|
2009-08-21 02:47:39 +08:00
|
|
|
def test_unicode_encoding():
|
2009-08-29 21:51:49 +08:00
|
|
|
msg = py.builtin._totext('b\u00f6y', 'utf8')
|
2009-08-21 02:47:39 +08:00
|
|
|
for encoding in 'utf8', 'latin1':
|
2009-08-29 21:51:49 +08:00
|
|
|
l = []
|
|
|
|
tw = py.io.TerminalWriter(l.append, encoding=encoding)
|
2009-08-21 02:47:39 +08:00
|
|
|
tw.line(msg)
|
2009-10-30 03:10:05 +08:00
|
|
|
assert l[0].strip() == msg.encode(encoding)
|
2009-08-21 02:47:39 +08:00
|
|
|
|
2008-08-16 23:26:59 +08:00
|
|
|
class BaseTests:
|
|
|
|
def test_line(self):
|
|
|
|
tw = self.getwriter()
|
|
|
|
tw.line("hello")
|
|
|
|
l = self.getlines()
|
|
|
|
assert len(l) == 1
|
|
|
|
assert l[0] == "hello\n"
|
|
|
|
|
2009-08-06 20:34:19 +08:00
|
|
|
def test_line_unicode(self):
|
|
|
|
tw = self.getwriter()
|
|
|
|
for encoding in 'utf8', 'latin1':
|
|
|
|
tw._encoding = encoding
|
2009-08-29 21:51:49 +08:00
|
|
|
msg = py.builtin._totext('b\u00f6y', 'utf8')
|
2009-08-06 20:34:19 +08:00
|
|
|
tw.line(msg)
|
|
|
|
l = self.getlines()
|
2009-08-21 02:47:39 +08:00
|
|
|
assert l[0] == msg + "\n"
|
2009-08-06 20:34:19 +08:00
|
|
|
|
2008-08-16 23:26:59 +08:00
|
|
|
def test_sep_no_title(self):
|
|
|
|
tw = self.getwriter()
|
|
|
|
tw.sep("-", fullwidth=60)
|
|
|
|
l = self.getlines()
|
|
|
|
assert len(l) == 1
|
|
|
|
assert l[0] == "-" * 60 + "\n"
|
|
|
|
|
|
|
|
def test_sep_with_title(self):
|
|
|
|
tw = self.getwriter()
|
|
|
|
tw.sep("-", "hello", fullwidth=60)
|
|
|
|
l = self.getlines()
|
|
|
|
assert len(l) == 1
|
|
|
|
assert l[0] == "-" * 26 + " hello " + "-" * 27 + "\n"
|
|
|
|
|
2009-10-16 02:10:06 +08:00
|
|
|
@py.test.mark.skipif("sys.platform == 'win32'")
|
2008-08-16 23:26:59 +08:00
|
|
|
def test__escaped(self):
|
|
|
|
tw = self.getwriter()
|
|
|
|
text2 = tw._escaped("hello", (31))
|
|
|
|
assert text2.find("hello") != -1
|
|
|
|
|
2009-10-16 02:10:06 +08:00
|
|
|
@py.test.mark.skipif("sys.platform == 'win32'")
|
2008-08-16 23:26:59 +08:00
|
|
|
def test_markup(self):
|
|
|
|
tw = self.getwriter()
|
|
|
|
for bold in (True, False):
|
|
|
|
for color in ("red", "green"):
|
|
|
|
text2 = tw.markup("hello", **{color: True, 'bold': bold})
|
|
|
|
assert text2.find("hello") != -1
|
|
|
|
py.test.raises(ValueError, "tw.markup('x', wronkw=3)")
|
|
|
|
py.test.raises(ValueError, "tw.markup('x', wronkw=0)")
|
|
|
|
|
|
|
|
def test_line_write_markup(self):
|
|
|
|
tw = self.getwriter()
|
|
|
|
tw.hasmarkup = True
|
|
|
|
tw.line("x", bold=True)
|
|
|
|
tw.write("x\n", red=True)
|
|
|
|
l = self.getlines()
|
2009-10-16 02:10:06 +08:00
|
|
|
if sys.platform != "win32":
|
|
|
|
assert len(l[0]) > 2, l
|
|
|
|
assert len(l[1]) > 2, l
|
2008-08-16 23:26:59 +08:00
|
|
|
|
|
|
|
def test_attr_fullwidth(self):
|
|
|
|
tw = self.getwriter()
|
|
|
|
tw.sep("-", "hello", fullwidth=70)
|
|
|
|
tw.fullwidth = 70
|
|
|
|
tw.sep("-", "hello")
|
|
|
|
l = self.getlines()
|
|
|
|
assert len(l[0]) == len(l[1])
|
|
|
|
|
2009-08-06 20:34:19 +08:00
|
|
|
class TestTmpfile(BaseTests):
|
|
|
|
def getwriter(self):
|
|
|
|
self.path = py.test.config.ensuretemp("terminalwriter").ensure("tmpfile")
|
|
|
|
self.tw = py.io.TerminalWriter(self.path.open('w+'))
|
|
|
|
return self.tw
|
|
|
|
def getlines(self):
|
|
|
|
io = self.tw._file
|
|
|
|
io.flush()
|
|
|
|
return self.path.open('r').readlines()
|
|
|
|
|
2009-08-21 02:47:39 +08:00
|
|
|
class TestWithStringIO(BaseTests):
|
2008-08-16 23:26:59 +08:00
|
|
|
def getwriter(self):
|
|
|
|
self.tw = py.io.TerminalWriter(stringio=True)
|
|
|
|
return self.tw
|
|
|
|
def getlines(self):
|
|
|
|
io = self.tw.stringio
|
|
|
|
io.seek(0)
|
|
|
|
return io.readlines()
|
|
|
|
|
|
|
|
class TestCallableFile(BaseTests):
|
|
|
|
def getwriter(self):
|
|
|
|
self.writes = []
|
|
|
|
return py.io.TerminalWriter(self.writes.append)
|
|
|
|
|
|
|
|
def getlines(self):
|
2009-08-21 02:47:39 +08:00
|
|
|
io = py.io.TextIO()
|
2008-08-16 23:26:59 +08:00
|
|
|
io.write("".join(self.writes))
|
|
|
|
io.seek(0)
|
|
|
|
return io.readlines()
|
|
|
|
|
|
|
|
def test_attr_hasmarkup():
|
|
|
|
tw = py.io.TerminalWriter(stringio=True)
|
|
|
|
assert not tw.hasmarkup
|
|
|
|
tw.hasmarkup = True
|
|
|
|
tw.line("hello", bold=True)
|
|
|
|
s = tw.stringio.getvalue()
|
|
|
|
assert len(s) > len("hello")
|
|
|
|
|
|
|
|
|
|
|
|
|