2016-11-22 04:04:23 -05:00
|
|
|
require 'spec_helper'
|
|
|
|
|
|
|
|
describe AccessTokenValidationService, services: true do
|
2016-12-05 12:25:53 -05:00
|
|
|
describe ".include_any_scope?" do
|
2016-11-22 04:04:23 -05:00
|
|
|
it "returns true if the required scope is present in the token's scopes" do
|
|
|
|
token = double("token", scopes: [:api, :read_user])
|
|
|
|
|
2016-12-05 12:25:53 -05:00
|
|
|
expect(described_class.new(token).include_any_scope?([:api])).to be(true)
|
2016-11-22 04:04:23 -05:00
|
|
|
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])
|
|
|
|
|
2016-12-05 12:25:53 -05:00
|
|
|
expect(described_class.new(token).include_any_scope?([:api, :other_scope])).to be(true)
|
2016-11-22 04:04:23 -05:00
|
|
|
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])
|
|
|
|
|
2016-12-05 12:25:53 -05:00
|
|
|
expect(described_class.new(token).include_any_scope?([:api, :read_user, :other_scope])).to be(true)
|
2016-11-22 04:04:23 -05:00
|
|
|
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])
|
|
|
|
|
2016-12-05 12:25:53 -05:00
|
|
|
expect(described_class.new(token).include_any_scope?([:api, :read_user, :other_scope])).to be(true)
|
2016-11-22 04:04:23 -05:00
|
|
|
end
|
|
|
|
|
|
|
|
it 'returns true if the list of required scopes is blank' do
|
|
|
|
token = double("token", scopes: [])
|
|
|
|
|
2016-12-05 12:25:53 -05:00
|
|
|
expect(described_class.new(token).include_any_scope?([])).to be(true)
|
2016-11-22 04:04:23 -05:00
|
|
|
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])
|
|
|
|
|
2016-12-05 12:25:53 -05:00
|
|
|
expect(described_class.new(token).include_any_scope?([:other_scope])).to be(false)
|
2016-11-22 04:04:23 -05:00
|
|
|
end
|
|
|
|
end
|
|
|
|
end
|