forked from mozilla/persona
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpassword-length-test.js
executable file
·88 lines (77 loc) · 2.55 KB
/
password-length-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
#!/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'),
email = require('../lib/email.js');
var suite = vows.describe('password-length');
// disable vows (often flakey?) async error behavior
suite.options.error = false;
start_stop.addStartupBatches(suite);
var token = undefined;
suite.addBatch({
"get csrf token": {
topic: wsapi.get('/wsapi/session_context'),
"works": function (err, r) {
assert.equal(typeof r.body, 'string');
var v = JSON.parse(r.body);
assert.equal(typeof v, 'object');
assert.equal(typeof v.csrf_token, 'string');
assert.equal(typeof v.server_time, 'number');
}
}
});
// first stage the account
suite.addBatch({
"a password that is non-existent": {
topic: wsapi.post('/wsapi/stage_user', {
email: '[email protected]',
site:'https://fakesite.com:123'
}),
"causes a HTTP error response": function(err, r) {
assert.equal(r.code, 400);
assert.strictEqual(JSON.parse(r.body).success, false);
}
},
"a password that is too short": {
topic: wsapi.post('/wsapi/stage_user', {
email: '[email protected]',
pass: '0123456', // less than 8 chars, invalid
site:'https://fakesite.com:123'
}),
"causes a HTTP error response": function(err, r) {
assert.equal(r.code, 400);
assert.equal(JSON.parse(r.body).success, false);
}
},
"a password that is too long": {
topic: wsapi.post('/wsapi/stage_user', {
email: '[email protected]',
pass: '012345678901234567890123456789012345678901234567890123456789012345678901234567891', // more than 81 chars, invalid.
site:'https://fakesite.com:123'
}),
"causes a HTTP error response": function(err, r) {
assert.equal(r.code, 400);
assert.equal(JSON.parse(r.body).success, false);
}
},
"but a password that is just right": {
topic: wsapi.post('/wsapi/stage_user', {
email: '[email protected]',
pass: 'ahhh. this is just right.',
site:'https://fakesite.com:123'
}),
"works just fine": function(err, r) {
assert.equal(r.code, 200);
}
}
});
start_stop.addShutdownBatches(suite);
// run or export the suite.
if (process.argv[1] === __filename) suite.run();
else suite.export(module);