-
-
Notifications
You must be signed in to change notification settings - Fork 9.4k
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
#4373, fix possible winreg value type difference #4377
Conversation
Codecov Report
@@ Coverage Diff @@
## master #4377 +/- ##
==========================================
+ Coverage 88.36% 89.05% +0.68%
==========================================
Files 18 18
Lines 2055 2055
==========================================
+ Hits 1816 1830 +14
+ Misses 239 225 -14
Continue to review full report at Codecov.
|
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.
Cool, looks plausible to me. Can you write some tests for each case? It's sufficient to monkeypatch QueryValueEx
for these tests, as we never run on Windows.
It seems that |
tests/test_utils.py
Outdated
return ["1"] # this could be a string (REG_SZ) or a 32-bit number (REG_DWORD) | ||
elif value_name == 'ProxyOverride': | ||
return [override] | ||
|
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.
This is not sufficient, as it has never been used. However, you're right that this never actually tests anything, which isn't great. This was supposed to call should_bypass_proxies
: want to add that call, and then parametrise this test based on the return value of QueryValueEx
with ProxyEnable
?
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.
Let me try adding some real assertions here. Need to find a Windows first, though.
Since we already have multiple parameterized tests, I simply rotate the |
Looks like the tests are failing: mind addressing the test failures? |
Hi @mingyuan-xia the tests are passing but the branch isn't up-to-date with master. If you can fix that up, I think we can finally accept this work. 👍 |
Ok I will pull from the master and please squash my commits into one to make things more concise. |
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.
Great, thanks for this!
No description provided.