Uh oh!
There was an error while loading. Please reload this page.
- Notifications
You must be signed in to change notification settings - Fork 34k
bpo-40275: Avoid importing logging in test.support#19601
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
Merged
serhiy-storchaka merged 7 commits into python:master from serhiy-storchaka:test-support-loggingApr 25, 2020
Uh oh!
There was an error while loading. Please reload this page.
Merged
Changes from all commits
Commits
Show all changes
7 commits Select commit Hold shift + click to select a range
739599e bpo-40275: Avoid importing logging in test.support
serhiy-storchaka 3f1fc37 Move TestHandler to logging_helper.
serhiy-storchaka 5d59d23 Import logging and create _CapturingHandler only once.
serhiy-storchaka 58ae645 Move _AssertLogsContext in a private unittest._log submodule.
serhiy-storchaka 7144f73 Merge branch 'master' into test-support-logging
serhiy-storchaka 3464c9a Remove empty lines at the end.
serhiy-storchaka 01ba090 Fix merging error.
serhiy-storchaka File filter
Filter by extension
Conversations
Failed to load comments.
Loading
Uh oh!
There was an error while loading. Please reload this page.
Jump to
Jump to file
Failed to load files.
Loading
Uh oh!
There was an error while loading. Please reload this page.
Diff view
Diff view
There are no files selected for viewing
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters. Learn more about bidirectional Unicode characters
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters. Learn more about bidirectional Unicode characters
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters. Learn more about bidirectional Unicode characters
| Original file line number | Diff line number | Diff line change |
|---|---|---|
| @@ -0,0 +1,29 @@ | ||
| import logging.handlers | ||
| class TestHandler(logging.handlers.BufferingHandler): | ||
| def __init__(self, matcher): | ||
| # BufferingHandler takes a "capacity" argument | ||
| # so as to know when to flush. As we're overriding | ||
| # shouldFlush anyway, we can set a capacity of zero. | ||
| # You can call flush() manually to clear out the | ||
| # buffer. | ||
| logging.handlers.BufferingHandler.__init__(self, 0) | ||
| self.matcher = matcher | ||
| def shouldFlush(self): | ||
| return False | ||
| def emit(self, record): | ||
| self.format(record) | ||
| self.buffer.append(record.__dict__) | ||
| def matches(self, **kwargs): | ||
| """ | ||
| Look for a saved dict whose keys/values match the supplied arguments. | ||
| """ | ||
| result = False | ||
| for d in self.buffer: | ||
| if self.matcher.matches(d, **kwargs): | ||
| result = True | ||
| break | ||
| return result | ||
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters. Learn more about bidirectional Unicode characters
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters. Learn more about bidirectional Unicode characters
| Original file line number | Diff line number | Diff line change |
|---|---|---|
| @@ -0,0 +1,69 @@ | ||
| import logging | ||
| import collections | ||
| from .case import _BaseTestCaseContext | ||
| _LoggingWatcher = collections.namedtuple("_LoggingWatcher", | ||
| ["records", "output"]) | ||
| class _CapturingHandler(logging.Handler): | ||
| """ | ||
| A logging handler capturing all (raw and formatted) logging output. | ||
| """ | ||
| def __init__(self): | ||
| logging.Handler.__init__(self) | ||
| self.watcher = _LoggingWatcher([], []) | ||
| def flush(self): | ||
| pass | ||
| def emit(self, record): | ||
| self.watcher.records.append(record) | ||
| msg = self.format(record) | ||
| self.watcher.output.append(msg) | ||
| class _AssertLogsContext(_BaseTestCaseContext): | ||
| """A context manager used to implement TestCase.assertLogs().""" | ||
| LOGGING_FORMAT = "%(levelname)s:%(name)s:%(message)s" | ||
| def __init__(self, test_case, logger_name, level): | ||
| _BaseTestCaseContext.__init__(self, test_case) | ||
| self.logger_name = logger_name | ||
| if level: | ||
| self.level = logging._nameToLevel.get(level, level) | ||
| else: | ||
| self.level = logging.INFO | ||
| self.msg = None | ||
| def __enter__(self): | ||
| if isinstance(self.logger_name, logging.Logger): | ||
| logger = self.logger = self.logger_name | ||
| else: | ||
| logger = self.logger = logging.getLogger(self.logger_name) | ||
| formatter = logging.Formatter(self.LOGGING_FORMAT) | ||
| handler = _CapturingHandler() | ||
| handler.setFormatter(formatter) | ||
| self.watcher = handler.watcher | ||
| self.old_handlers = logger.handlers[:] | ||
| self.old_level = logger.level | ||
| self.old_propagate = logger.propagate | ||
| logger.handlers = [handler] | ||
| logger.setLevel(self.level) | ||
| logger.propagate = False | ||
| return handler.watcher | ||
| def __exit__(self, exc_type, exc_value, tb): | ||
| self.logger.handlers = self.old_handlers | ||
| self.logger.propagate = self.old_propagate | ||
| self.logger.setLevel(self.old_level) | ||
| if exc_type is not None: | ||
| # let unexpected exceptions pass through | ||
| return False | ||
| if len(self.watcher.records) == 0: | ||
| self._raiseFailure( | ||
| "no logs of level{} or higher triggered on{}" | ||
| .format(logging.getLevelName(self.level), self.logger.name)) |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters. Learn more about bidirectional Unicode characters
2 changes: 2 additions & 0 deletions 2 Misc/NEWS.d/next/Library/2020-04-20-19-06-55.bpo-40275.9UcN2g.rst
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters. Learn more about bidirectional Unicode characters
| Original file line number | Diff line number | Diff line change |
|---|---|---|
| @@ -0,0 +1,2 @@ | ||
| The :mod:`logging` package is now imported lazily in :mod:`unittest` only | ||
| when the :meth:`~unittest.TestCase.assertLogs` assertion is used. |
Add this suggestion to a batch that can be applied as a single commit.This suggestion is invalid because no changes were made to the code.Suggestions cannot be applied while the pull request is closed.Suggestions cannot be applied while viewing a subset of changes.Only one suggestion per line can be applied in a batch.Add this suggestion to a batch that can be applied as a single commit.Applying suggestions on deleted lines is not supported.You must change the existing code in this line in order to create a valid suggestion.Outdated suggestions cannot be applied.This suggestion has been applied or marked resolved.Suggestions cannot be applied from pending reviews.Suggestions cannot be applied on multi-line comments.Suggestions cannot be applied while the pull request is queued to merge.Suggestion cannot be applied right now. Please check back later.
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
It's only used in test_logging. Why not simply moving this class into test_logging?
We don't provide any backward compatibility warranty for test.support. It should not be used outside CPython code base.
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
It is what I did originally. But then move it into a separate submodule on the request of @vsajip (
loggingmaintainer, who added this class 10 years ago).