docbrown/spec/system/user_logs_in_with_password_spec.rb
Arit Amana 42e10e7b42
[EOY2020 Issue] Default new forems to Email Authentication only (#11696)
* Set default Auth Providers to empty array

* complete implementation; tests remain

* tests

* fix failing specs authenticator_spec.rb

* Fix failing specs

* fix more failing specs

* fix more failing specs 2

* update failing spec

* Update app/views/admin/configs/_auth_provider_settings.html.erb

Co-authored-by: Vaidehi Joshi <vaidehi.sj@gmail.com>

* Update app/assets/stylesheets/admin.scss

Co-authored-by: Vaidehi Joshi <vaidehi.sj@gmail.com>

Co-authored-by: Vaidehi Joshi <vaidehi.sj@gmail.com>
2020-12-02 16:49:07 -05:00

75 lines
2.4 KiB
Ruby

require "rails_helper"
RSpec.describe "Authenticating with a password" do
def submit_login_form(email, password)
fill_in "Email", with: email
fill_in "Password", with: password
click_button "Continue"
end
let(:password) { "p4assw0rd" }
let!(:user) { create(:user, password: password, password_confirmation: password) }
before do
allow(SiteConfig).to receive(:authentication_providers).and_return(Authentication::Providers.available)
visit sign_up_path
end
context "when logging in with incorrect credentials" do
it "displays an error when the email address is wrong" do
submit_login_form("wrong@example.com", password)
expect(page).to have_text("Invalid Email or password.")
end
it "displays an error when the password is wrong" do
submit_login_form(user.email, "wr0ng")
expect(page).to have_text("Invalid Email or password.")
end
it "displays a message on the last login attempt" do
allow(User).to receive(:maximum_attempts).and_return(2)
submit_login_form(user.email, "wr0ng")
expect(page).to have_text("You have one more attempt before your account is locked.")
end
it "displays a message when the user got locked out" do
allow(User).to receive(:maximum_attempts).and_return(1)
submit_login_form(user.email, "wr0ng")
expect(page).to have_text("Your account is locked.")
end
it "sends an email with the unlock link if the uset gets locked out" do
allow(User).to receive(:maximum_attempts).and_return(1)
expect do
submit_login_form(user.email, "wr0ng")
end.to change { Devise.mailer.deliveries.count }.by(1)
end
end
context "when the user's account is locked" do
it "allows the user to unlock their account via social logins" do
omniauth_mock_github_payload
auth_payload = OmniAuth.config.mock_auth[:github]
create(:user, :with_identity, identities: [:github])
auth_payload.info.email = user.email
user.lock_access!
visit sign_up_path
click_link("Continue with GitHub", match: :first)
expect(page).to have_current_path("/?signin=true")
expect(page).not_to have_text("Your account is locked.")
end
end
context "when logging in with the correct credentials" do
it "allows the user to sign in with the correct password" do
submit_login_form(user.email, password)
expect(page).to have_current_path("/?signin=true")
end
end
end