Press n or j to go to the next uncovered block, b, p or k for the previous block.
| 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 247 248 249 250 251 252 253 254 255 256 257 258 259 260 261 262 263 264 265 266 267 268 269 270 271 272 273 274 275 276 277 278 279 280 281 282 283 284 285 286 287 288 289 290 291 292 293 294 295 296 297 298 299 300 301 302 303 304 305 306 307 308 309 310 311 312 313 314 315 316 317 318 319 320 321 322 323 324 325 | 1x 1x 1x 1x 1x 1x 1x 1x 1x 16x 16x 16x 16x 16x 1x 1x 1x 1x 1x 1x 1x 1x 1x 1x 1x 1x 1x 1x 1x 1x 1x 1x 1x 1x 1x 1x 1x 1x 1x 1x 1x 1x 1x 1x 1x 1x 1x 1x 1x 1x 1x 1x 1x 1x 1x 1x 1x 1x 1x 1x 1x 1x 1x 1x 1x 1x 1x 1x 1x 1x 1x 1x 1x 1x 1x 1x 1x 1x 1x 1x 1x 1x 1x 1x 1x 1x 1x 1x 1x 1x 1x 1x 1x 1x 1x 1x 1x 1x 1x 1x 1x 1x 1x 1x 1x 1x 1x 1x | import request from 'supertest';
import app from '../../../app';
import {expect} from 'chai';
import {syncPromise} from '../../../db';
import config from '../../../config';
import jsonwebtoken from 'jsonwebtoken';
describe('SignUpValidator', function() {
const csrfHeaderName = config.jwt.securityOptions.tokenName.toLowerCase();
let jwt: string;
let csrf: string;
/**
* Wait for sync of database before each test
*/
beforeEach(async function() {
jwt = 'FAIL';
// Get csrf token
csrf = await request(app).head('/auth')
.then((response) => {
// Save jwt cookie
jwt = response.header['set-cookie'].pop().split(';')[0];
return response.header[csrfHeaderName];
});
return syncPromise;
});
describe('returns 400 if', function() {
it('request is missing username', async function() {
const body = {
password: 'password',
email: 'demo@mail.com',
};
return (request(app)
.post('/auth/sign-up')
.set('Cookie', [jwt])
.set(csrfHeaderName, csrf)
.send(body))
.expect(400)
.then((response) => {
expect(response.body).to.have.property('statusCode', 400);
expect(response.body).to.have.property('status');
expect(response.body).to.have.property('message');
expect(response.body).to.have.property('timestamp');
});
});
it('username is shorter than 4 characters', async function() {
const body = {
username: 'abc',
password: 'password',
email: 'demo@mail.com',
};
return (request(app)
.post('/auth/sign-up')
.set('Cookie', [jwt])
.set(csrfHeaderName, csrf)
.send(body))
.expect(400)
.then((response) => {
expect(response.body).to.have.property('statusCode', 400);
expect(response.body).to.have.property('status');
expect(response.body).to.have.property('message');
expect(response.body).to.have.property('timestamp');
});
});
it('username is longer than 25 characters', async function() {
const body = {
username: 'B'.repeat(26),
password: 'password',
email: 'demo@mail.com',
};
return (request(app)
.post('/auth/sign-up')
.set('Cookie', [jwt])
.set(csrfHeaderName, csrf)
.send(body))
.expect(400)
.then((response) => {
expect(response.body).to.have.property('statusCode', 400);
expect(response.body).to.have.property('status');
expect(response.body).to.have.property('message');
expect(response.body).to.have.property('timestamp');
});
});
it('username contains whitespace', async function() {
const body = {
username: 'Basdf asdf',
password: 'password',
email: 'demo@mail.com',
};
return (request(app)
.post('/auth/sign-up')
.set('Cookie', [jwt])
.set(csrfHeaderName, csrf)
.send(body))
.expect(400)
.then((response) => {
expect(response.body).to.have.property('statusCode', 400);
expect(response.body).to.have.property('status');
expect(response.body).to.have.property('message');
expect(response.body).to.have.property('timestamp');
});
});
it('request is missing password', function() {
const body = {
username: 'demo',
email: 'demo@mail.com',
};
return (request(app)
.post('/auth/sign-up')
.set('Cookie', [jwt])
.set(csrfHeaderName, csrf)
.send(body))
.expect(400)
.then((response) => {
expect(response.body).to.have.property('statusCode', 400);
expect(response.body).to.have.property('status');
expect(response.body).to.have.property('message');
expect(response.body).to.have.property('timestamp');
});
});
it('password is shorter than 6 characters', function() {
const body = {
username: 'demo',
password: '12345',
email: 'demo@mail.com',
};
return (request(app)
.post('/auth/sign-up')
.set('Cookie', [jwt])
.set(csrfHeaderName, csrf)
.send(body))
.expect(400)
.then((response) => {
expect(response.body).to.have.property('statusCode', 400);
expect(response.body).to.have.property('status');
expect(response.body).to.have.property('message');
expect(response.body).to.have.property('timestamp');
});
});
it('password is longer than 255 characters', function() {
const body = {
username: 'demo',
password: 'A'.repeat(256),
email: 'demo@mail.com',
};
return (request(app)
.post('/auth/sign-up')
.set('Cookie', [jwt])
.set(csrfHeaderName, csrf)
.send(body))
.expect(400)
.then((response) => {
expect(response.body).to.have.property('statusCode', 400);
expect(response.body).to.have.property('status');
expect(response.body).to.have.property('message');
expect(response.body).to.have.property('timestamp');
});
});
it('request is missing email', function() {
const body = {
password: 'password',
username: 'demo',
};
return (request(app)
.post('/auth/sign-up')
.set('Cookie', [jwt])
.set(csrfHeaderName, csrf)
.send(body))
.expect(400)
.then((response) => {
expect(response.body).to.have.property('statusCode', 400);
expect(response.body).to.have.property('status');
expect(response.body).to.have.property('message');
expect(response.body).to.have.property('timestamp');
});
});
it('email property is not a valid email', function() {
const body = {
username: 'demo',
password: '12345',
email: 'demo',
};
return (request(app)
.post('/auth/sign-up')
.set('Cookie', [jwt])
.set(csrfHeaderName, csrf)
.send(body))
.expect(400)
.then((response) => {
expect(response.body).to.have.property('statusCode', 400);
expect(response.body).to.have.property('status');
expect(response.body).to.have.property('message');
expect(response.body).to.have.property('timestamp');
});
});
});
it('creates new user', function() {
const body = {
username: 'demo',
password: '123456',
email: 'demo@mail.com',
};
return request(app)
.post('/auth/sign-up')
.set('Cookie', [jwt])
.set(csrfHeaderName, csrf)
.send(body)
.expect(201)
.then((response) => {
expect(response.body).to.have.property('username', body.username);
expect(response.body).to.have.property('email', body.email);
expect(response.body).to.have.not.property('password');
expect(response.body).to.have.property('createdAt');
expect(response.body).to.have.property('updatedAt');
expect(response.body).to.have.property('deletedAt');
});
});
describe('responses with 401', function() {
it('if request is missing a jwt token', function() {
const body = {
username: 'test',
password: 'testPassword',
};
return request(app).put('/auth/login')
.send(body)
.expect(401);
});
it('if jwt token exists but without secret', function() {
const body = {
username: 'test',
password: 'testPassword',
};
return request(app).put('/auth/login')
.send(body)
.expect(401);
});
it('if csrf header exist but no jwt', function() {
const body = {
username: 'test',
password: 'testPassword',
};
jwt = jsonwebtoken.sign({username: 'username'},
config.jwt.secret,
config.jwt.getOptions());
return request(app).put('/auth/login')
.send(body)
.set('Cookie', [jwt])
.expect(401);
});
it('if jwt token with secret exists ' +
'but no header for the csrf token', function() {
const body = {
username: 'test',
password: 'testPassword',
};
return request(app).put('/auth/login')
.set('Cookie', [jwt])
.send(body)
.expect(401);
});
it('if jwt token and csrf header ' +
'exist, but jwt token has no secret', function() {
const body = {
username: 'test',
password: 'testPassword',
};
jwt = jsonwebtoken.sign({username: 'username'},
config.jwt.secret,
config.jwt.getOptions());
return request(app).put('/auth/login')
.set(csrfHeaderName, csrf)
.set('Cookie', [jwt])
.send(body)
.expect(401);
});
it('if jwt token with secret and csrf ' +
'header exist, but they don\'t belong together', function() {
const body = {
username: 'test',
password: 'testPassword',
};
return request(app).put('/auth/login')
.set(csrfHeaderName, 'FAIL')
.set('Cookie', [jwt])
.send(body)
.expect(401);
});
});
});
|