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

github.com/diaspora/diaspora.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorHank Grabowski <hankgrabowski@gmail.com>2019-01-01 19:05:55 +0300
committerHank Grabowski <hankgrabowski@gmail.com>2019-01-01 19:05:55 +0300
commit3080d1c55993ec37590c8a76da569ef3a34dc6fd (patch)
treefcb9a8067251b9cc91ab65305dccc830be840c26 /features
parentce01946eb03af28e76730dda455f11a1359e800e (diff)
Authentication cucumber tests fixed by updating to for new scopes names
Diffstat (limited to 'features')
-rw-r--r--features/step_definitions/auth_code_steps.rb2
-rw-r--r--features/step_definitions/implicit_flow_steps.rb4
-rw-r--r--features/step_definitions/oidc_common_steps.rb4
3 files changed, 5 insertions, 5 deletions
diff --git a/features/step_definitions/auth_code_steps.rb b/features/step_definitions/auth_code_steps.rb
index 723b913cb..a4f71475d 100644
--- a/features/step_definitions/auth_code_steps.rb
+++ b/features/step_definitions/auth_code_steps.rb
@@ -3,7 +3,7 @@
O_AUTH_QUERY_PARAMS_WITH_CODE = {
redirect_uri: "http://example.org/",
response_type: "code",
- scope: "openid profile read",
+ scope: "openid profile",
nonce: "hello",
state: "hi"
}
diff --git a/features/step_definitions/implicit_flow_steps.rb b/features/step_definitions/implicit_flow_steps.rb
index 316ecfa74..ee4d4bbfb 100644
--- a/features/step_definitions/implicit_flow_steps.rb
+++ b/features/step_definitions/implicit_flow_steps.rb
@@ -3,7 +3,7 @@
O_AUTH_QUERY_PARAMS = {
redirect_uri: "http://example.org/",
response_type: "id_token token",
- scope: "openid profile read",
+ scope: "openid profile",
nonce: "hello",
state: "hi",
prompt: "login"
@@ -12,7 +12,7 @@ O_AUTH_QUERY_PARAMS = {
O_AUTH_QUERY_PARAMS_WITH_MAX_AGE = {
redirect_uri: "http://example.org/",
response_type: "id_token token",
- scope: "openid profile read",
+ scope: "openid profile",
nonce: "hello",
state: "hi",
prompt: "login",
diff --git a/features/step_definitions/oidc_common_steps.rb b/features/step_definitions/oidc_common_steps.rb
index 971f7c2e0..0952a0293 100644
--- a/features/step_definitions/oidc_common_steps.rb
+++ b/features/step_definitions/oidc_common_steps.rb
@@ -3,12 +3,12 @@
Given /^a client with a provided picture exists for user "([^\"]*)"$/ do |email|
app = FactoryGirl.create(:o_auth_application, logo_uri: "/assets/user/default.png")
user = User.find_by(email: email)
- FactoryGirl.create(:auth_with_read, user: user, o_auth_application: app)
+ FactoryGirl.create(:auth_with_read_scopes, user: user, o_auth_application: app)
end
Given /^a client exists for user "([^\"]*)"$/ do |email|
user = User.find_by(email: email)
- FactoryGirl.create(:auth_with_read, user: user)
+ FactoryGirl.create(:auth_with_read_scopes, user: user)
end
When /^I register a new client$/ do