forked from wanasit/google-calendar
-
Notifications
You must be signed in to change notification settings - Fork 0
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
- Loading branch information
Showing
5 changed files
with
260 additions
and
6 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,87 @@ | ||
var config = global.config = require(__dirname + '/config.js'); | ||
var util = require('util'); | ||
var should = require('should'); | ||
var async = require('async'); | ||
var needle = require('needle'); | ||
|
||
var google_calendar = require(__dirname +'/../GoogleCalendar.js'); | ||
|
||
|
||
function getAccessToken(callback){ | ||
|
||
var url = 'https://accounts.google.com/o/oauth2/token'; | ||
var content = { | ||
refresh_token: config.refresh_token, | ||
client_id: config.consumer_key, | ||
client_secret: config.consumer_secret, | ||
grant_type:'refresh_token', | ||
} | ||
|
||
needle.post(url, content, function(err, resp, body) { | ||
if(resp.statusCode != 200){ | ||
return callback(body, null, null); | ||
} | ||
|
||
return callback(null, body.access_token, new Date().getTime() + (body.expires_in-3) * 1000); | ||
}) | ||
} | ||
|
||
describe('google_calendar.calendar',function() { | ||
|
||
var gcal = null; | ||
before(function(done) { | ||
getAccessToken(function(err, access_token) { | ||
if(err) return done(err); | ||
gcal = google_calendar(access_token); | ||
done(); | ||
}) | ||
}) | ||
|
||
describe('#get()',function() { | ||
|
||
it('return the calendar' , function(done){ | ||
|
||
gcal.calendarList.list(function(err, _result) { | ||
|
||
should.not.exist(err); | ||
should.exist(_result); | ||
should.exist(_result.items[0]); | ||
|
||
gcal.calendars.get(_result.items[0].id,function(err, result) { | ||
|
||
should.not.exist(err); | ||
should.exist(result); | ||
result.id.should.equal(_result.items[0].id) | ||
result.kind.should.equal('calendar#calendar') | ||
done() | ||
}) | ||
}) | ||
}) | ||
}) | ||
|
||
|
||
describe('insert and delete',function() { | ||
|
||
var inserted_calendar_id = null; | ||
var calendar = { summary: 'Test' } | ||
|
||
it('return create a new calendar and delete it' , function(done){ | ||
gcal.calendars.insert(calendar, function(err, result) { | ||
|
||
should.not.exist(err); | ||
should.exist(result); | ||
inserted_calendar_id = result.id | ||
|
||
gcal.calendars.delete(inserted_calendar_id, function(err, result) { | ||
should.not.exist(err); | ||
should.exist(result); | ||
|
||
done() | ||
}) | ||
}) | ||
}) | ||
|
||
}) | ||
|
||
}) | ||
|
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,69 @@ | ||
var config = global.config = require(__dirname + '/config.js'); | ||
var util = require('util'); | ||
var should = require('should'); | ||
var async = require('async'); | ||
var needle = require('needle'); | ||
|
||
var google_calendar = require(__dirname +'/../GoogleCalendar.js'); | ||
|
||
|
||
function getAccessToken(callback){ | ||
|
||
var url = 'https://accounts.google.com/o/oauth2/token'; | ||
var content = { | ||
refresh_token: config.refresh_token, | ||
client_id: config.consumer_key, | ||
client_secret: config.consumer_secret, | ||
grant_type:'refresh_token', | ||
} | ||
|
||
needle.post(url, content, function(err, resp, body) { | ||
if(resp.statusCode != 200){ | ||
return callback(body, null, null); | ||
} | ||
|
||
return callback(null, body.access_token, new Date().getTime() + (body.expires_in-3) * 1000); | ||
}) | ||
} | ||
|
||
describe('google_calendar.calendarList',function() { | ||
|
||
var gcal = null; | ||
before(function(done) { | ||
getAccessToken(function(err, access_token) { | ||
if(err) return done(err); | ||
gcal = google_calendar(access_token); | ||
done(); | ||
}) | ||
}) | ||
|
||
describe('#list()',function() { | ||
|
||
it('return the calendar list' , function(done){ | ||
|
||
gcal.calendarList.list(function(err, result) { | ||
|
||
should.not.exist(err); | ||
should.exist(result); | ||
should.exist(result.items); | ||
should.exist(result.items.length); | ||
done(); | ||
}) | ||
}) | ||
|
||
it('return the calendar list with parameters' , function(done){ | ||
|
||
gcal.calendarList.list({maxResults:1}, function(err, result) { | ||
|
||
should.not.exist(err); | ||
should.exist(result); | ||
should.exist(result.items); | ||
should.exist(result.items.length); | ||
result.items.should.have.length(1); | ||
done(); | ||
}) | ||
}) | ||
}) | ||
|
||
}) | ||
|
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,94 @@ | ||
var config = global.config = require(__dirname + '/config.js'); | ||
var util = require('util'); | ||
var should = require('should'); | ||
var async = require('async'); | ||
var needle = require('needle'); | ||
|
||
var google_calendar = require(__dirname +'/../GoogleCalendar.js'); | ||
|
||
|
||
function getAccessToken(callback){ | ||
|
||
var url = 'https://accounts.google.com/o/oauth2/token'; | ||
var content = { | ||
refresh_token: config.refresh_token, | ||
client_id: config.consumer_key, | ||
client_secret: config.consumer_secret, | ||
grant_type:'refresh_token', | ||
} | ||
|
||
needle.post(url, content, function(err, resp, body) { | ||
if(resp.statusCode != 200){ | ||
return callback(body, null, null); | ||
} | ||
|
||
return callback(null, body.access_token, new Date().getTime() + (body.expires_in-3) * 1000); | ||
}) | ||
} | ||
|
||
describe('google_calendar.events',function() { | ||
|
||
var gcal = null; | ||
var calendar_id = null; | ||
|
||
before(function(done) { | ||
getAccessToken(function(err, access_token) { | ||
if(err) return done(err); | ||
gcal = google_calendar(access_token); | ||
gcal.calendars.insert({summary:'Test'}, function(err, result) { | ||
|
||
should.not.exist(err); | ||
should.exist(result); | ||
calendar_id = result.id | ||
|
||
done(); | ||
}) | ||
}) | ||
}) | ||
|
||
after(function(done) { | ||
gcal.calendars.delete(calendar_id, function(err, result) { | ||
done(); | ||
}) | ||
}) | ||
|
||
describe('#list()',function() { | ||
|
||
it('return the events list' , function(done){ | ||
gcal.events.list(calendar_id, function(err, result) { | ||
|
||
should.not.exist(err); | ||
should.exist(result); | ||
should.exist(result.items); | ||
should.exist(result.items.length); | ||
done() | ||
}) | ||
}) | ||
}) | ||
|
||
|
||
|
||
describe('#insert()',function() { | ||
|
||
var event = { summary:'Hello World' , | ||
start: { dateTime: new Date().toISOString() }, | ||
end: { dateTime: new Date().toISOString() } | ||
} | ||
|
||
it('return an event' , function(done){ | ||
gcal.events.insert(calendar_id, event, function(err, result) { | ||
|
||
should.not.exist(err); | ||
should.exist(result); | ||
should.exist(result.id); | ||
|
||
result.summary.should.equal(event.summary); | ||
done() | ||
}) | ||
}) | ||
}) | ||
|
||
|
||
|
||
}) | ||
|