You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
125 lines
3.8 KiB
125 lines
3.8 KiB
11 years ago
|
# -*- coding: utf-8 -*-
|
||
|
'''Functional tests using WebTest.
|
||
|
|
||
|
See: http://webtest.readthedocs.org/
|
||
|
'''
|
||
|
from flask import url_for
|
||
|
from flask.ext.webtest import TestApp
|
||
|
from nose.tools import * # PEP8 asserts
|
||
|
|
||
|
from ..user.models import User
|
||
|
from .base import DbTestCase
|
||
|
from .factories import UserFactory
|
||
|
|
||
|
|
||
|
class TestLoggingIn(DbTestCase):
|
||
|
|
||
|
def setUp(self):
|
||
|
self.w = TestApp(self.app)
|
||
|
self.user = UserFactory(password="myprecious")
|
||
|
self.user.save()
|
||
|
|
||
|
def test_can_log_in(self):
|
||
|
# Goes to homepage
|
||
|
res = self.w.get("/")
|
||
|
# Fills out login form in navbar
|
||
|
form = res.forms['loginForm']
|
||
|
form['username'] = self.user.username
|
||
|
form['password'] = 'myprecious'
|
||
|
# Submits
|
||
11 years ago
|
res = form.submit().follow()
|
||
11 years ago
|
assert_equal(res.status_code, 200)
|
||
|
|
||
11 years ago
|
def _login(self, username, password):
|
||
|
res = self.w.get("/")
|
||
|
# Fills out login form in navbar
|
||
|
form = res.forms['loginForm']
|
||
|
form['username'] = username
|
||
|
form['password'] = password
|
||
|
# Submits
|
||
11 years ago
|
res = form.submit().follow()
|
||
11 years ago
|
return res
|
||
|
|
||
|
def test_sees_alert_on_log_out(self):
|
||
|
res = self._login(self.user.username, 'myprecious')
|
||
11 years ago
|
res = self.w.get(url_for('public.logout')).follow()
|
||
11 years ago
|
# sees alert
|
||
|
assert_in('You are logged out.', res)
|
||
|
|
||
11 years ago
|
def test_sees_error_message_if_password_is_incorrect(self):
|
||
|
# Goes to homepage
|
||
|
res = self.w.get("/")
|
||
|
# Fills out login form, password incorrect
|
||
|
form = res.forms['loginForm']
|
||
|
form['username'] = self.user.username
|
||
|
form['password'] = 'wrong'
|
||
|
# Submits
|
||
|
res = form.submit()
|
||
|
# sees error
|
||
|
assert_in("Invalid password", res)
|
||
|
|
||
|
def test_sees_error_message_if_username_doesnt_exist(self):
|
||
|
# Goes to homepage
|
||
|
res = self.w.get("/")
|
||
|
# Fills out login form, password incorrect
|
||
|
form = res.forms['loginForm']
|
||
|
form['username'] = 'unknown'
|
||
|
form['password'] = 'myprecious'
|
||
|
# Submits
|
||
|
res = form.submit()
|
||
|
# sees error
|
||
|
assert_in("Unknown user", res)
|
||
|
|
||
|
|
||
|
class TestRegistering(DbTestCase):
|
||
|
|
||
|
def setUp(self):
|
||
|
self.w = TestApp(self.app)
|
||
|
|
||
|
def test_can_register(self):
|
||
|
# Goes to homepage
|
||
|
res = self.w.get("/")
|
||
|
# Clicks Create Account button
|
||
|
res = res.click("Create account")
|
||
|
# Fills out the form
|
||
|
form = res.forms["registerForm"]
|
||
|
form['username'] = 'foobar'
|
||
|
form['email'] = 'foo@bar.com'
|
||
|
form['password'] = 'secret'
|
||
|
form['confirm'] = 'secret'
|
||
|
# Submits
|
||
11 years ago
|
res = form.submit().follow()
|
||
11 years ago
|
assert_equal(res.status_code, 200)
|
||
|
# A new user was created
|
||
|
assert_equal(len(User.query.all()), 1)
|
||
|
|
||
|
def test_sees_error_message_if_passwords_dont_match(self):
|
||
|
# Goes to registration page
|
||
|
res = self.w.get(url_for("public.register"))
|
||
|
# Fills out form, but passwords don't match
|
||
|
form = res.forms["registerForm"]
|
||
|
form['username'] = 'foobar'
|
||
|
form['email'] = 'foo@bar.com'
|
||
|
form['password'] = 'secret'
|
||
|
form['confirm'] = 'secrets'
|
||
|
# Submits
|
||
|
res = form.submit()
|
||
|
# sees error message
|
||
|
assert_in("Passwords must match", res)
|
||
|
|
||
|
def test_sees_error_message_if_user_already_registered(self):
|
||
|
user = UserFactory(active=True) # A registered user
|
||
|
user.save()
|
||
|
# Goes to registration page
|
||
|
res = self.w.get(url_for("public.register"))
|
||
11 years ago
|
# Fills out form, but username is already registered
|
||
11 years ago
|
form = res.forms["registerForm"]
|
||
|
form['username'] = user.username
|
||
|
form['email'] = 'foo@bar.com'
|
||
|
form['password'] = 'secret'
|
||
|
form['confirm'] = 'secret'
|
||
|
# Submits
|
||
|
res = form.submit()
|
||
|
# sees error
|
||
|
assert_in("Username already registered", res)
|