summaryrefslogtreecommitdiff
path: root/spec/graphql/mutations/concerns/mutations/can_mutate_spammable_spec.rb
blob: 8d1fce406fa6664d02a740d7a0d4440678cce5ea (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
40
41
42
43
44
45
46
# frozen_string_literal: true

require 'spec_helper'

RSpec.describe Mutations::CanMutateSpammable do
  let(:mutation_class) do
    Class.new(Mutations::BaseMutation) do
      include Mutations::CanMutateSpammable
    end
  end

  let(:request) { double(:request) }
  let(:query) { double(:query, schema: GitlabSchema) }
  let(:context) { GraphQL::Query::Context.new(query: query, object: nil, values: { request: request }) }

  subject(:mutation) { mutation_class.new(object: nil, context: context, field: nil) }

  describe '#additional_spam_params' do
    it 'returns additional spam-related params' do
      expect(subject.send(:additional_spam_params)).to eq({ api: true, request: request })
    end
  end

  describe '#with_spam_action_fields' do
    let(:spam_log) { double(:spam_log, id: 1) }
    let(:spammable) { double(:spammable, spam?: true, render_recaptcha?: true, spam_log: spam_log) }

    before do
      allow(Gitlab::CurrentSettings).to receive(:recaptcha_site_key) { 'abc123' }
    end

    it 'merges in spam action fields from spammable' do
      result = subject.send(:with_spam_action_response_fields, spammable) do
        { other_field: true }
      end
      expect(result)
        .to eq({
                 spam: true,
                 needs_captcha_response: true,
                 spam_log_id: 1,
                 captcha_site_key: 'abc123',
                 other_field: true
               })
    end
  end
end