Skip to content

Commit 0aa7398

Browse files
committed
Updating network authentication server auth
1 parent bc2e99a commit 0aa7398

File tree

4 files changed

+117
-10
lines changed

4 files changed

+117
-10
lines changed

lib/vonage/network_authentication/server.rb

+18-6
Original file line numberDiff line numberDiff line change
@@ -11,13 +11,14 @@ class NetworkAuthentication::Server < Namespace
1111

1212
self.request_headers['Content-Type'] = 'application/x-www-form-urlencoded'
1313

14-
def generate_token(**params)
15-
auth_request_id = bc_authorize(**params).auth_request_id
14+
def token(purpose:, api_scope:, login_hint:, **params)
15+
auth_req_id = bc_authorize(
16+
purpose: purpose,
17+
api_scope: api_scope,
18+
login_hint: login_hint
19+
).auth_req_id
1620

17-
token(
18-
grant_type: 'urn:openid:params:grant-type:ciba',
19-
auth_req_id: auth_request_id
20-
).access_token
21+
request_access_token(auth_req_id: auth_req_id).access_token
2122
end
2223

2324
def bc_authorize(purpose:, api_scope:, login_hint:)
@@ -31,5 +32,16 @@ def bc_authorize(purpose:, api_scope:, login_hint:)
3132
type: Post
3233
)
3334
end
35+
36+
def request_access_token(auth_req_id:)
37+
request(
38+
"/oauth2/token",
39+
params: {
40+
grant_type: 'urn:openid:params:grant-type:ciba',
41+
auth_req_id: auth_req_id
42+
},
43+
type: Post
44+
)
45+
end
3446
end
3547
end

test/vonage/network_authentication/client_test.rb

-4
Original file line numberDiff line numberDiff line change
@@ -14,10 +14,6 @@ def example_oidc_auth_code
1414
'0dadaeb4-7c79-4d39-b4b0-5a6cc08bf537'
1515
end
1616

17-
def example_redirect_uri
18-
'https://example.com/callback'
19-
end
20-
2117
def example_purpose
2218
'FraudPreventionAndDetection'
2319
end
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,89 @@
1+
# typed: false
2+
require_relative '../test'
3+
4+
class Vonage::NetworkAuthentication::ServerTest < Vonage::Test
5+
def server
6+
Vonage::NetworkAuthentication::Server.new(config)
7+
end
8+
9+
def token_uri
10+
"https://api-eu.vonage.com/oauth2/token"
11+
end
12+
13+
def bc_authorize_uri
14+
"https://api-eu.vonage.com/oauth2/bc-authorize"
15+
end
16+
17+
def example_purpose
18+
'FraudPreventionAndDetection'
19+
end
20+
21+
def example_api_scope
22+
'check-sim-swap'
23+
end
24+
25+
def example_login_hint
26+
'+447700900000'
27+
end
28+
29+
def test_bc_authorize_method
30+
request_params = {
31+
scope: "openid+dpv:#{example_purpose}##{example_api_scope}",
32+
login_hint: example_login_hint
33+
}
34+
35+
stub_request(:post, bc_authorize_uri).with(request(body: request_params, headers: headers)).to_return(network_authentication_oicd_response)
36+
37+
response = server.bc_authorize(purpose: example_purpose, api_scope: example_api_scope, login_hint: example_login_hint)
38+
39+
assert_kind_of Vonage::Response, response
40+
assert_equal network_authentication_auth_request_id, response.auth_req_id
41+
end
42+
43+
def test_bc_authorize_method_without_purpose
44+
assert_raises(ArgumentError) { server.bc_authorize(api_scope: example_api_scope, login_hint: example_login_hint) }
45+
end
46+
47+
def test_bc_authorize_method_without_api_scope
48+
assert_raises(ArgumentError) { server.bc_authorize(purpose: example_purpose, login_hint: example_login_hint) }
49+
end
50+
51+
def test_bc_authorize_method_without_login_hint
52+
assert_raises(ArgumentError) { server.bc_authorize(purpose: example_purpose, api_scope: example_api_scope) }
53+
end
54+
55+
def test_request_access_token_method
56+
request_params = {
57+
grant_type: 'urn:openid:params:grant-type:ciba',
58+
auth_req_id: network_authentication_auth_request_id
59+
}
60+
61+
stub_request(:post, token_uri).with(request(body: request_params, headers: headers)).to_return(network_authentication_token_response)
62+
63+
response = server.request_access_token(auth_req_id: network_authentication_auth_request_id)
64+
65+
assert_kind_of Vonage::Response, response
66+
assert_equal sample_webhook_token, response.access_token
67+
end
68+
69+
def test_request_access_token_method_without_auth_req_id
70+
assert_raises(ArgumentError) { server.request_access_token }
71+
end
72+
73+
def test_token_method
74+
bc_authorize_request_params = {
75+
scope: "openid+dpv:#{example_purpose}##{example_api_scope}",
76+
login_hint: example_login_hint
77+
}
78+
79+
request_access_token_request_params = {
80+
grant_type: 'urn:openid:params:grant-type:ciba',
81+
auth_req_id: network_authentication_auth_request_id
82+
}
83+
84+
stub_request(:post, bc_authorize_uri).with(request(body: bc_authorize_request_params, headers: headers)).to_return(network_authentication_oicd_response)
85+
stub_request(:post, token_uri).with(request(body: request_access_token_request_params, headers: headers)).to_return(network_authentication_token_response)
86+
87+
assert_equal sample_webhook_token, server.token(purpose: example_purpose, api_scope: example_api_scope, login_hint: example_login_hint)
88+
end
89+
end

test/vonage/test.rb

+10
Original file line numberDiff line numberDiff line change
@@ -358,12 +358,22 @@ def meetings_rooms_list_response_multiple
358358
}
359359
end
360360

361+
def network_authentication_auth_request_id
362+
'b1963d15-537f-459a-be89-e00fc310b82b'
363+
end
364+
361365
def network_authentication_token_response
362366
{
363367
body: '{"access_token":"' + sample_webhook_token + '", "token_type":"Bearer", "expires_in":3600}',
364368
headers: response_headers }
365369
end
366370

371+
def network_authentication_oicd_response
372+
{
373+
body: '{"auth_req_id":"' + network_authentication_auth_request_id + '", "expires_in":120, "interval": "2"}',
374+
headers: response_headers }
375+
end
376+
367377
def response
368378
{ body: '{"key":"value"}', headers: response_headers }
369379
end

0 commit comments

Comments
 (0)