1
0
mirror of https://github.com/ansible/awx.git synced 2024-11-01 16:51:11 +03:00

forgot to add new fixtures for jsonbfield fact

This commit is contained in:
Chris Meyers 2016-11-18 11:37:06 -05:00
parent 4a1a3bd1e8
commit ba6ab6f746

View File

@ -0,0 +1,26 @@
import pytest
import six
from jsonbfield.fields import JSONField
from django.core.serializers.json import DjangoJSONEncoder
def dumps(value):
return DjangoJSONEncoder().encode(value)
# Taken from https://github.com/django-extensions/django-extensions/blob/54fe88df801d289882a79824be92d823ab7be33e/django_extensions/db/fields/json.py
def get_db_prep_save(self, value, connection, **kwargs):
"""Convert our JSON object to a string before we save"""
if value is None and self.null:
return None
# default values come in as strings; only non-strings should be
# run through `dumps`
if not isinstance(value, six.string_types):
value = dumps(value)
return value
@pytest.fixture
def monkeypatch_jsonbfield_get_db_prep_save(mocker):
JSONField.get_db_prep_save = get_db_prep_save