-
Notifications
You must be signed in to change notification settings - Fork 10
/
Copy pathgoogleAuthUrl.js
113 lines (92 loc) · 3.57 KB
/
googleAuthUrl.js
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
require('chai').should();
var grasshopperLib = require('../lib/grasshopper'),
grasshopperConfig = require('../lib/config'),
grasshopper,
config;
function getConfig() {
'use strict';
return {
db: {},
crypto: {},
cache: {},
assets: {},
logger : {},
identities : {
google : {
appId : "blahBlahBlackSheep",
secret : "ohhSooSecret",
redirectUrl : "/this/that",
scopes : [
"https://www.googleapis.com/auth/userinfo.profile",
"https://www.googleapis.com/auth/userinfo.email"
],
tokenEndpoint : 'https://www.googleapis.com/oauth2/v1/userinfo?alt=json&access_token=',
oauthCallback : 'http://localhost:2000'
}
}
};
}
describe('Grasshopper utils - googleAuthUrl', function(){
'use strict';
beforeEach(function() {
config = getConfig();
grasshopper = grasshopperLib(config);
});
describe('should return a friendly error message', function() {
it('if identities.google is not available on your ghapi config', function(done) {
delete grasshopperConfig.identities.google;
grasshopper.googleAuthUrl()
.then()
.fail(function(err) {
err.should.equal('Cannot Generate URL: Your ghapi config does not have a identities.google object.');
})
.done(done);
});
it('if identities.google.appId is not available on your ghapi config', function(done) {
delete grasshopperConfig.identities.google.appId;
grasshopper.googleAuthUrl()
.then()
.fail(function(err) {
err.should.equal('Cannot Generate URL: You need a google app id on your ghapi config.');
})
.done(done);
});
it('if identities.google.secret is not available on your ghapi config', function(done) {
delete grasshopperConfig.identities.google.secret;
grasshopper.googleAuthUrl()
.then()
.fail(function(err) {
err.should.equal('Cannot Generate URL: You need a google secret on your ghapi config.');
})
.done(done);
});
it('if identities.google.redirectUrl is not available on your ghapi config', function(done) {
delete grasshopperConfig.identities.google.redirectUrl;
grasshopper.googleAuthUrl()
.then()
.fail(function(err) {
err.should.equal('Cannot Generate URL: You need a google redirectUrl on your ghapi config.');
})
.done(done);
});
it('if identities.google.scopes is not available on your ghapi config', function(done) {
delete grasshopperConfig.identities.google.scopes;
grasshopper.googleAuthUrl()
.then()
.fail(function(err) {
err.should.equal('Cannot Generate URL: You need a google scopes array on your ghapi config.');
})
.done(done);
});
});
it('should return a google auth url', function(done){
grasshopper.googleAuthUrl()
.then(function(url) {
url.should.be.a.string;
})
.fail(function() {
true.should.equal(false); // it should not get here.
})
.done(done);
});
});