Skip to content

Commit

Permalink
Add Management API calls for session
Browse files Browse the repository at this point in the history
  • Loading branch information
l15n committed Sep 17, 2024
1 parent 814caf4 commit f2b1b12
Show file tree
Hide file tree
Showing 3 changed files with 84 additions and 0 deletions.
2 changes: 2 additions & 0 deletions lib/auth0/api/v2.rb
Original file line number Diff line number Diff line change
Expand Up @@ -24,6 +24,7 @@
require 'auth0/api/v2/resource_servers'
require 'auth0/api/v2/guardian'
require 'auth0/api/v2/attack_protection'
require 'auth0/api/v2/sessions'

module Auth0
module Api
Expand Down Expand Up @@ -55,6 +56,7 @@ module V2
include Auth0::Api::V2::Tenants
include Auth0::Api::V2::Tickets
include Auth0::Api::V2::AttackProtection
include Auth0::Api::V2::Sessions
end
end
end
34 changes: 34 additions & 0 deletions lib/auth0/api/v2/sessions.rb
Original file line number Diff line number Diff line change
@@ -0,0 +1,34 @@
# 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

private

def sessions_path
@sessions_path ||= '/api/v2/sessions'
end
end
end
end
end
48 changes: 48 additions & 0 deletions spec/lib/auth0/api/v2/sessions_spec.rb
Original file line number Diff line number Diff line change
@@ -0,0 +1,48 @@
# 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
end

0 comments on commit f2b1b12

Please sign in to comment.