bpo-19382: Adding test cases for module tabnanny.#851
Conversation
|
Hi @ultimatecoder, you'll also need to remove |
Lib/test/test_tabnanny.py
Outdated
There was a problem hiding this comment.
Just write “captures exceptions” (or change arised → raised).
What is “tabsize”? Did you mean “tabnanny.check”?
Lib/test/test_tabnanny.py
Outdated
There was a problem hiding this comment.
feeded → fed
dipicting → depicting
Lib/test/test_tabnanny.py
Outdated
There was a problem hiding this comment.
feeded → fed
Expacted → Expected
Lib/test/test_tabnanny.py
Outdated
There was a problem hiding this comment.
verifying → verify the
existance → existence
Lib/test/test_tabnanny.py
Outdated
There was a problem hiding this comment.
few → a few [otherwise, the implication is that most of the files have errors: few are error-free]
Lib/test/test_tabnanny.py
Outdated
Lib/test/test_tabnanny.py
Outdated
There was a problem hiding this comment.
quiet mode?
“less” looks wrong, unless you meant “Should display less”
Lib/test/test_tabnanny.py
Outdated
Lib/test/test_tabnanny.py
Outdated
There was a problem hiding this comment.
In Python 3, b"%r" is equivalent to calling the “ascii” function. I expect the test will fail if the file path has non-ASCII characters. It may be better to only test that an error is being reported, but tolerate variations in the message.
Lib/test/test_tabnanny.py
Outdated
There was a problem hiding this comment.
What if the path is non-ASCII? Again, just check the general form of the output and don’t be too specific.
There was a problem hiding this comment.
I don't think this https://github.com/python/cpython/blob/master/Lib/tempfile.py#L144 generates anything Non-ASCII.
There was a problem hiding this comment.
No, but the OS can provide a parent directory for temporary files that has non-ASCII path components. It seems relatively common on Windows that the temporary directory is within a user’s profile, and the profile directory can be a localized non-ASCII name. Top Google result: https://bugzilla.mozilla.org/show_bug.cgi?id=260034.
There was a problem hiding this comment.
Many thanks for affording time for reviewing this. I will agree with you on this point. I have updated code. Will you please review again?
|
Check out the existing patches and reviews you linked. You may be repeating some of the same problems, e.g. CRLF on Windows. |
d66ae89 to
f9b9e5c
Compare
|
@vadmium Many thanks for your comments. I am not native English speaker. I have fixed the mistakes. I have added comments to some comments. Please review my fixes. Thanks! @DimitrisJim Thanks for your comment. I have removed |
f9b9e5c to
d9953b9
Compare
|
Sorry but I don’t have an easy way to see your fixes relative to the old version I reviewed. I’m not really set up to properly review and push stuff with the new Git Hub setup, so I will leave this to someone else, or for another time in the future. |
Lib/test/test_tabnanny.py
Outdated
There was a problem hiding this comment.
Removed this. This is Github glitch.
Lib/test/test_tabnanny.py
Outdated
There was a problem hiding this comment.
Hum, I prefer to write mock.patch, please remove this import
Lib/test/test_tabnanny.py
Outdated
There was a problem hiding this comment.
Please import tempfile and write tempfile.NamedTemporaryFile.
Lib/test/test_tabnanny.py
Outdated
There was a problem hiding this comment.
IMHO this docstring is useless. Usually, we don't comment much tests, they are not intented to end users.
Lib/test/test_tabnanny.py
Outdated
There was a problem hiding this comment.
If you only care of creating a temporary filename, use tempfile.mktemp() and then open() manually the file to create it. You can use open(tmpname, "x") to prevent race conditions.
Lib/test/test_tabnanny.py
Outdated
There was a problem hiding this comment.
Instead of a dict, you can simply use a tuple (args, expected)
There was a problem hiding this comment.
Don't think we should kill the readability by converting it to tuple. How about collections.namedtuple?
There was a problem hiding this comment.
Or How about this way?
tests = [
# (Function arguments , Expected output)
(['first', 'second'], 'first second\n'),
(['first'] , 'first\n'),
([1, 2, 3] , '1 2 3\n'),
([] , '\n')
]
There was a problem hiding this comment.
Keep tests simple:
for args, expected in [
([1], '1'),
]:There was a problem hiding this comment.
Yes, keep them simple. And don't use namedtuples except for keeping backwards-compatibility with an interface that used to take an indexed object and now takes an object with attributes.
Lib/test/test_tabnanny.py
Outdated
There was a problem hiding this comment.
Not sure that this docstring is super useful.
Lib/test/test_tabnanny.py
Outdated
There was a problem hiding this comment.
I don't think that it's worth it to declare one test case to test a single class/function. Try to put most or all tests into a single test case called "TabnannyTestCase".
TestCheck deserves its own test case since it has a setUp() method.
Lib/test/test_tabnanny.py
Outdated
There was a problem hiding this comment.
Please move this list into the method directly.
Lib/test/test_tabnanny.py
Outdated
There was a problem hiding this comment.
Unit tests must have zero side effect: you must save the old verbose value and restore it. Example:
self.addCleanup(setattr, tabnanny, 'verbose', tabnanny.verbose)
tabnanny.verbose = 0
There was a problem hiding this comment.
Aha! a geek way 👍
Lib/test/test_tabnanny.py
Outdated
There was a problem hiding this comment.
No need to make this method private, remove "_" prefix.
Lib/test/test_tabnanny.py
Outdated
There was a problem hiding this comment.
Again, I'm not sure that a long comment is needed for a simple unit test.
There was a problem hiding this comment.
I think it is explaining why the method is here. Suggest a way for improving the docstring.
There was a problem hiding this comment.
At least ditch the whole Arguments section; we don't use that style in the stdlib.
Lib/test/test_tabnanny.py
Outdated
There was a problem hiding this comment.
Who removes the temporary file? I suggest to put create_tmp_python_file() in the test case (or in a base class if it's needed by multiple test cases) and use self.addCleanup(support.unlink, tmpfile) to make sure that the temporary file is removed.
There was a problem hiding this comment.
Adding it to a method will be a poor idea. If I will add it to base class then we will have a base class with one method. Will you accept that?
There was a problem hiding this comment.
Yes, if the method needs to access information that will be on the instance then a class with a single method is fine. But if you aren't reusing it then just inline the function.
vstinner
left a comment
There was a problem hiding this comment.
I like the overall change, but I have a long list of requests :-)
Lib/test/test_tabnanny.py
Outdated
Lib/test/test_tabnanny.py
Outdated
There was a problem hiding this comment.
Move this assert out of the with block.
There was a problem hiding this comment.
We can't move this out.
There was a problem hiding this comment.
Why not? Is tokenize.generate_tokens() lazy (which isn't documented)?
There was a problem hiding this comment.
@brettcannon The tokenize.generate_tokens() is a lazy function (generator). Can you help to identify a way which allows putting assertRaises outside the with? Thanks!
Lib/test/test_tabnanny.py
Outdated
There was a problem hiding this comment.
Use universal_newlines=True to normalize newlines. I also prefer to use text rather than bytes for stdout/stderr.
There was a problem hiding this comment.
I don't think these chain of methods, assert_python_ok -> _assert_python -> run_python_until_end is allowing to pass universal_newlines keyword argument!
Reference: https://github.com/python/cpython/blob/master/Lib/test/support/script_helper.py#L94
Are you suggesting to replace script_helper.assert_python_ok() with subprocess.Popen() here?
Lib/test/test_tabnanny.py
Outdated
There was a problem hiding this comment.
assert_python_ok() already tests that returncode==0.
Lib/test/test_tabnanny.py
Outdated
Lib/test/test_tabnanny.py
Outdated
There was a problem hiding this comment.
For better readability, you can use textwrap.dedent() and a multiline """...""" indented string. See test_faulthandler for examples.
There was a problem hiding this comment.
This is a nice suggestion 👍 Are you expecting these multiline strings to convert into a regular expression? I think this way just looks fine.
Lib/test/test_tabnanny.py
Outdated
There was a problem hiding this comment.
witnesses, not whitenesses
|
To try and help move older pull requests forward, we are going through and backfilling 'awaiting' labels on pull requests that are lacking the label. Based on the current reviews, the best we can tell in an automated fashion is that a core developer requested changes to be made to this pull request. If/when the requested changes have been made, please leave a comment that says, |
|
@brettcannon Many thanks for your comment. I had tried to comment back at confusing points. I think @vstinner lost his interest in my solution. What efforts should I do to make it mergeable? Have a great day! |
|
@ultimatecoder if you think you have addressed all of the comments left by @vstinner then just leave a comment that says |
|
@brettcannon I have done the requested changes. There were few which I would like to discuss with @vstinner according to his availability. He has pointed out few changes on which I am confused about. I have tried to write back as a part of reply comment in response to improvement comment. I hope I made a clear statement about the situation. Thanks! |
|
@brettcannon Many thanks for your comments. I am under little work pressure. Please expect answers/improvements at the end of this week. Thanks! |
|
@brettcannon Reminding you for this PR. All the best for sprints 👍 |
|
@ultimatecoder no need as this is the top of the list for when I actually get time to start reviewing PRs 😉 |
brettcannon
left a comment
There was a problem hiding this comment.
Nothing fundamentally wrong, just some things to help make the tests easier to manage in future years.
Lib/test/test_tabnanny.py
Outdated
There was a problem hiding this comment.
I would use subtests here: https://docs.python.org/3/library/unittest.html#distinguishing-test-iterations-using-subtests
Lib/test/test_tabnanny.py
Outdated
There was a problem hiding this comment.
Use f-strings everywhere. 😄
Lib/test/test_tabnanny.py
Outdated
There was a problem hiding this comment.
To make this easier to read, I would create the context managers outside the with statement:
file1 = TemporaryPyFile(...)
file2 = TemporaryPyFile(...)
with file1 as file1_path, file2 as file2_path:
...There was a problem hiding this comment.
For this specific case, IMHO "file1 = ..." is better.
Lib/test/test_tabnanny.py
Outdated
There was a problem hiding this comment.
Move the TemporaryPyFile instantiation to its own line so you don't have to spread over multiple lines. (Same of the other lines where you were forced to spread a with statement over multiple lines.)
There was a problem hiding this comment.
I looked at the new code and it's fine.
Lib/test/test_tabnanny.py
Outdated
There was a problem hiding this comment.
Pull this up to the next line up (it's okay for it to spill over 80 columns).
Lib/test/test_tabnanny.py
Outdated
There was a problem hiding this comment.
Don't worry too much about the exact output being formatted as it is. For instance, if someone tweaked the grammar of the sentence the test should still pass. Do still check for semantically important info, though, like that the offending line is in the output.
There was a problem hiding this comment.
Maybe the test is too strict, but IMHO we have been too pendantic on this nice PR which has been proposed 3 months ago. tabnanny has currently no test. If the test fails tomorrow, we will just fix the test. No need to write the perfect test here.
Lib/test/test_tabnanny.py
Outdated
There was a problem hiding this comment.
You don't want to tie yourself to exception messages as they do change between versions. Just care about the right exception being raised.
There was a problem hiding this comment.
I agree, but the code does not raise an exception reference: https://github.com/python/cpython/blob/master/Lib/tabnanny.py#L99
What way will be better to assert the working of mentioned function?
Lib/test/test_tabnanny.py
Outdated
There was a problem hiding this comment.
Sub tests would be great here.
|
A Python core developer has requested some changes be made to your pull request before we can consider merging it. If you could please address their requests along with any other requests in other reviews from core developers that would be appreciated. Once you have made the requested changes, please leave a comment on this pull request containing the phrase |
|
@brettcannon I am a bit busy with present work. I am sure, I will not be able to complete during this sprints. But I will be able to improve according to your comments in few days. Thanks for reviewing :) |
|
@ultimatecoder no rush! I'm not expecting to take quite so long to do future reviews as I only need to review relative future changes. |
dcf42e5 to
ebff66b
Compare
vstinner
left a comment
There was a problem hiding this comment.
Please remove Lib/test/.test_tabnanny.py.swo from your PR.
vstinner
left a comment
There was a problem hiding this comment.
Oh, I am sorry, I forgot about your old PR :-( Here is a new review. Your PR is very close to be ready to be merged. Sorry again about the slow review :-(
Lib/test/test_tabnanny.py
Outdated
There was a problem hiding this comment.
Sorry but this style is not compliant with PEP 8, please strip spaces before ",".
Lib/test/test_tabnanny.py
Outdated
There was a problem hiding this comment.
You should always remove the created file.
Lib/test/test_tabnanny.py
Outdated
There was a problem hiding this comment.
You may use:
proc = script_helper.spawn_python('-m', 'tabnanny', *args, text=True)
out, err = proc.communicate()
self.assertEqual(out, stdout)
self.assertEqual(err, stderr)
self.assertEqual(proc.returncode, 0)
text=True normalizes newlines to \n (Unix EOL).
db139c5 to
83083c9
Compare
|
@vstinner Thanks for re-observing this. I am working on the improvements suggested by you and @brettcannon 😃 |
|
@brettcannon I have updated the changes according to your comments. There is one comment in which you mentioned to assert the exception and not the output. I have added a reply to that comment with a reference. I request to provide your input on that. Thanks. |
a2be776 to
e9f48d6
Compare
|
@vstinner I have improved the code according to your suggestion. I request to re-review. |
Lib/test/test_tabnanny.py
Outdated
There was a problem hiding this comment.
I'm not sure that returning True is correct here. I just suggest to remove the "return" line.
There was a problem hiding this comment.
I agree, returning True isn't making sense here. Thanks for commenting.
e9f48d6 to
86b9ad2
Compare
|
@vstinner @brettcannon I have updated the code according to your comments. I request to proceed for further review. Thanks. |
I checked all latest Brett's comments: all fixed
Description: Unit tests for standard module
tabnanny. Tests are added for almost all the functionality excepttabnanny.Whitespaceclass.Reason leaving Whitespace:? I found the module contains mathematical calculations. I will try to understand it first and then write tests for it. I think it will be good to do that in another branch.
Testing strategy: Whitebox
BPOs
https://bugs.python.org/issue19382