Hi,

I'm writing tests for an application, and want to test cases where
IntegrityError's get raised.  However, whenever an IntegrityError
comes up, I can't get the test client to recover -- it always fails
with:

InternalError: current transaction is aborted, commands ignored until
end of transaction block

I've tried issuing "transaction.rollback()" after catching the
IntegrityError in my views, and using various different decorators
such as @transaction.commit_on_success and
@transaction.commit_manually.  Nothing prevents the InternalError in
the test client.  I tried calling "connection._rollback()", which
seems to reset the test, clearing all data and fixtures that have been
installed for the test.

What is the proper way to "reset" or "rollback" the connection in a
test case after an IntegrityError has been raised?  This only seems to
be an issue with PostgresSQL; in sqlite the "current transaction is
aborted, commands ignored" doesn't seem to come up.

cheers,
Charlie DeTar
--~--~---------~--~----~------------~-------~--~----~
You received this message because you are subscribed to the Google Groups 
"Django users" group.
To post to this group, send email to django-users@googlegroups.com
To unsubscribe from this group, send email to 
django-users+unsubscr...@googlegroups.com
For more options, visit this group at 
http://groups.google.com/group/django-users?hl=en
-~----------~----~----~----~------~----~------~--~---

Reply via email to