Add mock X-Forwarded-For header in trackable tests

This commit is contained in:
Matt Wright
2014-05-06 13:14:14 -04:00
parent 58b7fa8e2e
commit d185407ac4
+2 -2
View File
@@ -17,12 +17,12 @@ def test_trackable_flag(app, client):
e = 'matt@lp.com'
authenticate(client, email=e)
logout(client)
authenticate(client, email=e)
authenticate(client, email=e, headers={'X-Forwarded-For': '127.0.0.1'})
with app.app_context():
user = app.security.datastore.find_user(email=e)
assert user.last_login_at is not None
assert user.current_login_at is not None
assert user.last_login_ip == 'untrackable'
assert user.current_login_ip == 'untrackable'
assert user.current_login_ip == '127.0.0.1'
assert user.login_count == 2