Initial commit
This commit is contained in:
38
venv/lib/python3.8/site-packages/joblib/test/test_logger.py
Normal file
38
venv/lib/python3.8/site-packages/joblib/test/test_logger.py
Normal file
@@ -0,0 +1,38 @@
|
||||
"""
|
||||
Test the logger module.
|
||||
"""
|
||||
|
||||
# Author: Gael Varoquaux <gael dot varoquaux at normalesup dot org>
|
||||
# Copyright (c) 2009 Gael Varoquaux
|
||||
# License: BSD Style, 3 clauses.
|
||||
|
||||
import re
|
||||
|
||||
from joblib.logger import PrintTime
|
||||
|
||||
try:
|
||||
# Python 2/Python 3 compat
|
||||
unicode('str')
|
||||
except NameError:
|
||||
unicode = lambda s: s
|
||||
|
||||
|
||||
def test_print_time(tmpdir, capsys):
|
||||
# A simple smoke test for PrintTime.
|
||||
logfile = tmpdir.join('test.log').strpath
|
||||
print_time = PrintTime(logfile=logfile)
|
||||
print_time(unicode('Foo'))
|
||||
# Create a second time, to smoke test log rotation.
|
||||
print_time = PrintTime(logfile=logfile)
|
||||
print_time(unicode('Foo'))
|
||||
# And a third time
|
||||
print_time = PrintTime(logfile=logfile)
|
||||
print_time(unicode('Foo'))
|
||||
|
||||
out_printed_text, err_printed_text = capsys.readouterr()
|
||||
# Use regexps to be robust to time variations
|
||||
match = r"Foo: 0\..s, 0\..min\nFoo: 0\..s, 0..min\nFoo: " + \
|
||||
r".\..s, 0..min\n"
|
||||
if not re.match(match, err_printed_text):
|
||||
raise AssertionError('Excepted %s, got %s' %
|
||||
(match, err_printed_text))
|
||||
Reference in New Issue
Block a user