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

gitlab.com/gitlab-org/gitlab-foss.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorTimothy Andrew <mail@timothyandrew.net>2016-12-05 20:25:53 +0300
committerTimothy Andrew <mail@timothyandrew.net>2016-12-16 13:59:32 +0300
commitb303948ff549ce57d3b6985c2c366dfcdc5a2ca3 (patch)
tree3d286b8704e63cf8c26b10a1f0c538d77f24ab6b /spec/services/access_token_validation_service_spec.rb
parentf706a973c26f9de9a1f1599d532b33e9e66a80bb (diff)
Convert AccessTokenValidationService into a class.
- Previously, AccessTokenValidationService was a module, and all its public methods accepted a token. It makes sense to convert it to a class which accepts a token during initialization. - Also rename the `sufficient_scope?` method to `include_any_scope?` - Based on feedback from @rymai
Diffstat (limited to 'spec/services/access_token_validation_service_spec.rb')
-rw-r--r--spec/services/access_token_validation_service_spec.rb14
1 files changed, 7 insertions, 7 deletions
diff --git a/spec/services/access_token_validation_service_spec.rb b/spec/services/access_token_validation_service_spec.rb
index 332e745aa36..87f093ee8ce 100644
--- a/spec/services/access_token_validation_service_spec.rb
+++ b/spec/services/access_token_validation_service_spec.rb
@@ -1,41 +1,41 @@
require 'spec_helper'
describe AccessTokenValidationService, services: true do
- describe ".sufficient_scope?" 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.sufficient_scope?(token, [:api])).to be(true)
+ 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.sufficient_scope?(token, [:api, :other_scope])).to be(true)
+ 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.sufficient_scope?(token, [:api, :read_user, :other_scope])).to be(true)
+ 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.sufficient_scope?(token, [:api, :read_user, :other_scope])).to be(true)
+ 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.sufficient_scope?(token, [])).to be(true)
+ 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.sufficient_scope?(token, [:other_scope])).to be(false)
+ expect(described_class.new(token).include_any_scope?([:other_scope])).to be(false)
end
end
end