commit
8ffe43d983
|
@ -6,6 +6,7 @@ and this project adheres to [Semantic Versioning](http://semver.org/spec/v2.0.0.
|
||||||
|
|
||||||
## master
|
## master
|
||||||
- [changed] Include @pangea.org mail addresses (#4).
|
- [changed] Include @pangea.org mail addresses (#4).
|
||||||
|
- [fixed] Error on login when user never has logged into the system (#6).
|
||||||
|
|
||||||
## [0.1] - 2020-01-29
|
## [0.1] - 2020-01-29
|
||||||
- Login & logout methods using backend as auth method
|
- Login & logout methods using backend as auth method
|
||||||
|
|
|
@ -2,7 +2,7 @@
|
||||||
Package metadata definition.
|
Package metadata definition.
|
||||||
"""
|
"""
|
||||||
|
|
||||||
VERSION = (0, 2, 0, 'alpha', 0)
|
VERSION = (0, 2, 0, 'alpha', 1)
|
||||||
|
|
||||||
|
|
||||||
def get_version():
|
def get_version():
|
||||||
|
|
|
@ -120,8 +120,9 @@ class UserAccount(OrchestraModel):
|
||||||
if 'language' in data:
|
if 'language' in data:
|
||||||
language = data['language'].lower()
|
language = data['language'].lower()
|
||||||
|
|
||||||
if 'last_login' in data:
|
last_login = data.get('last_login')
|
||||||
last_login = parse_datetime(data['last_login'])
|
if last_login is not None:
|
||||||
|
last_login = parse_datetime(last_login)
|
||||||
|
|
||||||
return super().new_from_json(data=data, billing=billing, language=language, last_login=last_login)
|
return super().new_from_json(data=data, billing=billing, language=language, last_login=last_login)
|
||||||
|
|
||||||
|
|
|
@ -39,6 +39,29 @@ class UserAccountTest(TestCase):
|
||||||
account = UserAccount.new_from_json(data)
|
account = UserAccount.new_from_json(data)
|
||||||
self.assertIsNone(account.last_login)
|
self.assertIsNone(account.last_login)
|
||||||
|
|
||||||
|
def test_user_never_logged2(self):
|
||||||
|
# issue #6 Error on login when user never has logged into the system
|
||||||
|
data = {
|
||||||
|
'billcontact': {'address': 'bar',
|
||||||
|
'city': 'Barcelona',
|
||||||
|
'country': 'ES',
|
||||||
|
'name': '',
|
||||||
|
'vat': '12345678Z',
|
||||||
|
'zipcode': '34561'},
|
||||||
|
'date_joined': '2020-01-14T12:38:31Z',
|
||||||
|
'full_name': 'Pep',
|
||||||
|
'id': 2,
|
||||||
|
'is_active': True,
|
||||||
|
'language': 'CA',
|
||||||
|
'last_login': None,
|
||||||
|
'short_name': '',
|
||||||
|
'type': 'INDIVIDUAL',
|
||||||
|
'url': 'http://127.0.0.1:9090/api/accounts/2/',
|
||||||
|
'username': 'pepe'
|
||||||
|
}
|
||||||
|
account = UserAccount.new_from_json(data)
|
||||||
|
self.assertIsNone(account.last_login)
|
||||||
|
|
||||||
|
|
||||||
class GetBootstrapedPercentTest(TestCase):
|
class GetBootstrapedPercentTest(TestCase):
|
||||||
BS_WIDTH = [0, 25, 50, 100]
|
BS_WIDTH = [0, 25, 50, 100]
|
||||||
|
|
Loading…
Reference in New Issue