Skip to content
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

Merged
merged 8 commits into from
Nov 20, 2017

Conversation

mingyuan-xia
Copy link
Contributor

No description provided.

@codecov-io
Copy link

codecov-io commented Nov 7, 2017

Codecov Report

Merging #4377 into master will increase coverage by 0.68%.
The diff coverage is 100%.

Impacted file tree graph

@@            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
Impacted Files Coverage Δ
requests/utils.py 86.72% <100%> (+3.31%) ⬆️

Continue to review full report at Codecov.

Legend - Click here to learn more
Δ = absolute <relative> (impact), ø = not affected, ? = missing data
Powered by Codecov. Last update e4fc353...7e1fb02. Read the comment docs.

Copy link
Member

@Lukasa Lukasa left a 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.

@mingyuan-xia
Copy link
Contributor Author

It seems that test_should_bypass_proxies_win_registry only monkeypatches WinReg but never tests anything (no assert~). Will adding another monkeypatch there be sufficient?

return ["1"] # this could be a string (REG_SZ) or a 32-bit number (REG_DWORD)
elif value_name == 'ProxyOverride':
return [override]

Copy link
Member

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?

Copy link
Contributor Author

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.

@mingyuan-xia
Copy link
Contributor Author

mingyuan-xia commented Nov 18, 2017

Since we already have multiple parameterized tests, I simply rotate the ProxyEnable Windows registry key type per test to simulate the case. Also I have added an assertion to test the proxy selection as it was supposed to be there.

@Lukasa
Copy link
Member

Lukasa commented Nov 18, 2017

Looks like the tests are failing: mind addressing the test failures?

@sigmavirus24
Copy link
Contributor

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. 👍

@mingyuan-xia
Copy link
Contributor Author

Ok I will pull from the master and please squash my commits into one to make things more concise.

Copy link
Member

@Lukasa Lukasa left a 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!

@Lukasa Lukasa merged commit acd2645 into psf:master Nov 20, 2017
@github-actions github-actions bot locked as resolved and limited conversation to collaborators Sep 4, 2021
Sign up for free to subscribe to this conversation on GitHub. Already have an account? Sign in.
Labels
None yet
Projects
None yet
Development

Successfully merging this pull request may close these issues.

4 participants