Skip to content

Commit

Permalink
Add endpoint to Revoke a session
Browse files Browse the repository at this point in the history
  • Loading branch information
l15n authored and arpit-jn committed Nov 13, 2024
1 parent 17b7fc4 commit b254e07
Show file tree
Hide file tree
Showing 2 changed files with 32 additions and 0 deletions.
9 changes: 9 additions & 0 deletions lib/auth0/api/v2/sessions.rb
Original file line number Diff line number Diff line change
Expand Up @@ -23,6 +23,15 @@ def delete_session(session_id)
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
Expand Down
23 changes: 23 additions & 0 deletions spec/lib/auth0/api/v2/sessions_spec.rb
Original file line number Diff line number Diff line change
@@ -1,12 +1,14 @@
# 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)
Expand All @@ -26,6 +28,7 @@
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)
Expand All @@ -45,4 +48,24 @@
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

0 comments on commit b254e07

Please sign in to comment.