Merge pull request #2553 from liavkoren-vmfarms/ticket_18586
Ticket 18586
This commit is contained in:
commit
401be8a206
|
@ -13,11 +13,12 @@ from .models import DefaultPerson, Person, ManualPrimaryKeyTest, Profile, Tag, T
|
||||||
|
|
||||||
class GetOrCreateTests(TestCase):
|
class GetOrCreateTests(TestCase):
|
||||||
|
|
||||||
def test_get_or_create(self):
|
def setUp(self):
|
||||||
p = Person.objects.create(
|
self.lennon = Person.objects.create(
|
||||||
first_name='John', last_name='Lennon', birthday=date(1940, 10, 9)
|
first_name='John', last_name='Lennon', birthday=date(1940, 10, 9)
|
||||||
)
|
)
|
||||||
|
|
||||||
|
def test_get_or_create_method_with_get(self):
|
||||||
p, created = Person.objects.get_or_create(
|
p, created = Person.objects.get_or_create(
|
||||||
first_name="John", last_name="Lennon", defaults={
|
first_name="John", last_name="Lennon", defaults={
|
||||||
"birthday": date(1940, 10, 9)
|
"birthday": date(1940, 10, 9)
|
||||||
|
@ -26,6 +27,8 @@ class GetOrCreateTests(TestCase):
|
||||||
self.assertFalse(created)
|
self.assertFalse(created)
|
||||||
self.assertEqual(Person.objects.count(), 1)
|
self.assertEqual(Person.objects.count(), 1)
|
||||||
|
|
||||||
|
|
||||||
|
def test_get_or_create_method_with_create(self):
|
||||||
p, created = Person.objects.get_or_create(
|
p, created = Person.objects.get_or_create(
|
||||||
first_name='George', last_name='Harrison', defaults={
|
first_name='George', last_name='Harrison', defaults={
|
||||||
'birthday': date(1943, 2, 25)
|
'birthday': date(1943, 2, 25)
|
||||||
|
@ -34,35 +37,59 @@ class GetOrCreateTests(TestCase):
|
||||||
self.assertTrue(created)
|
self.assertTrue(created)
|
||||||
self.assertEqual(Person.objects.count(), 2)
|
self.assertEqual(Person.objects.count(), 2)
|
||||||
|
|
||||||
# If we execute the exact same statement, it won't create a Person.
|
|
||||||
p, created = Person.objects.get_or_create(
|
def test_get_or_create_redundant_instance(self):
|
||||||
|
"""
|
||||||
|
If we execute the exact same statement twice, the second time,
|
||||||
|
it won't create a Person.
|
||||||
|
"""
|
||||||
|
george, created = Person.objects.get_or_create(
|
||||||
first_name='George', last_name='Harrison', defaults={
|
first_name='George', last_name='Harrison', defaults={
|
||||||
'birthday': date(1943, 2, 25)
|
'birthday': date(1943, 2, 25)
|
||||||
}
|
}
|
||||||
)
|
)
|
||||||
|
evil_george, created = Person.objects.get_or_create(
|
||||||
|
first_name='George', last_name='Harrison', defaults={
|
||||||
|
'birthday': date(1943, 2, 25)
|
||||||
|
}
|
||||||
|
)
|
||||||
|
|
||||||
self.assertFalse(created)
|
self.assertFalse(created)
|
||||||
self.assertEqual(Person.objects.count(), 2)
|
self.assertEqual(Person.objects.count(), 2)
|
||||||
|
|
||||||
# If you don't specify a value or default value for all required
|
def test_get_or_create_invalid_params(self):
|
||||||
# fields, you will get an error.
|
"""
|
||||||
|
If you don't specify a value or default value for all required
|
||||||
|
fields, you will get an error.
|
||||||
|
"""
|
||||||
self.assertRaises(
|
self.assertRaises(
|
||||||
IntegrityError,
|
IntegrityError,
|
||||||
Person.objects.get_or_create, first_name="Tom", last_name="Smith"
|
Person.objects.get_or_create, first_name="Tom", last_name="Smith"
|
||||||
)
|
)
|
||||||
|
|
||||||
# If you specify an existing primary key, but different other fields,
|
class GetOrCreateTestsWithManualPKs(TestCase):
|
||||||
# then you will get an error and data will not be updated.
|
|
||||||
ManualPrimaryKeyTest.objects.create(id=1, data="Original")
|
def setUp(self):
|
||||||
|
self.first_pk = ManualPrimaryKeyTest.objects.create(id=1, data="Original")
|
||||||
|
|
||||||
|
def test_create_with_duplicate_primary_key(self):
|
||||||
|
"""
|
||||||
|
If you specify an existing primary key, but different other fields,
|
||||||
|
then you will get an error and data will not be updated.
|
||||||
|
"""
|
||||||
self.assertRaises(
|
self.assertRaises(
|
||||||
IntegrityError,
|
IntegrityError,
|
||||||
ManualPrimaryKeyTest.objects.get_or_create, id=1, data="Different"
|
ManualPrimaryKeyTest.objects.get_or_create, id=1, data="Different"
|
||||||
)
|
)
|
||||||
self.assertEqual(ManualPrimaryKeyTest.objects.get(id=1).data, "Original")
|
self.assertEqual(ManualPrimaryKeyTest.objects.get(id=1).data, "Original")
|
||||||
|
|
||||||
# get_or_create should raise IntegrityErrors with the full traceback.
|
def test_get_or_create_raises_IntegrityError_plus_traceback(self):
|
||||||
# This is tested by checking that a known method call is in the traceback.
|
"""
|
||||||
# We cannot use assertRaises/assertRaises here because we need to inspect
|
get_or_create should raise IntegrityErrors with the full traceback.
|
||||||
# the actual traceback. Refs #16340.
|
This is tested by checking that a known method call is in the traceback.
|
||||||
|
We cannot use assertRaises here because we need to inspect
|
||||||
|
the actual traceback. Refs #16340.
|
||||||
|
"""
|
||||||
try:
|
try:
|
||||||
ManualPrimaryKeyTest.objects.get_or_create(id=1, data="Different")
|
ManualPrimaryKeyTest.objects.get_or_create(id=1, data="Different")
|
||||||
except IntegrityError:
|
except IntegrityError:
|
||||||
|
@ -70,8 +97,10 @@ class GetOrCreateTests(TestCase):
|
||||||
self.assertIn(str('obj.save'), formatted_traceback)
|
self.assertIn(str('obj.save'), formatted_traceback)
|
||||||
|
|
||||||
def test_savepoint_rollback(self):
|
def test_savepoint_rollback(self):
|
||||||
# Regression test for #20463: the database connection should still be
|
"""
|
||||||
# usable after a DataError or ProgrammingError in .get_or_create().
|
Regression test for #20463: the database connection should still be
|
||||||
|
usable after a DataError or ProgrammingError in .get_or_create().
|
||||||
|
"""
|
||||||
try:
|
try:
|
||||||
# Hide warnings when broken data is saved with a warning (MySQL).
|
# Hide warnings when broken data is saved with a warning (MySQL).
|
||||||
with warnings.catch_warnings():
|
with warnings.catch_warnings():
|
||||||
|
@ -86,7 +115,9 @@ class GetOrCreateTests(TestCase):
|
||||||
self.skipTest("This backend accepts broken utf-8.")
|
self.skipTest("This backend accepts broken utf-8.")
|
||||||
|
|
||||||
def test_get_or_create_empty(self):
|
def test_get_or_create_empty(self):
|
||||||
# Regression test for #16137: get_or_create does not require kwargs.
|
"""
|
||||||
|
Regression test for #16137: get_or_create does not require kwargs.
|
||||||
|
"""
|
||||||
try:
|
try:
|
||||||
DefaultPerson.objects.get_or_create()
|
DefaultPerson.objects.get_or_create()
|
||||||
except AssertionError:
|
except AssertionError:
|
||||||
|
@ -99,9 +130,11 @@ class GetOrCreateTransactionTests(TransactionTestCase):
|
||||||
available_apps = ['get_or_create']
|
available_apps = ['get_or_create']
|
||||||
|
|
||||||
def test_get_or_create_integrityerror(self):
|
def test_get_or_create_integrityerror(self):
|
||||||
# Regression test for #15117. Requires a TransactionTestCase on
|
"""
|
||||||
# databases that delay integrity checks until the end of transactions,
|
Regression test for #15117. Requires a TransactionTestCase on
|
||||||
# otherwise the exception is never raised.
|
databases that delay integrity checks until the end of transactions,
|
||||||
|
otherwise the exception is never raised.
|
||||||
|
"""
|
||||||
try:
|
try:
|
||||||
Profile.objects.get_or_create(person=Person(id=1))
|
Profile.objects.get_or_create(person=Person(id=1))
|
||||||
except IntegrityError:
|
except IntegrityError:
|
||||||
|
@ -174,14 +207,18 @@ class UpdateOrCreateTests(TestCase):
|
||||||
self.assertFalse(created)
|
self.assertFalse(created)
|
||||||
|
|
||||||
def test_integrity(self):
|
def test_integrity(self):
|
||||||
# If you don't specify a value or default value for all required
|
"""
|
||||||
# fields, you will get an error.
|
If you don't specify a value or default value for all required
|
||||||
|
fields, you will get an error.
|
||||||
|
"""
|
||||||
self.assertRaises(IntegrityError,
|
self.assertRaises(IntegrityError,
|
||||||
Person.objects.update_or_create, first_name="Tom", last_name="Smith")
|
Person.objects.update_or_create, first_name="Tom", last_name="Smith")
|
||||||
|
|
||||||
def test_manual_primary_key_test(self):
|
def test_manual_primary_key_test(self):
|
||||||
# If you specify an existing primary key, but different other fields,
|
"""
|
||||||
# then you will get an error and data will not be updated.
|
If you specify an existing primary key, but different other fields,
|
||||||
|
then you will get an error and data will not be updated.
|
||||||
|
"""
|
||||||
ManualPrimaryKeyTest.objects.create(id=1, data="Original")
|
ManualPrimaryKeyTest.objects.create(id=1, data="Original")
|
||||||
self.assertRaises(
|
self.assertRaises(
|
||||||
IntegrityError,
|
IntegrityError,
|
||||||
|
@ -190,10 +227,12 @@ class UpdateOrCreateTests(TestCase):
|
||||||
self.assertEqual(ManualPrimaryKeyTest.objects.get(id=1).data, "Original")
|
self.assertEqual(ManualPrimaryKeyTest.objects.get(id=1).data, "Original")
|
||||||
|
|
||||||
def test_error_contains_full_traceback(self):
|
def test_error_contains_full_traceback(self):
|
||||||
# update_or_create should raise IntegrityErrors with the full traceback.
|
"""
|
||||||
# This is tested by checking that a known method call is in the traceback.
|
update_or_create should raise IntegrityErrors with the full traceback.
|
||||||
# We cannot use assertRaises/assertRaises here because we need to inspect
|
This is tested by checking that a known method call is in the traceback.
|
||||||
# the actual traceback. Refs #16340.
|
We cannot use assertRaises/assertRaises here because we need to inspect
|
||||||
|
the actual traceback. Refs #16340.
|
||||||
|
"""
|
||||||
try:
|
try:
|
||||||
ManualPrimaryKeyTest.objects.update_or_create(id=1, data="Different")
|
ManualPrimaryKeyTest.objects.update_or_create(id=1, data="Different")
|
||||||
except IntegrityError:
|
except IntegrityError:
|
||||||
|
|
Loading…
Reference in New Issue