35 lines
1.2 KiB
Python
35 lines
1.2 KiB
Python
# -*- coding: utf-8 -*-
|
|
from allauth.socialaccount.providers.exist.provider import ExistProvider
|
|
from allauth.socialaccount.tests import OAuth2TestsMixin
|
|
from allauth.tests import MockedResponse, TestCase
|
|
|
|
|
|
class ExistTests(OAuth2TestsMixin, TestCase):
|
|
provider_id = ExistProvider.id
|
|
|
|
def get_mocked_response(self):
|
|
return MockedResponse(
|
|
200,
|
|
"""
|
|
{
|
|
"id": 1,
|
|
"username": "josh",
|
|
"first_name": "Josh",
|
|
"last_name": "Sharp",
|
|
"bio": "I made this thing you're using.",
|
|
"url": "http://hellocode.co/",
|
|
"avatar": "https://exist.io/static/media/avatars/josh_2.png",
|
|
"timezone": "Australia/Melbourne",
|
|
"local_time": "2020-07-31T22:33:49.359+10:00",
|
|
"private": false,
|
|
"imperial_units": false,
|
|
"imperial_distance": false,
|
|
"imperial_weight": false,
|
|
"imperial_energy": false,
|
|
"imperial_liquid": false,
|
|
"imperial_temperature": false,
|
|
"attributes": []
|
|
}
|
|
""",
|
|
)
|