I'm writing some test scripts for a django application which relies on django_social_auth for managing user authentication and login (facebook login only).
I'd like to bypass the login portion of django_social_auth - I already have some test users, and I obtain their authentication tokens earlier through other tests.
I shouldn't, technically, need to log my test users in again - the existing, valid, tokens should be sufficient for this test.
How do I machine the django_social_auth system to use my existing copies of the auth tokens, bypassing the user login process?
(I should add that some of the users' data may have been removed from my database between their authentication and the point I run this test at)