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

get_snippet_repository_query_spec.rb « graphql « projects « bulk_imports « lib « spec - gitlab.com/gitlab-org/gitlab-foss.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
blob: b680fa5cbfc68db12656a5ef5c7b025f93c8487b (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
# frozen_string_literal: true

require 'spec_helper'

RSpec.describe BulkImports::Projects::Graphql::GetSnippetRepositoryQuery do
  describe 'query repository based on full_path' do
    let_it_be(:entity)  { create(:bulk_import_entity) }
    let_it_be(:tracker) { create(:bulk_import_tracker, entity: entity) }
    let_it_be(:context) { BulkImports::Pipeline::Context.new(tracker) }

    it 'has a valid query' do
      query = GraphQL::Query.new(
        GitlabSchema,
        described_class.to_s,
        variables: described_class.variables(context)
      )
      result = GitlabSchema.static_validator.validate(query)

      expect(result[:errors]).to be_empty
    end

    it 'returns snippet httpUrlToRepo' do
      expect(described_class.to_s).to include('httpUrlToRepo')
    end

    it 'returns snippet createdAt' do
      expect(described_class.to_s).to include('createdAt')
    end

    it 'returns snippet title' do
      expect(described_class.to_s).to include('title')
    end

    describe '.variables' do
      it 'queries project based on source_full_path and pagination' do
        expected = { full_path: entity.source_full_path, cursor: nil, per_page: 500 }

        expect(described_class.variables(context)).to eq(expected)
      end
    end

    describe '.data_path' do
      it '.data_path returns data path' do
        expected = %w[data project snippets nodes]

        expect(described_class.data_path).to eq(expected)
      end
    end

    describe '.page_info_path' do
      it '.page_info_path returns pagination information path' do
        expected = %w[data project snippets page_info]

        expect(described_class.page_info_path).to eq(expected)
      end
    end
  end
end