-
Notifications
You must be signed in to change notification settings - Fork 136
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Browse files
Browse the repository at this point in the history
- Loading branch information
Showing
3 changed files
with
116 additions
and
0 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,43 @@ | ||
# frozen_string_literal: true | ||
|
||
module Auth0 | ||
module Api | ||
module V2 | ||
# Methods to use the Session endpoints | ||
module Sessions | ||
# Retrieve session information by id | ||
# @see https://auth0.com/docs/api/management/v2/sessions/get-session | ||
# @param id [string] The id of the session to retrieve. | ||
def session(session_id) | ||
raise Auth0::InvalidParameter, 'Must supply a valid session_id' if session_id.to_s.empty? | ||
|
||
get "#{sessions_path}/#{session_id}" | ||
end | ||
|
||
# Deletes a session by id | ||
# @see https://auth0.com/docs/api/management/v2/sessions/delete-session | ||
# @param id [string] The id of the session to delete. | ||
def delete_session(session_id) | ||
raise Auth0::InvalidParameter, 'Must supply a valid session_id' if session_id.to_s.empty? | ||
|
||
delete "#{sessions_path}/#{session_id}" | ||
end | ||
|
||
# Revokes a session by ID and all associated refresh tokens | ||
# @see https://auth0.com/docs/api/management/v2/sessions/revoke-session | ||
# @param id [string] The ID of the session to revoke | ||
def revoke_session(session_id) | ||
raise Auth0::InvalidParameter, 'Must supply a valid session_id' if session_id.to_s.empty? | ||
|
||
post "#{sessions_path}/#{session_id}/revoke" | ||
end | ||
|
||
private | ||
|
||
def sessions_path | ||
@sessions_path ||= '/api/v2/sessions' | ||
end | ||
end | ||
end | ||
end | ||
end |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,71 @@ | ||
# frozen_string_literal: true | ||
|
||
require 'spec_helper' | ||
|
||
describe Auth0::Api::V2::Sessions do | ||
before :all do | ||
dummy_instance = DummyClass.new | ||
dummy_instance.extend(Auth0::Api::V2::Sessions) | ||
@instance = dummy_instance | ||
end | ||
|
||
context '.session' do | ||
it 'is expected to respond to a session method' do | ||
expect(@instance).to respond_to(:session) | ||
end | ||
|
||
it 'is expected to GET a session' do | ||
expect(@instance).to receive(:get).with( | ||
'/api/v2/sessions/SESSION_ID' | ||
) | ||
|
||
expect do | ||
@instance.session('SESSION_ID') | ||
end.not_to raise_error | ||
end | ||
|
||
it 'is expected to raise an exception when the session ID is empty' do | ||
expect { @instance.session(nil) }.to raise_error('Must supply a valid session_id') | ||
end | ||
end | ||
|
||
context '.delete_session' do | ||
it 'is expected to respond to a delete_session method' do | ||
expect(@instance).to respond_to(:delete_session) | ||
end | ||
|
||
it 'is expected to DELETE a session' do | ||
expect(@instance).to receive(:delete).with( | ||
'/api/v2/sessions/SESSION_ID' | ||
) | ||
|
||
expect do | ||
@instance.delete_session('SESSION_ID') | ||
end.not_to raise_error | ||
end | ||
|
||
it 'is expected to raise an exception when the session ID is empty' do | ||
expect { @instance.delete_session(nil) }.to raise_error('Must supply a valid session_id') | ||
end | ||
end | ||
|
||
context '.revoke_session' do | ||
it 'is expected to respond to a revoke_session method' do | ||
expect(@instance).to respond_to(:revoke_session) | ||
end | ||
|
||
it 'is expected to POST to /api/v2/sessions/{id}/revoke' do | ||
expect(@instance).to receive(:post).with( | ||
'/api/v2/sessions/SESSION_ID/revoke' | ||
) | ||
|
||
expect do | ||
@instance.revoke_session('SESSION_ID') | ||
end.not_to raise_error | ||
end | ||
|
||
it 'is expected to raise an exception when the session ID is empty' do | ||
expect { @instance.revoke_session(nil) }.to raise_error('Must supply a valid session_id') | ||
end | ||
end | ||
end |