-
-
Notifications
You must be signed in to change notification settings - Fork 34.5k
gh-100690: Prevent prefix "called_" for attributes of safe mock objects #100691
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
Changes from 1 commit
154012f
26dc793
2bd97a1
01946cb
e9b8f73
674f5bc
File filter
Filter by extension
Conversations
Jump to
Diff view
Diff view
…prefix
- Loading branch information
There are no files selected for viewing
| Original file line number | Diff line number | Diff line change |
|---|---|---|
|
|
@@ -652,7 +652,7 @@ def __getattr__(self, name): | |
| raise AttributeError("Mock object has no attribute %r" % name) | ||
| elif _is_magic(name): | ||
| raise AttributeError(name) | ||
| if not self._mock_unsafe: | ||
| if not self._mock_unsafe and (not self._mock_methods or name not in self._mock_methods): | ||
| if name.startswith(('assert', 'assret', 'asert', 'aseert', 'assrt')) or name in ATTRIB_DENY_LIST: | ||
| raise AttributeError( | ||
| f"{name!r} is not a valid assertion. Use a spec " | ||
|
|
@@ -1062,7 +1062,7 @@ def _calls_repr(self, prefix="Calls"): | |
| return f"\n{prefix}: {safe_repr(self.mock_calls)}." | ||
|
|
||
|
|
||
| # gh-100690 Denylist for forbidden method names in safe mode | ||
| # gh-100690 Denylist for forbidden attribute names in safe mode | ||
| ATTRIB_DENY_LIST = {name.removeprefix("assert_") for name in dir(NonCallableMock) if name.startswith("assert_")} | ||
|
Contributor
There was a problem hiding this comment. Choose a reason for hiding this commentThe reason will be displayed to describe this comment to others. Learn more. Much prefer this approach! 🎉
Member
There was a problem hiding this comment. Choose a reason for hiding this commentThe reason will be displayed to describe this comment to others. Learn more. Sorry for being late to the party, but anyways :) I think that
Member
There was a problem hiding this comment. Choose a reason for hiding this commentThe reason will be displayed to describe this comment to others. Learn more. Since this PR is already merged, I've opened #100819 with this proposal. Feel free to close if it should be public and mutable!
Member
There was a problem hiding this comment. Choose a reason for hiding this commentThe reason will be displayed to describe this comment to others. Learn more. It is already non-public by not being included in |
||
|
|
||
|
|
||
|
|
||
Uh oh!
There was an error while loading. Please reload this page.