debian-mirror-gitlab/spec/helpers/recaptcha_helper_spec.rb

Ignoring revisions in .git-blame-ignore-revs. Click here to bypass and see the normal blame view.

79 lines
2 KiB
Ruby
Raw Normal View History

2019-09-30 21:07:59 +05:30
# frozen_string_literal: true
require 'spec_helper'
2021-01-29 00:20:46 +05:30
RSpec.describe RecaptchaHelper, type: :helper do
2020-06-23 00:09:42 +05:30
let(:session) { {} }
before do
allow(helper).to receive(:session) { session }
end
2022-11-25 23:54:43 +05:30
shared_examples 'Gitlab QA bypass' do
context 'when GITLAB_QA_USER_AGENT env var is present' do
using RSpec::Parameterized::TableSyntax
2019-09-30 21:07:59 +05:30
2022-11-25 23:54:43 +05:30
where(:dot_com, :user_agent, :qa_user_agent, :result) do
false | 'qa_user_agent' | 'qa_user_agent' | true
true | nil | 'qa_user_agent' | true
true | '' | 'qa_user_agent' | true
true | 'qa_user_agent' | '' | true
true | 'qa_user_agent' | nil | true
true | 'qa_user_agent' | 'qa_user_agent' | false
2019-09-30 21:07:59 +05:30
end
2022-11-25 23:54:43 +05:30
with_them do
before do
allow(Gitlab).to receive(:com?).and_return(dot_com)
stub_env('GITLAB_QA_USER_AGENT', qa_user_agent)
request_double = instance_double(ActionController::TestRequest, user_agent: user_agent)
allow(helper).to receive(:request).and_return(request_double)
end
2019-09-30 21:07:59 +05:30
2022-11-25 23:54:43 +05:30
it { is_expected.to eq result }
2019-09-30 21:07:59 +05:30
end
end
end
2022-11-25 23:54:43 +05:30
describe '.show_recaptcha_sign_up?' do
let(:setting_state) { true }
before do
stub_application_setting(recaptcha_enabled: setting_state)
end
subject { helper.show_recaptcha_sign_up? }
it { is_expected.to eq true }
context 'when setting is disabled' do
let(:setting_state) { false }
it { is_expected.to eq false }
end
include_examples 'Gitlab QA bypass'
end
describe '.recaptcha_enabled_on_login?' do
let(:setting_state) { true }
before do
stub_application_setting(login_recaptcha_protection_enabled: setting_state)
end
subject { helper.recaptcha_enabled_on_login? }
it { is_expected.to eq true }
context 'when setting is disabled' do
let(:setting_state) { false }
it { is_expected.to eq false }
end
include_examples 'Gitlab QA bypass'
end
2019-09-30 21:07:59 +05:30
end