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

lsif_data_spec.rb « api « requests « spec - gitlab.com/gitlab-org/gitlab-foss.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
blob: 2e0670ded9573c990348e85e41c820f0df107630 (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
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
# frozen_string_literal: true

require "spec_helper"

describe API::LsifData do
  let_it_be(:user) { create(:user) }
  let_it_be(:project) { create(:project, :repository) }

  let(:commit) { project.commit }

  describe 'GET lsif/info' do
    let(:endpoint_path) { "/projects/#{project.id}/commits/#{commit.id}/lsif/info" }

    context 'user does not have access to the project' do
      before do
        project.add_guest(user)
      end

      it 'returns 403' do
        get api(endpoint_path, user), params: { path: 'main.go' }

        expect(response).to have_gitlab_http_status(:forbidden)
      end
    end

    context 'user has access to the project' do
      before do
        project.add_reporter(user)
      end

      context 'code_navigation feature is disabled' do
        before do
          stub_feature_flags(code_navigation: false)
        end

        it 'returns 404' do
          get api(endpoint_path, user)

          expect(response).to have_gitlab_http_status(:not_found)
        end
      end

      context 'there is no job artifact for the passed commit' do
        it 'returns 404' do
          get api(endpoint_path, user), params: { path: 'main.go' }

          expect(response).to have_gitlab_http_status(:not_found)
        end
      end

      context 'lsif data is stored as a job artifact' do
        let!(:pipeline) { create(:ci_pipeline, project: project, sha: commit.id) }
        let!(:artifact) { create(:ci_job_artifact, :lsif, job: create(:ci_build, pipeline: pipeline)) }

        it 'returns code navigation info for a given path' do
          get api(endpoint_path, user), params: { path: 'main.go' }

          expect(response).to have_gitlab_http_status(:ok)
          expect(response.parsed_body.last).to eq({
            'end_char' => 18,
            'end_line' => 8,
            'start_char' => 13,
            'start_line' => 8,
            'definition_url' => project_blob_path(project, "#{commit.id}/morestrings/reverse.go", anchor: 'L5')
          })
        end

        context 'the stored file is too large' do
          it 'returns 413' do
            allow_any_instance_of(JobArtifactUploader).to receive(:cached_size).and_return(20.megabytes)

            get api(endpoint_path, user), params: { path: 'main.go' }

            expect(response).to have_gitlab_http_status(:payload_too_large)
          end
        end

        context 'the user does not have access to the pipeline' do
          let(:project) { create(:project, :repository, builds_access_level: ProjectFeature::DISABLED) }

          it 'returns 403' do
            get api(endpoint_path, user), params: { path: 'main.go' }

            expect(response).to have_gitlab_http_status(:forbidden)
          end
        end
      end
    end
  end
end