Skip to content

Commit

Permalink
Merge pull request django#2553 from liavkoren-vmfarms/ticket_18586
Browse files Browse the repository at this point in the history
Ticket 18586
  • Loading branch information
jphalip committed Apr 14, 2014
2 parents 0bcc92c + 9b29a55 commit 401be8a
Showing 1 changed file with 66 additions and 27 deletions.
93 changes: 66 additions & 27 deletions tests/get_or_create/tests.py
Original file line number Diff line number Diff line change
Expand Up @@ -13,11 +13,12 @@

class GetOrCreateTests(TestCase):

def test_get_or_create(self):
p = Person.objects.create(
def setUp(self):
self.lennon = Person.objects.create(
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(
first_name="John", last_name="Lennon", defaults={
"birthday": date(1940, 10, 9)
Expand All @@ -26,6 +27,8 @@ def test_get_or_create(self):
self.assertFalse(created)
self.assertEqual(Person.objects.count(), 1)


def test_get_or_create_method_with_create(self):
p, created = Person.objects.get_or_create(
first_name='George', last_name='Harrison', defaults={
'birthday': date(1943, 2, 25)
Expand All @@ -34,44 +37,70 @@ def test_get_or_create(self):
self.assertTrue(created)
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={
'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.assertEqual(Person.objects.count(), 2)

# If you don't specify a value or default value for all required
# fields, you will get an error.
def test_get_or_create_invalid_params(self):
"""
If you don't specify a value or default value for all required
fields, you will get an error.
"""
self.assertRaises(
IntegrityError,
Person.objects.get_or_create, first_name="Tom", last_name="Smith"
)

# 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")
class GetOrCreateTestsWithManualPKs(TestCase):

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(
IntegrityError,
ManualPrimaryKeyTest.objects.get_or_create, id=1, data="Different"
)
self.assertEqual(ManualPrimaryKeyTest.objects.get(id=1).data, "Original")

# get_or_create should raise IntegrityErrors with the full traceback.
# 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
# the actual traceback. Refs #16340.
def test_get_or_create_raises_IntegrityError_plus_traceback(self):
"""
get_or_create should raise IntegrityErrors with the full traceback.
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:
ManualPrimaryKeyTest.objects.get_or_create(id=1, data="Different")
except IntegrityError:
formatted_traceback = traceback.format_exc()
self.assertIn(str('obj.save'), formatted_traceback)

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:
# Hide warnings when broken data is saved with a warning (MySQL).
with warnings.catch_warnings():
Expand All @@ -86,7 +115,9 @@ def test_savepoint_rollback(self):
self.skipTest("This backend accepts broken utf-8.")

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:
DefaultPerson.objects.get_or_create()
except AssertionError:
Expand All @@ -99,9 +130,11 @@ class GetOrCreateTransactionTests(TransactionTestCase):
available_apps = ['get_or_create']

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,
# otherwise the exception is never raised.
"""
Regression test for #15117. Requires a TransactionTestCase on
databases that delay integrity checks until the end of transactions,
otherwise the exception is never raised.
"""
try:
Profile.objects.get_or_create(person=Person(id=1))
except IntegrityError:
Expand Down Expand Up @@ -174,14 +207,18 @@ def test_create_twice(self):
self.assertFalse(created)

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,
Person.objects.update_or_create, first_name="Tom", last_name="Smith")

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")
self.assertRaises(
IntegrityError,
Expand All @@ -190,10 +227,12 @@ def test_manual_primary_key_test(self):
self.assertEqual(ManualPrimaryKeyTest.objects.get(id=1).data, "Original")

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.
# We cannot use assertRaises/assertRaises here because we need to inspect
# the actual traceback. Refs #16340.
"""
update_or_create should raise IntegrityErrors with the full traceback.
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
the actual traceback. Refs #16340.
"""
try:
ManualPrimaryKeyTest.objects.update_or_create(id=1, data="Different")
except IntegrityError:
Expand Down

0 comments on commit 401be8a

Please sign in to comment.