Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Add Management API calls for session API endpoints #613

Open
wants to merge 1 commit into
base: master
Choose a base branch
from
Open
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
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