deb-python-couleur/test_stdout_filter.py

103 lines
3.6 KiB
Python

# -*- coding: utf-8 -*-
# <Couleur - fancy shell output for python>
# Copyright (C) <2010> Gabriel Falcão <gabriel@nacaolivre.org>
#
# This program is free software: you can redistribute it and/or modify
# it under the terms of the GNU Lesser General Public License as published by
# the Free Software Foundation, either version 3 of the License, or
# (at your option) any later version.
#
# This program is distributed in the hope that it will be useful,
# but WITHOUT ANY WARRANTY; without even the implied warranty of
# MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
# GNU General Public License for more details.
#
# You should have received a copy of the GNU Lesser General Public License
# along with this program. If not, see <http://www.gnu.org/licenses/>.
import sys
from StringIO import StringIO
from nose.tools import with_setup, assert_equals
import couleur
def prepare_stdout():
if isinstance(sys.stdout, StringIO):
del sys.stdout
std = StringIO()
sys.stdout = std
def assert_stdout(expected):
string = sys.stdout.getvalue()
sys.stdout.seek(0)
sys.stdout.truncate()
assert_equals(string, expected)
@with_setup(prepare_stdout)
def test_output_black_foreground():
"STDOUT filter output: black foreground"
couleur.proxy(sys.stdout).enable()
print "#{black}Hello Black!#{reset}"
assert_stdout('\033[30mHello Black!\033[0m\n')
couleur.proxy(sys.stdout).disable()
print "#{black}should not be translated"
assert_stdout('#{black}should not be translated\n')
@with_setup(prepare_stdout)
def test_output_black_on_white_foreground():
"STDOUT filter output: black foreground on white background"
couleur.proxy(sys.stdout).enable()
print "#{black}#{on:white}Hello Black!#{reset}"
assert_stdout('\033[30;47mHello Black!\033[0m\n')
couleur.proxy(sys.stdout).disable()
print "#{black}should not be translated"
assert_stdout('#{black}should not be translated\n')
@with_setup(prepare_stdout)
def test_output_green_foreground():
"STDOUT filter output: green foreground"
couleur.proxy(sys.stdout).enable()
print "#{green}Hello Green!#{reset}"
assert_stdout('\033[32mHello Green!\033[0m\n')
couleur.proxy(sys.stdout).disable()
print "#{black}should not be translated"
assert_stdout('#{black}should not be translated\n')
@with_setup(prepare_stdout)
def test_output_green_and_red_on_white_foreground():
"STDOUT filter output: green foreground and white on red background"
couleur.proxy(sys.stdout).enable()
print "#{green}Hello #{white}#{on:red}Italy!#{reset}"
assert_stdout('\033[32mHello \033[37;41mItaly!\033[0m\n')
couleur.proxy(sys.stdout).disable()
print "#{black}should not be translated"
assert_stdout('#{black}should not be translated\n')
@with_setup(prepare_stdout)
def test_output_stdout_ignoring_output():
"STDOUT filter output: green foreground and white on red background"
couleur.proxy(sys.stdout).enable()
couleur.proxy(sys.stdout).ignore()
print "#{green}Hello #{white}#{on:blue}World!#{reset}"
assert_stdout('Hello World!\n')
couleur.proxy(sys.stdout).enable()
print "#{green}Hi There!"
assert_stdout('\033[32mHi There!\n')
couleur.proxy(sys.stdout).disable()
print "#{black}should not be translated"
assert_stdout('#{black}should not be translated\n')
def test_integration_with_stdout():
"STDOUT filter integration"
sys.stdout = sys.__stdout__
couleur.proxy(sys.stdout).enable()
assert sys.stdout is not sys.__stdout__
couleur.proxy(sys.stdout).disable()
assert sys.stdout is sys.__stdout__