summaryrefslogtreecommitdiff
path: root/test
diff options
context:
space:
mode:
authorAzul <azul@riseup.net>2017-11-13 13:16:41 +0100
committerAzul <azul@riseup.net>2017-11-13 13:16:41 +0100
commit028376fe1ea7638f0119ba9614629f66453d206f (patch)
treee73c759f133da8bddd68ed8bd8168b1919f67989 /test
parenta20a1c1671d3833c7f26b678f3e476b26126c8ca (diff)
fix: alternate email dialogue
fixes #8796 Cleaned up UserController#update earlier but missed that it was used to change fallback email addresses. Now it is back. This time including an integration test.
Diffstat (limited to 'test')
-rw-r--r--test/integration/browser/alternate_email_test.rb25
1 files changed, 25 insertions, 0 deletions
diff --git a/test/integration/browser/alternate_email_test.rb b/test/integration/browser/alternate_email_test.rb
new file mode 100644
index 0000000..fc58fb4
--- /dev/null
+++ b/test/integration/browser/alternate_email_test.rb
@@ -0,0 +1,25 @@
+require 'test_helper'
+
+class AlternateEmailTest < BrowserIntegrationTest
+ test "change alternate email" do
+ username, password = submit_signup
+ click_on 'Account Settings'
+ within(".edit_user") do
+ fill_in 'user_contact_email', with: 'test@leap.se'
+ click_on 'Save'
+ end
+ assert page.has_content?('Changes saved successfully')
+ assert_equal 'test@leap.se',
+ page.find('#user_contact_email').value
+ end
+
+ test "change alternate email to invalid" do
+ username, password = submit_signup
+ click_on 'Account Settings'
+ within(".edit_user") do
+ fill_in 'user_contact_email', with: 'test@invalid'
+ click_on 'Save'
+ assert page.has_content?('is invalid')
+ end
+ end
+end