1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 52 53 54 55 56 57 58 59 60 61 62 63 64 65 66 67 68 69 70 71 72 73 74 75 76 77 78 79 80 81 82 83 84 85 86 87 88 89 90 91 92 93 94 95 96 97 98 99 100 101 102 103 104 105 106 107 108 109 110 111 112 113 114 115 116 117 118 119 120 121 122 123 124 125 126 127 128 129 130 131 132 133 134 135 136 137 138 139 140 141 142 143 144 145 146 147 148 149 150 151 152 153 154 155 156 157 158 159 160 161 162 163 164 165 166 167 168 169 170 171 172 173 174 175 176 177 178 179 180 181 182 183 184 185 186 187 188 189 190 191 192 193 194 195 196 197 198 199 200 201 202 203 204 205 206 207 208 209 210 211 212 213 214 215 216 217 218 219 220 221 222 223 224 225 226 227 228 229 230 231 232 233 234 235 236 237 238 239 240 241 242 243 244 245
|
import json
from datetime import datetime, timedelta, timezone
import aiounittest
from aiohttp import ClientError, ClientSession
from aioresponses import aioresponses
from dateutil.tz import tzutc
from yalexs.api_async import ApiAsync
from yalexs.api_common import (
API_GET_HOUSES_URL,
API_GET_SESSION_URL,
API_SEND_VERIFICATION_CODE_URLS,
API_VALIDATE_VERIFICATION_CODE_URLS,
ApiCommon,
)
from yalexs.authenticator_async import (
AuthenticationState,
AuthenticatorAsync,
ValidationResult,
)
from yalexs.const import DEFAULT_BRAND, HEADER_AUGUST_ACCESS_TOKEN
def format_datetime(dt):
return dt.strftime("%Y-%m-%d %H:%M:%S.%f")[:-3] + "Z"
class TestAuthenticatorAsync(aiounittest.AsyncTestCase):
def setUp(self):
"""Setup things to be run when tests are started."""
async def _async_create_authenticator_async(self, mock_aioresponses):
authenticator = AuthenticatorAsync(
ApiAsync(ClientSession()), "phone", "user", "pass", install_id="install_id"
)
await authenticator.async_setup_authentication()
return authenticator
def _setup_session_response(
self,
mock_aioresponses,
v_password,
v_install_id,
expires_at=format_datetime(datetime.utcnow()), # noqa: DTZ003
):
mock_aioresponses.post(
ApiCommon(DEFAULT_BRAND).get_brand_url(API_GET_SESSION_URL),
headers={"x-august-access-token": "access_token"},
body=json.dumps(
{
"expiresAt": expires_at,
"vPassword": v_password,
"vInstallId": v_install_id,
}
),
)
@aioresponses()
async def test_async_should_refresh_when_token_expiry_is_after_renewal_threshold(
self, mock_aioresponses
):
expired_expires_at = format_datetime(
datetime.now(timezone.utc) + timedelta(days=6)
)
self._setup_session_response(
mock_aioresponses, True, True, expires_at=expired_expires_at
)
authenticator = await self._async_create_authenticator_async(mock_aioresponses)
await authenticator.async_authenticate()
should_refresh = authenticator.should_refresh()
self.assertEqual(True, should_refresh)
@aioresponses()
async def test_async_should_refresh_when_token_expiry_is_before_renewal_threshold(
self, mock_aioresponses
):
not_expired_expires_at = format_datetime(
datetime.now(timezone.utc) + timedelta(days=8)
)
self._setup_session_response(
mock_aioresponses, True, True, expires_at=not_expired_expires_at
)
authenticator = await self._async_create_authenticator_async(mock_aioresponses)
await authenticator.async_authenticate()
should_refresh = authenticator.should_refresh()
self.assertEqual(False, should_refresh)
@aioresponses()
async def test_async_refresh_token(self, mock_aioresponses):
self._setup_session_response(mock_aioresponses, True, True)
authenticator = await self._async_create_authenticator_async(mock_aioresponses)
await authenticator.async_authenticate()
token = "e30=.eyJleHAiOjEzMzd9.e30="
mock_aioresponses.get(
ApiCommon(DEFAULT_BRAND).get_brand_url(API_GET_HOUSES_URL),
body=token,
headers={HEADER_AUGUST_ACCESS_TOKEN: token},
)
access_token = await authenticator.async_refresh_access_token(force=False)
self.assertEqual(token, access_token.access_token)
self.assertEqual(
datetime.fromtimestamp(1337, tz=tzutc()),
access_token.parsed_expiration_time(),
)
@aioresponses()
async def test_async_get_session_with_authenticated_response(
self, mock_aioresponses
):
self._setup_session_response(mock_aioresponses, True, True)
authenticator = await self._async_create_authenticator_async(mock_aioresponses)
authentication = await authenticator.async_authenticate()
self.assertEqual("access_token", authentication.access_token)
self.assertEqual("install_id", authentication.install_id)
self.assertEqual(AuthenticationState.AUTHENTICATED, authentication.state)
@aioresponses()
async def test_async_get_session_with_bad_password_response(
self, mock_aioresponses
):
self._setup_session_response(mock_aioresponses, False, True)
authenticator = await self._async_create_authenticator_async(mock_aioresponses)
authentication = await authenticator.async_authenticate()
self.assertEqual("access_token", authentication.access_token)
self.assertEqual("install_id", authentication.install_id)
self.assertEqual(AuthenticationState.BAD_PASSWORD, authentication.state)
@aioresponses()
async def test_async_get_session_with_requires_validation_response(
self, mock_aioresponses
):
self._setup_session_response(mock_aioresponses, True, False)
authenticator = await self._async_create_authenticator_async(mock_aioresponses)
authentication = await authenticator.async_authenticate()
self.assertEqual("access_token", authentication.access_token)
self.assertEqual("install_id", authentication.install_id)
self.assertEqual(AuthenticationState.REQUIRES_VALIDATION, authentication.state)
@aioresponses()
async def test_async_get_session_with_already_authenticated_state(
self, mock_aioresponses
):
self._setup_session_response(mock_aioresponses, True, True)
authenticator = await self._async_create_authenticator_async(mock_aioresponses)
# this will set authentication state to AUTHENTICATED
await authenticator.async_authenticate()
# call authenticate() again
authentication = await authenticator.async_authenticate()
self.assertEqual("access_token", authentication.access_token)
self.assertEqual("install_id", authentication.install_id)
self.assertEqual(AuthenticationState.AUTHENTICATED, authentication.state)
@aioresponses()
async def test_async_send_verification_code(self, mock_aioresponses):
self._setup_session_response(mock_aioresponses, True, False)
authenticator = await self._async_create_authenticator_async(mock_aioresponses)
mock_aioresponses.post(
ApiCommon(DEFAULT_BRAND).get_brand_url(
API_SEND_VERIFICATION_CODE_URLS["phone"]
),
body="{}",
)
await authenticator.async_authenticate()
result = await authenticator.async_send_verification_code()
self.assertEqual(True, result)
@aioresponses()
async def test_async_validate_verification_code_with_no_code(
self, mock_aioresponses
):
self._setup_session_response(mock_aioresponses, True, False)
authenticator = await self._async_create_authenticator_async(mock_aioresponses)
await authenticator.async_authenticate()
mock_aioresponses.post(
ApiCommon(DEFAULT_BRAND).get_brand_url(
API_VALIDATE_VERIFICATION_CODE_URLS["phone"]
),
body="{}",
)
result = await authenticator.async_validate_verification_code("")
# mock_aioresponses.async_validate_verification_code.assert_not_called()
self.assertEqual(ValidationResult.INVALID_VERIFICATION_CODE, result)
@aioresponses()
async def test_async_validate_verification_code_with_validated_response(
self, mock_aioresponses
):
self._setup_session_response(mock_aioresponses, True, False)
mock_aioresponses.post(
ApiCommon(DEFAULT_BRAND).get_brand_url(
API_VALIDATE_VERIFICATION_CODE_URLS["phone"]
),
body="{}",
)
authenticator = await self._async_create_authenticator_async(mock_aioresponses)
await authenticator.async_authenticate()
result = await authenticator.async_validate_verification_code("123456")
self.assertEqual(ValidationResult.VALIDATED, result)
@aioresponses()
async def test_async_validate_verification_code_with_invalid_code_response(
self, mock_aioresponses
):
self._setup_session_response(mock_aioresponses, True, False)
mock_aioresponses.post(
ApiCommon(DEFAULT_BRAND).get_brand_url(
API_VALIDATE_VERIFICATION_CODE_URLS["phone"]
),
exception=ClientError(),
)
authenticator = await self._async_create_authenticator_async(mock_aioresponses)
await authenticator.async_authenticate()
result = await authenticator.async_validate_verification_code("123456")
self.assertEqual(ValidationResult.INVALID_VERIFICATION_CODE, result)
|