I am having trouble loading Django fixtures into my MySQL database because of contenttypes conflicts. First I tried dumping the data from only my app like this:

./manage.py dumpdata escola > fixture.json

but I kept getting missing foreign key problems, because my app "escola" uses tables from other applications. I kept adding additional apps until I got to this:

./manage.py dumpdata contenttypes auth escola > fixture.json

Now the problem is the following constraint violation when I try to load the data as a test fixture:

IntegrityError: (1062, "Duplicate entry 'escola-t23aluno' for key 2")

It seems the problem is that Django is trying to dynamically recreate contenttypes with different primary key values that conflict with the primary key values from the fixture. This appears to be the same as bug documented here: http://code.djangoproject.com/ticket/7052

The problem is that the recommended workaround is to dump the contenttypes app which I'm already doing!? What gives? If it makes any difference I do have some custom model permissions as documented here: http://docs.djangoproject.com/en/dev/ref/models/options/#permissions

link|improve this question

75% accept rate
feedback

6 Answers

Yes, this is really irritating. For a while I worked around it by doing a "manage.py reset" on the contenttypes app prior to loading the fixture (to get rid of the automatically-generated contenttypes data that differed from the dumped version). That worked, but eventually I got sick of the hassles and abandoned fixtures entirely in favor of straight SQL dumps (of course, then you lose DB portability).

link|improve this answer
1  
I was running into this too, resetting the contenttypes app worked for me as well. Thanks for the tip! – Beau Jul 10 '09 at 15:16
How did you reset them? In test case class? Give me an example please – Oleg Tarasenko Sep 7 '09 at 14:25
3  
I don't use fixtures for unittests, I generally create test data using the ORM in a setup() method because it's easier to keep in sync with the tests. So I never had to do this in a TestCase class, though I'm sure if you poke around in the code for Django's TestCase class you could figure out how to make a reset happen post syncdb and prior to fixture loading in a subclass. For me it was just "./manage.py reset contenttypes" in a bash script prior to "./manage.py loaddata my_fixture". – Carl Meyer Sep 8 '09 at 17:47
This works great! Thanks. – Brandon Rhodes Nov 20 '09 at 14:16
feedback

Try skipping contenttypes when creating fixture:

./manage.py dumpdata --exclude contenttypes > fixture.json

It worked for me in a similar situation for unit tests, your insight regarding the contenttypes really helped!

link|improve this answer
feedback

Use --natural flag with manage.py dumpdata command. It tells django to dump natural keys instead of primary. Your dump will contain (app_label, model_name) instead of primary id. This will make your fixtures portable and even usefull.

Read more: natural keys section in "serializing django objects"

link|improve this answer
I am using this to get natural keys for a content_type attribute, but I get this error when trying to load back the fixtures. TypeError: string indices must be integers, not str Any idea why ? – philgo20 Feb 8 '11 at 15:46
feedback

I have resolved this issue in my test cases by resetting the contenttypes app from the unit test prior to loading my dump file. Carl suggested this already using the manage.py command and I do the same thing only using the call_command method:

>>> from django.core import management
>>> management.call_command("flush", verbosity=0, interactive=False)
>>> management.call_command("reset", "contenttypes", verbosity=0, interactive=False)
>>> management.call_command("loaddata", "full_test_data.json", verbosity=0)

My full_test_data.json fixture contains the contenttypes app dump that corresponds to the rest of the test data. By resetting the app before loading, it prevents the duplicate key IntegrityError.

link|improve this answer
high time you earned a +1 for this – JCotton May 9 '11 at 23:40
feedback

I'm going to give another possible answer that I just figured out. Maybe it'll help the OP, maybe it'll help somebody else.

I've got a many-to-many relationship table. It has a primary key and the two foreign keys to the other tables. I found that if I have an entry in the fixture whose two foreign keys are the same as another entry already in the table with a different pk, it will fail. M2M relationship tables have a "unique together" for the two foreign keys.

So, if it's a M2M relationship that is breaking, look at the foreign keys it's adding, look at your database to see if that pair of FKs are already listed under a different PK.

link|improve this answer
feedback

It's really, really annoying .. I get bitten by this every single time.

I tried to dumpdata with --exclude contenttypes and --natural, I always get problems..

What works best for me is simply doing a truncate table django_content_type; after the syncdb and THEN load the data.

Of course for initial_data.json autoloading you're fallball.

link|improve this answer
feedback

Your Answer

 
or
required, but never shown

Not the answer you're looking for? Browse other questions tagged or ask your own question.