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

access_token_validation_service_spec.rb « services « spec - gitlab.com/gitlab-org/gitlab-foss.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
blob: 87f093ee8ce9183a0e0434017bda56fdbe1d6559 (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
require 'spec_helper'

describe AccessTokenValidationService, services: true do
  describe ".include_any_scope?" do
    it "returns true if the required scope is present in the token's scopes" do
      token = double("token", scopes: [:api, :read_user])

      expect(described_class.new(token).include_any_scope?([:api])).to be(true)
    end

    it "returns true if more than one of the required scopes is present in the token's scopes" do
      token = double("token", scopes: [:api, :read_user, :other_scope])

      expect(described_class.new(token).include_any_scope?([:api, :other_scope])).to be(true)
    end

    it "returns true if the list of required scopes is an exact match for the token's scopes" do
      token = double("token", scopes: [:api, :read_user, :other_scope])

      expect(described_class.new(token).include_any_scope?([:api, :read_user, :other_scope])).to be(true)
    end

    it "returns true if the list of required scopes contains all of the token's scopes, in addition to others" do
      token = double("token", scopes: [:api, :read_user])

      expect(described_class.new(token).include_any_scope?([:api, :read_user, :other_scope])).to be(true)
    end

    it 'returns true if the list of required scopes is blank' do
      token = double("token", scopes: [])

      expect(described_class.new(token).include_any_scope?([])).to be(true)
    end

    it "returns false if there are no scopes in common between the required scopes and the token scopes" do
      token = double("token", scopes: [:api, :read_user])

      expect(described_class.new(token).include_any_scope?([:other_scope])).to be(false)
    end
  end
end