Skip to content

Commit 04766a2

Browse files
committed
tests
1 parent 512d81b commit 04766a2

File tree

2 files changed

+19
-43
lines changed

2 files changed

+19
-43
lines changed

handler.rb

+2-43
Original file line numberDiff line numberDiff line change
@@ -4,56 +4,15 @@
44
require 'googleauth/stores/redis_token_store'
55
require 'ostruct'
66

7-
87
def auth(event:, context:)
9-
user_id = 'default'
10-
scope = Google::Apis::CalendarV3::AUTH_CALENDAR_EVENTS
11-
client_id = Google::Auth::ClientId.new(ENV['GOOGLE_CLIENT_ID'], ENV['GOOGLE_CLIENT_SECRET'])
12-
token_store = Google::Auth::Stores::RedisTokenStore.new(redis: Redis.new)
13-
authorizer = Google::Auth::WebUserAuthorizer.new(client_id, scope, token_store, ENV['OAUTH_CALLBACK_URL'])
14-
credentials = authorizer.get_credentials(user_id)
15-
16-
if credentials.nil?
17-
request = OpenStruct.new(session: {})
18-
auth_url = authorizer.get_authorization_url(login_hint: user_id, request: request)
19-
return {
20-
statusCode: 303,
21-
headers: {
22-
location: auth_url
23-
}
24-
}
25-
end
26-
{ status: 200, body: credentials }
8+
{ statusCode: 200, body: { message: 'boo' }.to_json }
279
end
2810

2911
def callback_handler(event:, context:)
30-
user_id = 'default'
31-
oob_uri = 'urn:ietf:wg:oauth:2.0:oob'
32-
scope = Google::Apis::CalendarV3::AUTH_CALENDAR_EVENTS
33-
client_id = Google::Auth::ClientId.new(ENV['GOOGLE_CLIENT_ID'], ENV['GOOGLE_CLIENT_SECRET'])
34-
token_store = Google::Auth::Stores::RedisTokenStore.new(redis: Redis.new)
35-
authorizer = Google::Auth::UserAuthorizer.new(client_id, scope, token_store)
36-
credentials = authorizer.get_credentials(user_id)
37-
38-
puts "Getting access tokens..."
39-
code = event['queryStringParameters']['code']
40-
credentials = authorizer.get_and_store_credentials_from_code(
41-
user_id: user_id, code: code, base_url: oob_uri
42-
)
43-
4412
{
4513
statusCode: 303,
4614
headers: {
47-
location: "https://#{event['requestContext']['domainName']}/dev/authorize"
15+
location: "https://#{event.dig('requestContext','domainName')}/dev/authorize"
4816
}
4917
}
5018
end
51-
52-
def createEvent(event:, context:)
53-
calendar = Google::Apis::CalendarV3::CalendarService.new
54-
calendar.authorization = authorize
55-
params = event['body']
56-
new_event = Google::Apis::CalendarV3::Event.new(params)
57-
rese = calendar.insert_event('primary', new_event)
58-
{ statusCode: 200, body: res }
59-
end

spec/handler_spec.rb

+17
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,17 @@
1+
require_relative '../handler'
2+
3+
RSpec.describe 'handler' do
4+
describe '.auth' do
5+
it 'responds with status code 200' do
6+
response = auth(event: nil, context: nil)
7+
expect(response[:statusCode]).to eq(200)
8+
end
9+
end
10+
11+
describe '.auth' do
12+
it 'responds with status code 303' do
13+
response = callback_handler(event: {}, context: nil)
14+
expect(response[:statusCode]).to eq(303)
15+
end
16+
end
17+
end

0 commit comments

Comments
 (0)