Welcome to mirror list, hosted at ThFree Co, Russian Federation.

captcha_verification_service_spec.rb « captcha « services « spec - gitlab.com/gitlab-org/gitlab-foss.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
blob: 245e06703f5ba5bf6e281a9faa26ae0cce788a7e (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
# frozen_string_literal: true

require 'spec_helper'

RSpec.describe Captcha::CaptchaVerificationService do
  describe '#execute' do
    let(:captcha_response) { nil }
    let(:request) { double(:request) }
    let(:service) { described_class.new }

    subject { service.execute(captcha_response: captcha_response, request: request) }

    context 'when there is no captcha_response' do
      it 'returns false' do
        expect(subject).to eq(false)
      end
    end

    context 'when there is a captcha_response' do
      let(:captcha_response) { 'abc123' }

      before do
        expect(Gitlab::Recaptcha).to receive(:load_configurations!)
      end

      it 'returns false' do
        expect(service).to receive(:verify_recaptcha).with(response: captcha_response) { true }

        expect(subject).to eq(true)
      end

      it 'has a request method which returns the request' do
        subject

        expect(service.send(:request)).to eq(request)
      end
    end
  end
end