1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 52 53 54 55 56 57 58 59 60 61 62 63 64 65 66 67 68 69 70 71 72 73 74 75 76 77 78 79 80 81 82 83 84 85 86 87 88 89 90 91 92 93 94 95 96 97 98 99 100 101 102 103 104 105 106 107 108 109 110 111 112 113 114 115 116 117 118 119 120 121 122 123 124 125 126 127 128 129 130 131 132 133 134 135 136 137 138 139 140 141 142 143 144 145 146 147 148 149 150 151 152 153 154 155 156 157 158 159 160 161 162 163 164
|
from decimal import Decimal
import pytest
from .models import (TestModel, TestModelWithForeignKey, TestModelWithOneToOneField,
SubclassModel, TestModelWithDecimalField)
@pytest.mark.django_db
def test_is_dirty_function():
tm = TestModel.objects.create()
# If the object has just been saved in the db, fields are not dirty
assert tm.get_dirty_fields() == {}
assert not tm.is_dirty()
# As soon as we change a field, it becomes dirty
tm.boolean = False
assert tm.get_dirty_fields() == {'boolean': True}
assert tm.is_dirty()
@pytest.mark.django_db
def test_dirty_fields():
tm = TestModel()
# Initial state is dirty, so should return all fields
assert tm.get_dirty_fields() == {'boolean': True, 'characters': ''}
tm.save()
# Saving them make them not dirty anymore
assert tm.get_dirty_fields() == {}
# Changing values should flag them as dirty again
tm.boolean = False
tm.characters = 'testing'
assert tm.get_dirty_fields() == {
'boolean': True,
'characters': ''
}
# Resetting them to original values should unflag
tm.boolean = True
assert tm.get_dirty_fields() == {
'characters': ''
}
@pytest.mark.django_db
def test_dirty_fields_for_notsaved_pk():
tm = TestModel(id=1)
# Initial state is dirty, so should return all fields
assert tm.get_dirty_fields() == {'id': 1, 'boolean': True, 'characters': ''}
tm.save()
# Saving them make them not dirty anymore
assert tm.get_dirty_fields() == {}
@pytest.mark.django_db
def test_relationship_option_for_foreign_key():
tm1 = TestModel.objects.create()
tm2 = TestModel.objects.create()
tm = TestModelWithForeignKey.objects.create(fkey=tm1)
# Let's change the foreign key value and see what happens
tm.fkey = tm2
# Default dirty check is not taking foreign keys into account
assert tm.get_dirty_fields() == {}
# But if we use 'check_relationships' param, then foreign keys are compared
assert tm.get_dirty_fields(check_relationship=True) == {
'fkey': tm1.pk
}
@pytest.mark.django_db
def test_relationship_option_for_one_to_one_field():
tm1 = TestModel.objects.create()
tm2 = TestModel.objects.create()
tm = TestModelWithOneToOneField.objects.create(o2o=tm1)
# Let's change the one to one field and see what happens
tm.o2o = tm2
# Default dirty check is not taking onetoone fields into account
assert tm.get_dirty_fields() == {}
# But if we use 'check_relationships' param, then one to one fields are compared
assert tm.get_dirty_fields(check_relationship=True) == {
'o2o': tm1.pk
}
@pytest.mark.django_db
def test_non_local_fields():
subclass = SubclassModel.objects.create(characters='foo')
subclass.characters = 'spam'
assert subclass.get_dirty_fields() == {'characters': 'foo'}
@pytest.mark.django_db
def test_decimal_field_correctly_managed():
# Non regression test case for bug:
# https://github.com/romgar/django-dirtyfields/issues/4
tm = TestModelWithDecimalField.objects.create(decimal_field=Decimal(2.00))
tm.decimal_field = 2.0
assert tm.get_dirty_fields() == {}
tm.decimal_field = u"2.00"
assert tm.get_dirty_fields() == {}
@pytest.mark.django_db
def test_deferred_fields():
TestModel.objects.create()
qs = TestModel.objects.only('boolean')
tm = qs[0]
tm.boolean = False
assert tm.get_dirty_fields() == {'boolean': True}
tm.characters = 'foo'
# 'characters' is not tracked as it is deferred
assert tm.get_dirty_fields() == {'boolean': True}
def test_validationerror():
# Initialize the model with an invalid value
tm = TestModel(boolean=None)
# Should not raise ValidationError
assert tm.get_dirty_fields() == {'boolean': None, 'characters': ''}
tm.boolean = False
assert tm.get_dirty_fields() == {'boolean': False, 'characters': ''}
@pytest.mark.django_db
def test_verbose_mode():
tm = TestModel.objects.create()
tm.boolean = False
assert tm.get_dirty_fields(verbose=True) == {
'boolean': {'saved': True, 'current': False}
}
@pytest.mark.django_db
def test_verbose_mode_on_adding():
tm = TestModel()
assert tm.get_dirty_fields(verbose=True) == {
'boolean': {'saved': None, 'current': True},
'characters': {'saved': None, 'current': u''}
}
|