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

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

require 'spec_helper'

describe 'Gitlab::Graphql::Authorization' do
  set(:user) { create(:user) }

  let(:test_object) { double(name: 'My name') }
  let(:object_type) { object_type_class }
  let(:query_type) { query_type_class(object_type, test_object) }
  let(:schema) { schema_class(query_type) }

  let(:execute) do
    schema.execute(
      query_string,
      context: { current_user: user },
      variables: {}
    )
  end

  let(:result) { execute['data'] }

  before do
    # By default, disallow all permissions.
    allow(Ability).to receive(:allowed?).and_return(false)
  end

  describe 'authorizing with a single permission' do
    let(:query_string) { '{ singlePermission() { name } }' }

    subject { result['singlePermission'] }

    it 'should return the protected field when user has permission' do
      permit(:foo)

      expect(subject['name']).to eq(test_object.name)
    end

    it 'should return nil when user is not authorized' do
      expect(subject).to be_nil
    end
  end

  describe 'authorizing with an Array of permissions' do
    let(:query_string) { '{ permissionCollection() { name } }' }

    subject { result['permissionCollection'] }

    it 'should return the protected field when user has all permissions' do
      permit(:foo, :bar)

      expect(subject['name']).to eq(test_object.name)
    end

    it 'should return nil when user only has one of the permissions' do
      permit(:foo)

      expect(subject).to be_nil
    end

    it 'should return nil when user only has none of the permissions' do
      expect(subject).to be_nil
    end
  end

  private

  def permit(*permissions)
    permissions.each do |permission|
      allow(Ability).to receive(:allowed?).with(user, permission, test_object).and_return(true)
    end
  end

  def object_type_class
    Class.new(Types::BaseObject) do
      graphql_name 'TestObject'

      field :name, GraphQL::STRING_TYPE, null: true
    end
  end

  def query_type_class(type, object)
    Class.new(Types::BaseObject) do
      graphql_name 'TestQuery'

      field :single_permission, type,
        null: true,
        authorize: :foo,
        resolve: ->(obj, args, ctx) { object }

      field :permission_collection, type,
        null: true,
        resolve: ->(obj, args, ctx) { object } do
        authorize [:foo, :bar]
      end
    end
  end

  def schema_class(query)
    Class.new(GraphQL::Schema) do
      use Gitlab::Graphql::Authorize

      query(query)
    end
  end
end