83 lines
2.5 KiB
Ruby
83 lines
2.5 KiB
Ruby
require 'rails_helper'
|
|
|
|
feature 'Residence' do
|
|
|
|
scenario 'Verify resident in Madrid' do
|
|
user = create(:user)
|
|
login_as(user)
|
|
|
|
visit account_path
|
|
click_link 'Verify my account'
|
|
|
|
fill_in 'residence_document_number', with: "12345678Z"
|
|
select 'Spanish ID', from: 'residence_document_type'
|
|
select_date '31-December-1980', from: 'residence_date_of_birth'
|
|
fill_in 'residence_postal_code', with: '28013'
|
|
check 'residence_terms_of_service'
|
|
|
|
click_button 'Verify residence'
|
|
|
|
expect(page).to have_content 'Residence verified'
|
|
end
|
|
|
|
scenario 'Error on verify' do
|
|
user = create(:user)
|
|
login_as(user)
|
|
|
|
visit account_path
|
|
click_link 'Verify my account'
|
|
|
|
click_button 'Verify residence'
|
|
|
|
expect(page).to have_content /\d errors? prevented your residence verification/
|
|
end
|
|
|
|
scenario 'Error on Madrid census' do
|
|
user = create(:user)
|
|
login_as(user)
|
|
|
|
visit account_path
|
|
click_link 'Verify my account'
|
|
|
|
fill_in 'residence_document_number', with: "12345678Z"
|
|
select 'Spanish ID', from: 'residence_document_type'
|
|
select '1997', from: 'residence_date_of_birth_1i'
|
|
select 'January', from: 'residence_date_of_birth_2i'
|
|
select '1', from: 'residence_date_of_birth_3i'
|
|
fill_in 'residence_postal_code', with: '28013'
|
|
check 'residence_terms_of_service'
|
|
|
|
click_button 'Verify residence'
|
|
|
|
expect(page).to have_content 'The census of the city of Madrid could not verify your information'
|
|
end
|
|
|
|
scenario '5 tries allowed' do
|
|
user = create(:user)
|
|
login_as(user)
|
|
|
|
visit account_path
|
|
click_link 'Verify my account'
|
|
|
|
5.times do
|
|
fill_in 'residence_document_number', with: "12345678Z"
|
|
select 'Spanish ID', from: 'residence_document_type'
|
|
select '1997', from: 'residence_date_of_birth_1i'
|
|
select 'January', from: 'residence_date_of_birth_2i'
|
|
select '1', from: 'residence_date_of_birth_3i'
|
|
fill_in 'residence_postal_code', with: '28013'
|
|
check 'residence_terms_of_service'
|
|
|
|
click_button 'Verify residence'
|
|
expect(page).to have_content 'The census of the city of Madrid could not verify your information'
|
|
end
|
|
|
|
click_button 'Verify residence'
|
|
expect(page).to have_content "You have reached the maximum number of verification tries. Please try again later."
|
|
expect(current_path).to eq(account_path)
|
|
|
|
visit new_residence_path
|
|
expect(page).to have_content "You have reached the maximum number of verification tries. Please try again later."
|
|
expect(current_path).to eq(account_path)
|
|
end
|
|
end |