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

Support setting multiple request headers with same name #74

Open
svanoort opened this issue Sep 29, 2015 · 1 comment
Open

Support setting multiple request headers with same name #74

svanoort opened this issue Sep 29, 2015 · 1 comment

Comments

@svanoort
Copy link
Owner

Currently headers on requests are parsed and stored into a dictionary of key, value pairs.

It would be nice to convert that to a list of (key,value) tuples to support setting duplicate headers (example cookie values).

This requires changing the tests & test_tests classes, changing how headers are parsed, stored and passed to pycurl. Which sounds like a lot but is, in fact, super-duper easy.

if head: #Convert headers dictionary to list of header entries, tested and working
            headers = [str(headername)+':'+str(headervalue) for headername, headervalue in head.items()]
# BECOMES
if head: #Convert headers dictionary to list of header entries, tested and working
            headers = [str(headername)+':'+str(headervalue) for (headername, headervalue) in head]

Note that for back-compatibility, we need to support still receiving a yaml dictionary of header values for test config.

@svanoort svanoort modified the milestones: Release 1.6.0, Misc Enhancements Oct 3, 2015
@svanoort svanoort changed the title Support setting multiple request headers Support setting multiple request headers with same name Oct 6, 2015
@svanoort
Copy link
Owner Author

Blocked by the use of flatten_dicts in the test parsing logic. sigh. Depends on parsing refactors in: #75

Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment
Projects
None yet
Development

No branches or pull requests

1 participant