Rework the Sign Up/Sign In views

Use Capybaras save_page when feature tests go wrong
This commit is contained in:
Henne Vogelsang 2014-07-23 14:55:06 +02:00
parent 76028f5755
commit 5f96c276e9
24 changed files with 326 additions and 100 deletions

View file

@ -8,8 +8,8 @@ feature Openid do
scenario 'has option to log in with Google account' do
visit '/accounts/sign_in'
expect(page.has_content?('Or use your openID')).to be true
expect(page.has_content?('google')).to be true
expect(page.has_content?('or sign in using')).to be true
expect(page.has_link?('omniauth-google')).to be true
end
scenario 'signs in *new* user with Google account' do
@ -18,7 +18,9 @@ feature Openid do
visit '/accounts/sign_in'
mock_auth_new_user
click_link 'google'
within("#openidlinks") do
click_link 'omniauth-google'
end
expect(flash).to eq('test-1@gmail.com signed in successfully with google')
expect(Openid.count).to eq(expected_count_openid)
expect(User.count).to eq(expected_count_user)
@ -31,7 +33,9 @@ feature Openid do
visit '/accounts/sign_in'
mock_auth_existing_user_participant
click_link 'google'
within("#openidlinks") do
click_link 'omniauth-google'
end
expect(flash).to eq('test-participant-1@google.com signed in successfully with google')
expect(Openid.count).to eq(expected_count_openid)
expect(User.count).to eq(expected_count_user)
@ -40,8 +44,11 @@ feature Openid do
scenario 'can handle authentication error' do
OmniAuth.config.mock_auth[:google] = :invalid_credentials
visit '/accounts/sign_in'
expect(page.has_content?('Or use your openID')).to be true
click_link 'google'
expect(page.has_content?('or sign in using')).to be true
within("#openidlinks") do
click_link 'omniauth-google'
end
expect(flash).to eq("Could not authenticate you from Google because \"Invalid credentials\".")
end
@ -56,7 +63,9 @@ feature Openid do
visit '/accounts/edit'
mock_auth_new_user
click_link 'google'
within("#openidlinks") do
click_link 'omniauth-google'
end
expect(flash).to eq('test-participant-1@google.com signed in successfully with google')
expect(Openid.count).to eq(expected_count_openid)
expect(User.count).to eq(expected_count_user)
@ -71,7 +80,9 @@ feature Openid do
visit '/accounts/sign_in'
mock_auth_existing_user_participant
click_link 'google'
within("#openidlinks") do
click_link 'omniauth-google'
end
expect(flash).to eq('test-participant-1@google.com signed in successfully with google')
expect(Openid.count).to eq(expected_count_openid)
expect(User.count).to eq(expected_count_user)
@ -82,7 +93,9 @@ feature Openid do
visit '/accounts/edit'
mock_auth_new_user
click_link 'google'
within("#openidlinks") do
click_link 'omniauth-google'
end
expect(flash).to eq('test-participant-1@google.com signed in successfully with google')
expect(Openid.count).to eq(expected_count_openid)
expect(User.count).to eq(expected_count_user)
@ -96,7 +109,9 @@ feature Openid do
visit '/accounts/sign_in'
mock_auth_new_user_fb
click_link 'facebook'
within("#openidlinks") do
click_link 'omniauth-facebook'
end
expect(flash).to eq('test-participant-1@google.com signed in successfully with facebook')
expect(Openid.count).to eq(expected_count_openid)
expect(User.count).to eq(expected_count_user)

View file

@ -26,7 +26,7 @@ module OmniauthMacros
def mock_auth_new_user_fb
OmniAuth.config.mock_auth[:facebook] =
OmniAuth::AuthHash.new(
provider: 'google',
provider: 'facebook',
uid: 'facebook-test-uid-1',
info: {
name: 'new user fb name',

View file

@ -0,0 +1,18 @@
# Automatically save and open the page
# whenever an expectation is not met in a features spec
RSpec.configure do |config|
config.after(:each, type: :feature) do
ename = RSpec.current_example.full_description
ename = ename.gsub " ", "_"
ename.downcase!
ename = ename + ".html"
if RSpec.current_example.exception.present?
save_page(ename)
else
capfile = File.expand_path(ename, Capybara.save_and_open_page_path)
if File.exist?(capfile)
File.unlink(capfile)
end
end
end
end