* Signin Signup screen update * Design for signin signup finished * On hover effect * Fixed few tests * Fixed rSpec tests * Minor design fixes * Design changes suggested by Anuj * Test fixes * Updated test * Nit fixes * Path changes and footer and topbar hidden * A bit simplified css * Removed custom css * Updated tests * Nit css fixes * Updates as per Ridhwana's review * CSS fixes * Used js-registration
64 lines
2.1 KiB
Ruby
64 lines
2.1 KiB
Ruby
require "rails_helper"
|
|
|
|
RSpec.describe "Authenticating with a password" do
|
|
def submit_login_form(email, password)
|
|
allow(ForemInstance).to receive(:smtp_enabled?).and_return(true)
|
|
fill_in "Email", with: email
|
|
fill_in "Password", with: password
|
|
click_button "Log in"
|
|
end
|
|
|
|
let(:password) { "p4assw0rd" }
|
|
let!(:user) { create(:user, password: password, password_confirmation: password) }
|
|
|
|
before do
|
|
allow(Settings::Authentication).to receive(: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("Unable to login.")
|
|
end
|
|
|
|
it "displays an error when the password is wrong" do
|
|
submit_login_form(user.email, "wr0ng")
|
|
expect(page).to have_text("Unable to login.")
|
|
end
|
|
|
|
it "sends an email with the unlock link if the user gets locked out", :aggregate_failures do
|
|
allow(User).to receive(:maximum_attempts).and_return(1)
|
|
|
|
assert_enqueued_with(job: Devise.mailer.delivery_job) do
|
|
submit_login_form(user.email, "wr0ng")
|
|
end
|
|
|
|
expect(enqueued_jobs.first[:args]).to match(array_including("unlock_instructions"))
|
|
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_on("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
|