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

issuable_resolvers_shared_examples.rb « resolvers « graphql « shared_examples « support « spec - gitlab.com/gitlab-org/gitlab-foss.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
blob: 6b2b45d28e85e3c32ea65b465c46858c80f36376 (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
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
# frozen_string_literal: true

# Requires `parent`, issuable1`, `issuable2`, `issuable3`, `issuable4`,
# `finder_class` and `optimization_param` bindings.
RSpec.shared_examples 'graphql query for searching issuables' do
  it 'uses search optimization' do
    expected_arguments = a_hash_including(
      search: 'text',
      optimization_param => true
    )
    expect(finder_class).to receive(:new).with(anything, expected_arguments).and_call_original

    resolve_issuables(search: 'text')
  end

  it 'filters issuables by title' do
    issuables = resolve_issuables(search: 'created')

    expect(issuables).to contain_exactly(issuable1, issuable2)
  end

  it 'filters issuables by description' do
    issuables = resolve_issuables(search: 'text')

    expect(issuables).to contain_exactly(issuable2, issuable3)
  end

  context 'with in param' do
    it 'generates an error if param search is missing' do
      error_message = "`search` should be present when including the `in` argument"

      expect_graphql_error_to_be_created(Gitlab::Graphql::Errors::ArgumentError, error_message) do
        resolve_issuables(in: ['title'])
      end
    end

    it 'filters issuables by title and description' do
      issuable4.update!(title: 'fourth text')
      issuables = resolve_issuables(search: 'text', in: %w[title description])

      expect(issuables).to contain_exactly(issuable2, issuable3, issuable4)
    end

    it 'filters issuables by description only' do
      with_text = resolve_issuables(search: 'text', in: ['description'])
      with_created = resolve_issuables(search: 'created', in: ['description'])

      expect(with_created).to be_empty
      expect(with_text).to contain_exactly(issuable2, issuable3)
    end

    it 'filters issuables by title only' do
      with_text = resolve_issuables(search: 'text', in: ['title'])
      with_created = resolve_issuables(search: 'created', in: ['title'])

      expect(with_created).to contain_exactly(issuable1, issuable2)
      expect(with_text).to be_empty
    end
  end

  def resolve_issuables(args = {}, obj = parent, context = { current_user: current_user })
    resolve(described_class, obj: obj, args: args, ctx: context, arg_style: :internal)
  end
end