Browse Source

Fix bug related to `text` field

Previously under python 2.x the text field allowed through values which
would not be turned into a string. This is invalid as all output should
be a valid textual string. This commit fixes that behavior to properly
cast the value to a string in all cases.
pull/93/head
andrei 7 years ago
parent
commit
65d651d3af
No known key found for this signature in database GPG Key ID: 4D2A02C7D500E9D9
  1. 4
      disco/types/base.py
  2. 13
      tests/types/base.py

4
disco/types/base.py

@ -224,9 +224,7 @@ def text(obj):
if six.PY2: if six.PY2:
if isinstance(obj, str): if isinstance(obj, str):
return obj.decode('utf-8') return obj.decode('utf-8')
return obj return six.text_type(obj)
else:
return str(obj)
def with_equality(field): def with_equality(field):

13
tests/types/base.py

@ -1,6 +1,6 @@
import pytest import pytest
from disco.types.base import Model, Field, cached_property from disco.types.base import Model, Field, cached_property, text
@pytest.fixture @pytest.fixture
@ -39,3 +39,14 @@ def test_defaults():
model = TestModel() model = TestModel()
assert model.a is None assert model.a is None
assert model.b == 0 assert model.b == 0
def test_text_casting():
class TestModel(Model):
a = Field(text)
model = TestModel({'a': 1})
assert model.a == '1'
model = TestModel({'a': {}})
assert model.a == '{}'

Loading…
Cancel
Save