Note we're excluding a few files: * Configuration files that weren't generated by us * Migration files that weren't generated by us * The Gemfile, since it includes an important comment that must be on the same line as the gem declaration * The Budget::Stats class, since the heading statistics are a mess and having shorter lines would require a lot of refactoring
104 lines
2.7 KiB
Ruby
104 lines
2.7 KiB
Ruby
require "rails_helper"
|
|
|
|
describe "Verification path" do
|
|
scenario "User is an organization" do
|
|
user = create(:user, verified_at: Time.current)
|
|
create(:organization, user: user)
|
|
|
|
login_as(user)
|
|
visit verification_path
|
|
|
|
expect(page).to have_current_path(account_path)
|
|
end
|
|
|
|
scenario "User is verified" do
|
|
user = create(:user, verified_at: Time.current)
|
|
|
|
login_as(user)
|
|
visit verification_path
|
|
|
|
expect(page).to have_current_path(account_path)
|
|
expect(page).to have_content "Your account is already verified"
|
|
end
|
|
|
|
scenario "User requested a letter" do
|
|
user = create(:user, confirmed_phone: "623456789", residence_verified_at: Time.current,
|
|
letter_requested_at: Time.current, letter_verification_code: "666")
|
|
|
|
login_as(user)
|
|
visit verification_path
|
|
|
|
expect(page).to have_current_path(edit_letter_path)
|
|
end
|
|
|
|
scenario "User is level two verified" do
|
|
user = create(:user, residence_verified_at: Time.current, confirmed_phone: "666666666")
|
|
|
|
login_as(user)
|
|
visit verification_path
|
|
|
|
expect(page).to have_current_path(new_letter_path)
|
|
end
|
|
|
|
scenario "User received a verification sms" do
|
|
user = create(:user,
|
|
residence_verified_at: Time.current,
|
|
unconfirmed_phone: "666666666",
|
|
sms_confirmation_code: "666")
|
|
|
|
login_as(user)
|
|
visit verification_path
|
|
|
|
expect(page).to have_current_path(edit_sms_path)
|
|
end
|
|
|
|
scenario "User received verification email" do
|
|
user = create(:user, residence_verified_at: Time.current, email_verification_token: "1234")
|
|
|
|
login_as(user)
|
|
visit verification_path
|
|
|
|
verification_redirect = current_path
|
|
|
|
visit verified_user_path
|
|
|
|
expect(page).to have_current_path(verification_redirect)
|
|
end
|
|
|
|
scenario "User has verified residence" do
|
|
user = create(:user, residence_verified_at: Time.current)
|
|
|
|
login_as(user)
|
|
visit verification_path
|
|
|
|
verification_redirect = current_path
|
|
|
|
visit verified_user_path
|
|
|
|
expect(page).to have_current_path(verification_redirect)
|
|
end
|
|
|
|
scenario "User has not started verification process" do
|
|
user = create(:user)
|
|
|
|
login_as(user)
|
|
visit verification_path
|
|
|
|
expect(page).to have_current_path(new_residence_path)
|
|
end
|
|
|
|
scenario "A verified user can not access verification pages" do
|
|
user = create(:user, verified_at: Time.current)
|
|
|
|
login_as(user)
|
|
|
|
verification_paths = [new_residence_path, verified_user_path, edit_sms_path, new_letter_path]
|
|
verification_paths.each do |step_path|
|
|
visit step_path
|
|
|
|
expect(page).to have_current_path(account_path)
|
|
expect(page).to have_content "Your account is already verified"
|
|
end
|
|
end
|
|
end
|