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

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

require "spec_helper"

RSpec.describe Gitlab::ProtocolAccess, feature_category: :source_code_management do
  using RSpec::Parameterized::TableSyntax

  let_it_be(:group) { create(:group) }
  let_it_be(:p1) { create(:project, :repository, namespace: group) }

  describe ".allowed?" do
    where(:protocol, :project, :admin_setting, :namespace_setting, :expected_result) do
      "web"              | nil       | nil    | nil    | true
      "ssh"              | nil       | nil    | nil    | true
      "http"             | nil       | nil    | nil    | true
      "ssh_certificates" | nil       | nil    | nil    | true
      "ssh"              | nil       | ""     | nil    | true
      "http"             | nil       | ""     | nil    | true
      "ssh_certificates" | nil       | ""     | nil    | true
      "ssh"              | nil       | "ssh"  | nil    | true
      "http"             | nil       | "http" | nil    | true
      "ssh_certificates" | nil       | "ssh_certificates" | nil | true
      "ssh"              | nil       | "http" | nil    | false
      "http"             | nil       | "ssh"  | nil    | false
      "ssh_certificates" | nil       | "ssh"  | nil    | false
      "ssh"              | ref(:p1)  | nil    | "all"  | true
      "http"             | ref(:p1)  | nil    | "all"  | true
      "ssh_certificates" | ref(:p1)  | nil    | "all"  | true
      "ssh"              | ref(:p1)  | nil    | "ssh"  | true
      "http"             | ref(:p1)  | nil    | "http" | true
      "ssh_certificates" | ref(:p1)  | nil    | "ssh_certificates" | true
      "ssh"              | ref(:p1)  | nil    | "http" | false
      "http"             | ref(:p1)  | nil    | "ssh"  | false
      "ssh_certificates" | ref(:p1)  | nil    | "ssh"  | false
      "ssh"              | ref(:p1)  | ""     | "all"  | true
      "http"             | ref(:p1)  | ""     | "all"  | true
      "ssh_certificates" | ref(:p1)  | ""     | "all"  | true
      "ssh"              | ref(:p1)  | "ssh"  | "ssh"  | true
      "http"             | ref(:p1)  | "http" | "http" | true
      "ssh_certificates" | ref(:p1)  | "ssh_certificates" | "ssh_certificates" | true
    end

    with_them do
      subject { described_class.allowed?(protocol, project: project) }

      before do
        allow(Gitlab::CurrentSettings).to receive(:enabled_git_access_protocol).and_return(admin_setting)

        if project.present?
          project.root_namespace.namespace_settings.update!(enabled_git_access_protocol: namespace_setting)
        end
      end

      it do
        is_expected.to be(expected_result)
      end
    end
  end
end