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

fork_targets_spec.rb « project « graphql « api « requests « spec - gitlab.com/gitlab-org/gitlab-foss.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
blob: b21a11ff4dc61431f8b97770146d413ffb4c6460 (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
65
66
67
68
69
# frozen_string_literal: true

require 'spec_helper'

RSpec.describe 'getting a list of fork targets for a project' do
  include GraphqlHelpers

  let_it_be(:group) { create(:group) }
  let_it_be(:another_group) { create(:group) }
  let_it_be(:project) { create(:project, :private, group: group) }
  let_it_be(:user) { create(:user, developer_projects: [project]) }

  let(:current_user) { user }
  let(:fields) do
    <<~GRAPHQL
      forkTargets{
        nodes { id name fullPath visibility }
      }
    GRAPHQL
  end

  let(:query) do
    graphql_query_for(
      'project',
      { 'fullPath' => project.full_path },
      fields
    )
  end

  before_all do
    group.add_owner(user)
    another_group.add_owner(user)
  end

  context 'when user has access to the project' do
    before do
      post_graphql(query, current_user: current_user)
    end

    it_behaves_like 'a working graphql query'

    it 'returns fork targets for the project' do
      expect(graphql_data.dig('project', 'forkTargets', 'nodes')).to match_array(
        [user.namespace, project.namespace, another_group].map do |target|
          hash_including(
            {
              'id' => target.to_global_id.to_s,
              'name' => target.name,
              'fullPath' => target.full_path,
              'visibility' => target.visibility
            }
          )
        end
      )
    end
  end

  context "when user doesn't have access to the project" do
    let(:current_user) { create(:user) }

    before do
      post_graphql(query, current_user: current_user)
    end

    it 'does not return the project' do
      expect(graphql_data).to eq('project' => nil)
    end
  end
end