mirror of
https://github.com/moparisthebest/wget
synced 2024-07-03 16:38:41 -04:00
f8e9a64ec7
Add (lots) of documentation for various parts of the test suite in the form of Python docstrings. Also, clean up some of the redundant code and fix indentation issues.
47 lines
1.4 KiB
Python
47 lines
1.4 KiB
Python
from functools import partial
|
|
import platform
|
|
from os import getenv
|
|
|
|
""" This module allows printing coloured output to the terminal when running a
|
|
Wget Test under certain conditions.
|
|
The output is coloured only on Linux systems. This is because coloured output
|
|
in the terminal on Windows requires too much effort for what is simply a
|
|
convenience. This might work on OSX terminals, but without a confirmation, it
|
|
remains unsupported.
|
|
|
|
Another important aspect is that the coloured output is printed only if the
|
|
environment variable MAKE_CHECK is not set. This variable is set when running
|
|
the test suite through, `make check`. In that case, the output is not only
|
|
printed to the terminal but also copied to a log file where the ANSI escape
|
|
codes on;y add clutter. """
|
|
|
|
|
|
T_COLORS = {
|
|
'PURPLE' : '\033[95m',
|
|
'BLUE' : '\033[94m',
|
|
'GREEN' : '\033[92m',
|
|
'YELLOW' : '\033[93m',
|
|
'RED' : '\033[91m',
|
|
'ENDC' : '\033[0m'
|
|
}
|
|
|
|
|
|
def printer (color, string):
|
|
if platform.system () == 'Linux':
|
|
if getenv ("MAKE_CHECK", "False") == "True":
|
|
print (string)
|
|
else:
|
|
print (T_COLORS.get (color) + string + T_COLORS.get ('ENDC'))
|
|
|
|
else:
|
|
print (string)
|
|
|
|
|
|
print_blue = partial(printer, 'BLUE')
|
|
print_red = partial(printer, 'RED')
|
|
print_green = partial(printer, 'GREEN')
|
|
print_purple = partial(printer, 'PURPLE')
|
|
print_yellow = partial(printer, 'YELLOW')
|
|
|
|
# vim: set ts=8 sw=3 tw=80 et :
|