diff options
author | Azul <azul@leap.se> | 2013-09-04 10:46:15 +0200 |
---|---|---|
committer | Azul <azul@leap.se> | 2013-09-04 10:46:15 +0200 |
commit | c08a5331347571d7a0a7da5629a16e394da18716 (patch) | |
tree | 8398df82fcb26acbc6327b303e225c3003fcc7fb /users/test/integration/browser | |
parent | e915e1090d2b5a17a0dcde8b11a63d11565c62a7 (diff) |
use /login instead of /sessions/new and test successful login
Diffstat (limited to 'users/test/integration/browser')
-rw-r--r-- | users/test/integration/browser/account_test.rb | 12 |
1 files changed, 11 insertions, 1 deletions
diff --git a/users/test/integration/browser/account_test.rb b/users/test/integration/browser/account_test.rb index 8b214a4..a5ec2c5 100644 --- a/users/test/integration/browser/account_test.rb +++ b/users/test/integration/browser/account_test.rb @@ -18,10 +18,20 @@ class AccountTest < BrowserIntegrationTest user.destroy end + test "successful login" do + username, password = submit_signup + click_on 'Logout' + click_on 'Log In' + fill_in 'Username', with: username + fill_in 'Password', with: password + click_on 'Log In' + assert page.has_content?("Welcome #{username}") + end + # trying to seed an invalid A for srp login test "detects attempt to circumvent SRP" do user = FactoryGirl.create :user - visit '/sessions/new' + visit '/login' fill_in 'Username', with: user.login fill_in 'Password', with: "password" inject_malicious_js |