-
Notifications
You must be signed in to change notification settings - Fork 767
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Fixing issues with setting headers on py2
- Loading branch information
Showing
5 changed files
with
108 additions
and
7 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,43 @@ | ||
# Copyright (C) 2016 ycmd contributors. | ||
# | ||
# This file is part of ycmd. | ||
# | ||
# ycmd is free software: you can redistribute it and/or modify | ||
# it under the terms of the GNU General Public License as published by | ||
# the Free Software Foundation, either version 3 of the License, or | ||
# (at your option) any later version. | ||
# | ||
# ycmd is distributed in the hope that it will be useful, | ||
# but WITHOUT ANY WARRANTY; without even the implied warranty of | ||
# MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the | ||
# GNU General Public License for more details. | ||
# | ||
# You should have received a copy of the GNU General Public License | ||
# along with ycmd. If not, see <http://www.gnu.org/licenses/>. | ||
|
||
from __future__ import unicode_literals | ||
from __future__ import print_function | ||
from __future__ import division | ||
from __future__ import absolute_import | ||
from future import standard_library | ||
standard_library.install_aliases() | ||
from builtins import * # noqa | ||
|
||
from future.utils import PY2 | ||
from ycmd.utils import ToBytes, ToUnicode | ||
import bottle | ||
|
||
|
||
# Bottle.py is stupid when it comes to bytes vs unicode so we have to carefully | ||
# conform to its stupidity when setting headers. | ||
# Bottle docs state that the response.headers dict-like object stores keys and | ||
# values as bytes on py2 and unicode on py3. What it _actually_ does is store | ||
# keys in this variable state while values are always unicode (on both py2 and | ||
# py3). | ||
# Both the documented and actual behavior are dumb and cause needless problems. | ||
# Bottle should just consistently store unicode objects on both Python versions, | ||
# making life easier for codebases that work across versions, thus preventing | ||
# tracebacks in the depths of WSGI server frameworks. | ||
def SetResponseHeader( name, value ): | ||
name = ToBytes( name ) if PY2 else ToUnicode( name ) | ||
bottle.response.set_header( name, ToUnicode( value ) ) |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,55 @@ | ||
# Copyright (C) 2016 ycmd contributors. | ||
# | ||
# This file is part of ycmd. | ||
# | ||
# ycmd is free software: you can redistribute it and/or modify | ||
# it under the terms of the GNU General Public License as published by | ||
# the Free Software Foundation, either version 3 of the License, or | ||
# (at your option) any later version. | ||
# | ||
# ycmd is distributed in the hope that it will be useful, | ||
# but WITHOUT ANY WARRANTY; without even the implied warranty of | ||
# MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the | ||
# GNU General Public License for more details. | ||
# | ||
# You should have received a copy of the GNU General Public License | ||
# along with ycmd. If not, see <http://www.gnu.org/licenses/>. | ||
|
||
# Intentionally not importing unicode_literals! | ||
from __future__ import print_function | ||
from __future__ import division | ||
from __future__ import absolute_import | ||
from future import standard_library | ||
standard_library.install_aliases() | ||
from builtins import * # noqa | ||
|
||
from future.utils import PY2 | ||
from nose.tools import eq_ | ||
from mock import patch, call | ||
from ycmd import bottle_utils | ||
import bottle | ||
|
||
|
||
if PY2: | ||
@patch( 'bottle.response' ) | ||
def SetResponseHeader_Py2CorrectTypesWithStr_test( *args ): | ||
bottle_utils.SetResponseHeader( 'foo', 'bar' ) | ||
eq_( bottle.response.set_header.call_args, call( 'foo', u'bar' ) ) | ||
|
||
|
||
@patch( 'bottle.response' ) | ||
def SetResponseHeader_Py2CorrectTypesWithUnicode_test( *args ): | ||
bottle_utils.SetResponseHeader( u'foo', u'bar' ) | ||
eq_( bottle.response.set_header.call_args, call( 'foo', u'bar' ) ) | ||
|
||
else: | ||
@patch( 'bottle.response' ) | ||
def SetResponseHeader_Py3CorrectTypesWithBytes_test( *args ): | ||
bottle_utils.SetResponseHeader( b'foo', b'bar' ) | ||
eq_( bottle.response.set_header.call_args, call( u'foo', u'bar' ) ) | ||
|
||
|
||
@patch( 'bottle.response' ) | ||
def SetResponseHeader_Py3CorrectTypesWithUnicode_test( *args ): | ||
bottle_utils.SetResponseHeader( u'foo', u'bar' ) | ||
eq_( bottle.response.set_header.call_args, call( u'foo', u'bar' ) ) |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters