forked from mozilla/persona
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathsession-duration-test.js
executable file
·243 lines (215 loc) · 6.4 KB
/
session-duration-test.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
#!/usr/bin/env node
/* This Source Code Form is subject to the terms of the Mozilla Public
* License, v. 2.0. If a copy of the MPL was not distributed with this
* file, You can obtain one at http://mozilla.org/MPL/2.0/. */
require('./lib/test_env.js');
const assert =
require('assert'),
vows = require('vows'),
start_stop = require('./lib/start-stop.js'),
wsapi = require('./lib/wsapi.js'),
db = require('../lib/db.js'),
config = require('../lib/configuration.js'),
primary = require('./lib/primary.js'),
ca = require('../lib/keysigner/ca.js'),
jwcrypto = require('jwcrypto');
var suite = vows.describe('session-context');
// disable vows (often flakey?) async error behavior
suite.options.error = false;
start_stop.addStartupBatches(suite);
// test that auth_with_assertion also respects the 'ephemeral' argument
const PRIMARY_DOMAIN = 'example.domain',
PRIMARY_EMAIL = 'testuser@' + PRIMARY_DOMAIN,
PRIMARY_ORIGIN = 'http://127.0.0.1:10002';
// here we go! let's authenticate with an assertion from
// a primary.
var primaryUser = new primary({
email: PRIMARY_EMAIL,
domain: PRIMARY_DOMAIN
});
suite.addBatch({
"setup user": {
topic: function() {
primaryUser.setup(this.callback);
},
"works": function(err) {
assert.isNull(err);
assert.isObject(primaryUser._keyPair);
assert.isString(primaryUser._cert);
}
}
});
suite.addBatch({
"generating an assertion": {
topic: function() {
primaryUser.getAssertion(PRIMARY_ORIGIN, this.callback);
},
"succeeds": function(err, r) {
assert.isString(r);
},
"and logging in with the assertion with ephemeral = true": {
topic: function(err, assertion) {
wsapi.post('/wsapi/auth_with_assertion', {
assertion: assertion,
ephemeral: true
}).call(this);
},
"works": function(err, r) {
var resp = JSON.parse(r.body);
assert.isObject(resp);
assert.isTrue(resp.success);
},
"has expected duration": function(err, r) {
assert.strictEqual(parseInt(wsapi.getCookie(/^browserid_state/).split('.')[3], 10), config.get('ephemeral_session_duration_ms'));
}
}
}
});
suite.addBatch({
"generating an assertion": {
topic: function() {
primaryUser.getAssertion(PRIMARY_ORIGIN, this.callback);
},
"succeeds": function(err, r) {
assert.isString(r);
},
"and logging in with the assertion with ephemeral = false": {
topic: function(err, assertion) {
wsapi.post('/wsapi/auth_with_assertion', {
assertion: assertion,
ephemeral: false
}).call(this);
},
"works": function(err, r) {
var resp = JSON.parse(r.body);
assert.isObject(resp);
assert.isTrue(resp.success);
},
"has expected duration": function(err, r) {
assert.strictEqual(parseInt(wsapi.getCookie(/^browserid_state/).split('.')[3], 10), config.get('authentication_duration_ms'));
}
}
}
});
// now test that authenticate_user & secondary emails properly respect the 'ephemeral' argument to
// alter session length
const TEST_EMAIL = '[email protected]',
PASSWORD = 'thisismypassword';
var token = undefined;
// first stage the account
suite.addBatch({
"account staging": {
topic: wsapi.post('/wsapi/stage_user', {
email: TEST_EMAIL,
pass: PASSWORD,
site: 'http://a.really.fakesite123.com:999'
}),
"works": function(err, r) {
assert.equal(r.code, 200);
}
}
});
// wait for the token
suite.addBatch({
"a token": {
topic: function() {
start_stop.waitForToken(this.callback);
},
"is obtained": function (t) {
assert.strictEqual(typeof t, 'string');
token = t;
}
}
});
// create a new account via the api with (first address)
suite.addBatch({
"setting password": {
topic: function() {
wsapi.post('/wsapi/complete_user_creation', {
token: token
}).call(this);
},
"works just fine": function(err, r) {
assert.equal(r.code, 200);
}
}
});
suite.addBatch({
"authenticating with the password and ephemeral = true": {
topic: wsapi.post('/wsapi/authenticate_user', {
email: TEST_EMAIL,
pass: PASSWORD,
ephemeral: true
}),
"works as expected": function(err, r) {
assert.strictEqual(JSON.parse(r.body).success, true);
},
"yields a session of expected length": function(err, r) {
assert.strictEqual(parseInt(wsapi.getCookie(/^browserid_state/).split('.')[3], 10), config.get('ephemeral_session_duration_ms'));
}
}
});
suite.addBatch({
"authenticating with the password and ephemeral = false": {
topic: wsapi.post('/wsapi/authenticate_user', {
email: TEST_EMAIL,
pass: PASSWORD,
ephemeral: false
}),
"works as expected": function(err, r) {
assert.strictEqual(JSON.parse(r.body).success, true);
},
"yields a session of expected length": function(err, r) {
assert.strictEqual(parseInt(wsapi.getCookie(/^browserid_state/).split('.')[3], 10), config.get('authentication_duration_ms'));
}
}
});
// finally, let's verify that ephemeral is properly handled when certifying keys for a user
var kp = null;
assert.within = function(got, expected, margin) {
assert.ok(got + margin > expected);
assert.ok(got - margin < expected);
}
suite.addBatch({
"generate keypair": {
topic: function() {
jwcrypto.generateKeypair({algorithm:"RS", keysize: 64}, this.callback);
},
"works": function(err, keypair) {
assert.isNull(err);
kp = keypair;
}
}
});
suite.addBatch({
"cert_key invoked with ephemeral = false": {
topic: function() {
wsapi.post('/wsapi/cert_key', {
email: TEST_EMAIL,
pubkey: kp.publicKey.serialize(),
ephemeral: false
}).call(this);
},
"returns a response with a proper content-type" : function(err, r) {
assert.strictEqual(r.code, 200);
}
}
});
suite.addBatch({
"cert_key invoked with ephemeral = true": {
topic: function() {
wsapi.post('/wsapi/cert_key', {
email: TEST_EMAIL,
pubkey: kp.publicKey.serialize(),
ephemeral: true
}).call(this);
},
"returns a response with a proper content-type" : function(err, r) {
assert.strictEqual(r.code, 200);
}
}
});
start_stop.addShutdownBatches(suite);
// run or export the suite.
if (process.argv[1] === __filename) suite.run();
else suite.export(module);