forked from mozilla/persona
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathsession-context-test.js
executable file
·106 lines (91 loc) · 2.7 KB
/
session-context-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
#!/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');
var suite = vows.describe('session-context');
// disable vows (often flakey?) async error behavior
suite.options.error = false;
start_stop.addStartupBatches(suite);
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: 'https://fakesite.com'
}),
"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": {
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);
}
}
});
suite.addBatch({
"session context": {
topic: wsapi.get('/wsapi/session_context'),
"contains values expected": function(err, r) {
assert.isNull(err);
var resp = JSON.parse(r.body);
assert.strictEqual(typeof resp.csrf_token, 'string');
var serverTime = new Date(resp.server_time);
assert.ok(new Date() - serverTime < 5000);
assert.strictEqual(resp.authenticated, true);
assert.strictEqual(resp.auth_level, 'password');
var domainKeyCreation = new Date(resp.domain_key_creation_time);
assert.ok(new Date() - serverTime < 365 * 24 * 60 * 60 * 1000);
assert.strictEqual(typeof resp.random_seed, 'string');
assert.strictEqual(resp.userid, 1);
}
}
});
start_stop.addShutdownBatches(suite);
// run or export the suite.
if (process.argv[1] === __filename) suite.run();
else suite.export(module);