-
Notifications
You must be signed in to change notification settings - Fork 9
/
Copy pathapi.user-verification.js
246 lines (214 loc) · 11.3 KB
/
api.user-verification.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
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
const should = require('should');
const flow = require('nimble');
const httpStatus = require('http-status');
const superagent = require('superagent-ls');
const requireNew = require('require-new');
const wipe = require('./fixture-helpers/wipe');
const setup = require('./fixture-helpers/setup');
const config = require('../config');
const ESDR_API_ROOT_URL = config.get("esdr:apiRootUrl");
const ESDR_USER_VERIFICATION_API_URL = ESDR_API_ROOT_URL + "/user-verification";
describe("REST API", function() {
const client1 = requireNew('./fixtures/client1.json');
const user1 = requireNew('./fixtures/user1.json');
const user2 = requireNew('./fixtures/user2.json');
before(function(initDone) {
flow.series(
[
wipe.wipeAllData,
function(done) {
setup.createClient(client1, done);
},
function(done) {
setup.createUser(user1, done);
},
function(done) {
setup.createUser(user2, done);
}
],
initDone
);
});
describe("User Verification", function() {
const testRequestVerificationToken = function(test) {
const client = test.client || client1;
it(test.description, function(done) {
superagent
.post(ESDR_USER_VERIFICATION_API_URL)
.auth(client.clientName, client.clientSecret)
.send({ email : test.email })
.end(function(err, res) {
should.not.exist(err);
should.exist(res);
res.should.have.property('status', test.expectedHttpStatus);
res.should.have.property('body');
res.body.should.have.properties({
code : test.expectedHttpStatus,
status : test.expectedStatusText || 'success'
});
if (typeof test.expectedResponseData !== 'undefined') {
res.body.should.have.property('data');
if (typeof res.body.data.isVerified !== 'undefined') {
if (res.body.data.isVerified) {
res.body.data.verified.should.not.equal('0000-00-00 00:00:00');
}
else {
res.body.data.verified.should.equal('0000-00-00 00:00:00');
}
}
res.body.data.should.have.properties(test.expectedResponseData);
}
done();
});
});
};
const testVerifyUser = function(test) {
it(test.description, function(done) {
superagent
.put(ESDR_USER_VERIFICATION_API_URL)
.send({ token : test.verificationToken })
.end(function(err, res) {
should.not.exist(err);
should.exist(res);
res.should.have.property('status', test.expectedHttpStatus);
res.should.have.property('body');
res.body.should.have.properties({
code : test.expectedHttpStatus,
status : test.expectedStatusText || 'success'
});
res.body.should.have.property('data');
res.body.data.should.have.properties(test.expectedResponseData);
done();
});
});
};
testRequestVerificationToken({
description : "Should be able to request that the verification token be sent " +
"again (after creation, before verification)",
email : user1.email,
expectedHttpStatus : httpStatus.CREATED,
expectedResponseData : {
email : user1.email,
isVerified : false,
verified : '0000-00-00 00:00:00',
verificationToken : user1.verificationToken
}
});
testVerifyUser({
description : "Should be able to verify a user",
verificationToken : user1.verificationToken,
expectedHttpStatus : httpStatus.OK,
expectedResponseData : {
isVerified : true
}
});
testVerifyUser({
description : "Should be able to verify another user",
verificationToken : user2.verificationToken,
expectedHttpStatus : httpStatus.OK,
expectedResponseData : {
isVerified : true
}
});
testRequestVerificationToken({
description : "Should be able to request that the verification token be sent " +
"again (after creation, after verification)",
email : user1.email,
expectedHttpStatus : httpStatus.OK,
expectedResponseData : {
email : user1.email,
isVerified : true,
verificationToken : user1.verificationToken
}
});
testRequestVerificationToken({
description : "Should return the same thing if a request to send the " +
"verification token is made again",
email : user1.email,
expectedHttpStatus : httpStatus.OK,
expectedResponseData : {
email : user1.email,
isVerified : true,
verificationToken : user1.verificationToken
}
});
it("A request for the verification token to be sent should not require client authentication", function(done) {
superagent
.post(ESDR_USER_VERIFICATION_API_URL)
.send({ email : user1.email })
.end(function(err, res) {
should.not.exist(err);
should.exist(res);
res.should.have.property('status', httpStatus.OK);
res.should.have.property('body');
res.body.should.have.properties({
code : httpStatus.OK,
status : 'success'
});
res.body.should.have.property('data');
res.body.data.should.have.properties({
email : user1.email,
isVerified : true,
verificationToken : user1.verificationToken
});
res.body.data.should.have.property('isVerified');
res.body.data.verified.should.not.equal('0000-00-00 00:00:00');
done();
});
});
testRequestVerificationToken({
description : "A request for the verification token to be sent should fail if " +
"the client authentication is invalid",
email : user1.email,
client : {
clientName : client1.clientName,
clientSecret : "bogus"
},
expectedHttpStatus : httpStatus.UNAUTHORIZED,
expectedStatusText : 'error'
});
it("Verification should fail for a missing verification token", function(done) {
superagent
.put(ESDR_USER_VERIFICATION_API_URL)
.end(function(err, res) {
should.not.exist(err);
should.exist(res);
res.should.have.property('status', httpStatus.UNPROCESSABLE_ENTITY);
res.should.have.property('body');
res.body.should.have.properties({
code : httpStatus.UNPROCESSABLE_ENTITY,
status : 'error'
});
res.body.should.have.property('data', null);
done();
});
});
testVerifyUser({
description : "Verification should fail for a bogus verification token",
verificationToken : "bogus",
expectedHttpStatus : httpStatus.BAD_REQUEST,
expectedStatusText : 'error',
expectedResponseData : {
isVerified : false
}
});
testRequestVerificationToken({
description : "Should fail when requesting that the verification token be sent " +
"again for an unknown user",
email : '[email protected]',
client : client1,
expectedHttpStatus : httpStatus.BAD_REQUEST,
expectedStatusText : 'error',
expectedResponseData : {
email : '[email protected]'
}
});
testRequestVerificationToken({
description : "Should fail when requesting that the verification token be sent " +
"again but the email address is not given",
client : client1,
expectedHttpStatus : httpStatus.UNPROCESSABLE_ENTITY,
expectedStatusText : 'error'
});
}); // End User Verification
}); // End REST API