This commit is contained in:
Piotr Zalewa 2012-03-08 10:44:27 +01:00
Родитель f3aae6ab19
Коммит cb78712b8e
2 изменённых файлов: 6 добавлений и 4 удалений

Просмотреть файл

@ -115,12 +115,15 @@ class AMOAuthentication:
return AMOAuthentication.fetch_amo_user(email)
@staticmethod
def fetch_amo_user_api(email):
amo = AMOOAuth()
def fetch_amo_user(email):
amo = AMOOAuth(domain=settings.AMOOAUTH_DOMAIN,
port=settings.AMOOAUTH_PORT,
protocol=settings.AMOOAUTH_PROTOCOL,
prefix=settings.AMOOAUTH_PREFIX)
return amo.get_user_by_email(email) or None
@staticmethod
def fetch_amo_user(email):
def fetch_amo_user_old(email):
columns = ('id', 'email', 'username', 'password',
'display_name', 'homepage')
auth_cursor = get_amo_cursor()

Просмотреть файл

@ -40,7 +40,6 @@ class AuthTest(TestCase):
@staticmethod
def test_get_user():
raise SkipTest()
AMOOAuth._send = Mock(return_value={
"username": "some",
"display_name": "Some User",