c0d7dd38f9
Signed-off-by: Rémy Coutable <remy@rymai.me>
69 lines
2.1 KiB
Ruby
69 lines
2.1 KiB
Ruby
require 'rails_helper'
|
|
|
|
describe 'New issue', :js do
|
|
include StubENV
|
|
|
|
let(:project) { create(:project, :public) }
|
|
let(:user) { create(:user)}
|
|
|
|
before do
|
|
stub_env('IN_MEMORY_APPLICATION_SETTINGS', 'false')
|
|
|
|
current_application_settings.update!(
|
|
akismet_enabled: true,
|
|
akismet_api_key: 'testkey',
|
|
recaptcha_enabled: true,
|
|
recaptcha_site_key: 'test site key',
|
|
recaptcha_private_key: 'test private key'
|
|
)
|
|
|
|
project.add_master(user)
|
|
sign_in(user)
|
|
end
|
|
|
|
context 'when identified as a spam' do
|
|
before do
|
|
WebMock.stub_request(:any, /.*akismet.com.*/).to_return(body: "true", status: 200)
|
|
|
|
visit new_project_issue_path(project)
|
|
end
|
|
|
|
it 'creates an issue after solving reCaptcha' do
|
|
fill_in 'issue_title', with: 'issue title'
|
|
fill_in 'issue_description', with: 'issue description'
|
|
|
|
click_button 'Submit issue'
|
|
|
|
# reCAPTCHA alerts when it can't contact the server, so just accept it and move on
|
|
page.driver.browser.switch_to.alert.accept
|
|
|
|
# it is impossible to test recaptcha automatically and there is no possibility to fill in recaptcha
|
|
# recaptcha verification is skipped in test environment and it always returns true
|
|
expect(page).not_to have_content('issue title')
|
|
expect(page).to have_css('.recaptcha')
|
|
|
|
click_button 'Submit issue'
|
|
|
|
expect(page.find('.issue-details h2.title')).to have_content('issue title')
|
|
expect(page.find('.issue-details .description')).to have_content('issue description')
|
|
end
|
|
end
|
|
|
|
context 'when not identified as a spam' do
|
|
before do
|
|
WebMock.stub_request(:any, /.*akismet.com.*/).to_return(body: 'false', status: 200)
|
|
|
|
visit new_project_issue_path(project)
|
|
end
|
|
|
|
it 'creates an issue' do
|
|
fill_in 'issue_title', with: 'issue title'
|
|
fill_in 'issue_description', with: 'issue description'
|
|
|
|
click_button 'Submit issue'
|
|
|
|
expect(page.find('.issue-details h2.title')).to have_content('issue title')
|
|
expect(page.find('.issue-details .description')).to have_content('issue description')
|
|
end
|
|
end
|
|
end
|