summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorAzul <azul@leap.se>2013-09-04 10:46:15 +0200
committerAzul <azul@leap.se>2013-09-04 10:46:15 +0200
commitc08a5331347571d7a0a7da5629a16e394da18716 (patch)
tree8398df82fcb26acbc6327b303e225c3003fcc7fb
parente915e1090d2b5a17a0dcde8b11a63d11565c62a7 (diff)
use /login instead of /sessions/new and test successful login
-rw-r--r--users/test/integration/browser/account_test.rb12
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