diff options
| author | Tim Graham <timograham@gmail.com> | 2018-02-14 09:57:31 -0500 |
|---|---|---|
| committer | Tim Graham <timograham@gmail.com> | 2018-02-15 13:17:37 -0500 |
| commit | e917ea6bec45d7f789ca96a13be15df9521963e1 (patch) | |
| tree | 666f1af2f215a8d67d81c7c1c749f70adc8883a0 /tests/get_or_create | |
| parent | 7ec0fdf62afd565dd9a888300e7e33d0bf3e5fd5 (diff) | |
Fixed #29126 -- Doc'd the behavior of QuerySet.update_or_create() with manually specified pks.
Diffstat (limited to 'tests/get_or_create')
| -rw-r--r-- | tests/get_or_create/tests.py | 13 |
1 files changed, 13 insertions, 0 deletions
diff --git a/tests/get_or_create/tests.py b/tests/get_or_create/tests.py index 60e1ef23f2..1aed318608 100644 --- a/tests/get_or_create/tests.py +++ b/tests/get_or_create/tests.py @@ -444,6 +444,19 @@ class UpdateOrCreateTests(TestCase): self.assertEqual(obj.last_name, 'NotHarrison') +class UpdateOrCreateTestsWithManualPKs(TestCase): + + def test_create_with_duplicate_primary_key(self): + """ + If an existing primary key is specified with different values for other + fields, then IntegrityError is raised and data isn't updated. + """ + ManualPrimaryKeyTest.objects.create(id=1, data='Original') + with self.assertRaises(IntegrityError): + ManualPrimaryKeyTest.objects.update_or_create(id=1, data='Different') + self.assertEqual(ManualPrimaryKeyTest.objects.get(id=1).data, 'Original') + + class UpdateOrCreateTransactionTests(TransactionTestCase): available_apps = ['get_or_create'] |
