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

tree_spec.rb « tree « project « graphql « api « requests « spec - gitlab.com/gitlab-org/gitlab-foss.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
blob: e63e0d3dd04402aade3af3f53107e9ab6a298db4 (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
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
# frozen_string_literal: true
require 'spec_helper'

RSpec.describe 'getting a tree in a project' do
  include GraphqlHelpers

  let_it_be(:project) { create(:project, :repository) }

  let(:current_user) { project.first_owner }
  let(:path) { "" }
  let(:ref) { "master" }
  let(:fields) do
    <<~QUERY
      tree(path:"#{path}", ref:"#{ref}") {
        #{all_graphql_fields_for('tree'.classify)}
      }
    QUERY
  end

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

  context 'when path does not exist' do
    let(:path) { "testing123" }

    it 'returns empty tree' do
      post_graphql(query, current_user: current_user)

      expect(graphql_data['project']['repository']['tree']['trees']['edges']).to eq([])
      expect(graphql_data['project']['repository']['tree']['submodules']['edges']).to eq([])
      expect(graphql_data['project']['repository']['tree']['blobs']['edges']).to eq([])
    end

    it 'returns null commit' do
      post_graphql(query, current_user: current_user)

      expect(graphql_data['project']['repository']['last_commit']).to be_nil
    end
  end

  context 'when ref does not exist' do
    let(:ref) { "testing123" }

    it 'returns empty tree' do
      post_graphql(query, current_user: current_user)

      expect(graphql_data['project']['repository']['tree']['trees']['edges']).to eq([])
      expect(graphql_data['project']['repository']['tree']['submodules']['edges']).to eq([])
      expect(graphql_data['project']['repository']['tree']['blobs']['edges']).to eq([])
    end

    it 'returns null commit' do
      post_graphql(query, current_user: current_user)

      expect(graphql_data['project']['repository']['last_commit']).to be_nil
    end
  end

  context 'when ref and path exist' do
    it 'returns tree' do
      post_graphql(query, current_user: current_user)

      expect(graphql_data['project']['repository']['tree']).to be_present
    end

    it 'returns blobs, subtrees and submodules inside tree' do
      post_graphql(query, current_user: current_user)

      expect(graphql_data['project']['repository']['tree']['trees']['edges'].size).to be > 0
      expect(graphql_data['project']['repository']['tree']['blobs']['edges'].size).to be > 0
      expect(graphql_data['project']['repository']['tree']['submodules']['edges'].size).to be > 0
    end

    it 'returns tree latest commit' do
      post_graphql(query, current_user: current_user)

      expect(graphql_data['project']['repository']['tree']['lastCommit']).to be_present
    end
  end

  context 'when the ref points to a gpg-signed commit with a user' do
    let_it_be(:name) { GpgHelpers::User1.names.first }
    let_it_be(:email) { GpgHelpers::User1.emails.first }
    let_it_be(:current_user) { create(:user, name: name, email: email).tap { |user| project.add_owner(user) } }
    let_it_be(:gpg_key) { create(:gpg_key, user: current_user, key: GpgHelpers::User1.public_key) }

    let(:ref) { GpgHelpers::SIGNED_AND_AUTHORED_SHA }
    let(:fields) do
      <<~QUERY
        tree(path:"#{path}", ref:"#{ref}") {
          lastCommit {
            signature {
              ... on GpgSignature {
                #{all_graphql_fields_for('GpgSignature'.classify, max_depth: 2)}
              }
            }
          }
        }
      QUERY
    end

    before do
      post_graphql(query, current_user: current_user)
    end

    it 'returns the expected signature data' do
      signature = graphql_data['project']['repository']['tree']['lastCommit']['signature']
      expect(signature['commitSha']).to eq(ref)
      expect(signature['user']['id']).to eq("gid://gitlab/User/#{current_user.id}")
      expect(signature['gpgKeyUserName']).to eq(name)
      expect(signature['gpgKeyUserEmail']).to eq(email)
      expect(signature['verificationStatus']).to eq('VERIFIED')
      expect(signature['project']['id']).to eq("gid://gitlab/Project/#{project.id}")
    end
  end

  context 'when the ref points to a X.509-signed commit' do
    let_it_be(:email) { X509Helpers::User1.certificate_email }
    let_it_be(:current_user) { create(:user, email: email).tap { |user| project.add_owner(user) } }

    let(:ref) { X509Helpers::User1.commit }
    let(:fields) do
      <<~QUERY
        tree(path:"#{path}", ref:"#{ref}") {
          lastCommit {
            signature {
              ... on X509Signature {
                #{all_graphql_fields_for('X509Signature'.classify, max_depth: 2)}
              }
            }
          }
        }
      QUERY
    end

    before do
      store = OpenSSL::X509::Store.new
      store.add_cert(OpenSSL::X509::Certificate.new(X509Helpers::User1.trust_cert))
      allow(OpenSSL::X509::Store).to receive(:new).and_return(store)
      post_graphql(query, current_user: current_user)
    end

    it 'returns the expected signature data' do
      signature = graphql_data['project']['repository']['tree']['lastCommit']['signature']
      expect(signature['commitSha']).to eq(ref)
      expect(signature['verificationStatus']).to eq('VERIFIED')
      expect(signature['project']['id']).to eq("gid://gitlab/Project/#{project.id}")
    end

    it 'returns expected certificate data' do
      signature = graphql_data['project']['repository']['tree']['lastCommit']['signature']
      certificate = signature['x509Certificate']
      expect(certificate['certificateStatus']).to eq('good')
      expect(certificate['email']).to eq(X509Helpers::User1.certificate_email)
      expect(certificate['id']).to be_present
      expect(certificate['serialNumber']).to eq(X509Helpers::User1.certificate_serial.to_s)
      expect(certificate['subject']).to eq(X509Helpers::User1.certificate_subject)
      expect(certificate['subjectKeyIdentifier']).to eq(X509Helpers::User1.certificate_subject_key_identifier)
      expect(certificate['createdAt']).to be_present
      expect(certificate['updatedAt']).to be_present
    end
  end

  context 'when current user is nil' do
    it 'returns empty project' do
      post_graphql(query, current_user: nil)

      expect(graphql_data['project']).to be(nil)
    end
  end
end