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 326 327 328 329 330 331 332 333 334 335 336 337 338 339 340 341 342 343 344 345 346 347 348 349 350 351 352 353 354 355 356 357 358 359 360 361 362 363 364 365 366 367 368 369 370 371 372 373 374 375 | 1x 1x 1x 1x 1x 1x 1x 1x 1x 1x 1x 1x 1x 1x 1x 13x 13x 13x 13x 13x 13x 13x 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 8x 72x 1x 9x 1x 1x 1x 1x 9x 1x 9x 1x 1x 1x 1x 1x 1x 1x 1x 1x 1x 1x 1x 1x 1x 1x 1x 1x 1x 1x 1x 1x 1x 1x 8x 72x 8x 1x 1x 8x 72x 8x 1x 1x 1x 1x 1x 1x 1x 1x 1x 1x 1x 1x 1x 1x 1x 1x 1x 1x 1x | /* eslint-disable @typescript-eslint/no-explicit-any */
import db, {syncPromise} from '../../../../../../db';
import config from '../../../../../../config';
import supertest from 'supertest';
import {TestUtils} from '../../../../../../util/test-utils.spec';
import app from '../../../../../../app';
import {expect} from 'chai';
import {
CarColorAlreadyInUseError,
CarNameAlreadyInUseError,
MaxCarAmountReachedError,
NotAdminOfGroupError,
UnauthorizedError,
} from '../../../../../../errors';
import {
Car,
CarColor,
Group,
GroupCarAction,
User,
} from '../../../../../../models';
import {Server} from 'socket.io';
describe('post /api/group/:groupId/car', function() {
const csrfHeaderName = config.jwt.securityOptions.tokenName.toLowerCase();
let agent: supertest.SuperTest<supertest.Test>;
let csrf: string;
let user: any;
let port: number;
let io: Server;
let jwtValue: string;
before(async function() {
const socket = await TestUtils.startSocketIo();
port = socket.port;
io = socket.io;
});
beforeEach(async function() {
await syncPromise;
await db.sync({force: true});
const response = await TestUtils.signUp();
agent = response.agent;
csrf = response.csrf;
user = response. user;
jwtValue = response.jwtValue;
});
after(function() {
io.close();
});
describe('if user not logged in', function() {
it('responses with 401 UnauthorizedError', function() {
return supertest(app).post('/api/group/4/car')
.set(csrfHeaderName, csrf)
.send()
.expect(401)
.then((res) => {
expect(res.body.message).to.equal(new UnauthorizedError().message);
});
});
});
describe('if user logged in', function() {
describe('responses with 400 InvalidRequestError if', function() {
it('if groupId is not numeric', function() {
return agent
.post('/api/group/test/car')
.set(csrfHeaderName, csrf)
.send({name: 'TEST', color: 'Red'})
.expect(400)
.then((res) => {
expect(res.body.message)
.to.include('groupId has to be a number');
});
});
it('if name is not a string', function() {
return agent
.post('/api/group/1/car')
.set(csrfHeaderName, csrf)
.send({name: 1, color: 'Red'})
.expect(400)
.then((res) => {
expect(res.body.message)
.to.include('name has to be a string');
});
});
it('if name is an empty string', function() {
return agent
.post('/api/group/1/car')
.set(csrfHeaderName, csrf)
.send({name: '', color: 'Red'})
.expect(400)
.then((res) => {
expect(res.body.message)
.to.include('name has to be a non empty string');
});
});
it('if color is an invalid color', function() {
return agent
.post('/api/group/1/car')
.set(csrfHeaderName, csrf)
.send({name: 'TEST', color: 'NO COLOR'})
.expect(400)
.then((res) => {
expect(res.body.message)
.to.include('color has to be an available color');
});
});
});
describe('responses with 401 NotAdminOfGroupError', function() {
it('if user is not a member of the group', function() {
return agent
.post('/api/group/1/car')
.set(csrfHeaderName, csrf)
.send({name: 'TEST', color: 'Red'})
.expect(401)
.then((res) => {
expect(res.body.message)
.to.equal(new NotAdminOfGroupError().message);
});
});
it('if user is a member but not an admin of the group', async function() {
// Create owner of group
const owner = await User.create({
username: 'OWNER',
email: 'owner@mail.com',
password: 'owner password',
});
// Create group
const group = await Group.create({
name: 'TEST',
description: 'DESC',
ownerId: owner.id,
});
return agent.post(`/api/group/${group.id}/car`)
.set(csrfHeaderName, csrf)
.send({name: 'TEST', color: 'Red'})
.expect(401)
.then((res) => {
expect(res.body.message)
.to.equal(new NotAdminOfGroupError().message);
});
});
});
it('responses with 400 MaxCarAmountReachedError if group ' +
'has max amount of cars', async function() {
// Create group
const group = await Group.create({
name: 'GROUP',
description: 'TEST',
ownerId: user.id,
});
// Create cars for the group
for (let i = 0; i < config.group.maxCars; i++) {
await Car.create({
groupId: group.id,
name: `CAR-${i}`,
color: Object.values(CarColor).filter((color) =>
isNaN(Number(color)))[i],
carId: i + 1,
});
}
return agent.post(`/api/group/${group.id}/car`)
.set(csrfHeaderName, csrf)
.send({
name: `CAR-${config.group.maxCars}`,
color: Object.values(CarColor).filter((color) =>
isNaN(Number(color)))[config.group.maxCars],
})
.expect(400)
.then((res) => {
expect(res.body.message)
.to.equal(new MaxCarAmountReachedError(
config.group.maxCars).message);
});
});
it('responses with 400 CarNameAlreadyInUserError ' +
'if car with name already exists in group', async function() {
// Create group
const group = await Group.create({
name: 'GROUP',
description: 'TEST',
ownerId: user.id,
});
// Create cars for the group
await Car.create({
groupId: group.id,
name: 'CAR',
color: Object.values(CarColor).filter((color) =>
isNaN(Number(color)))[0],
carId: 1,
});
return agent.post(`/api/group/${group.id}/car`)
.set(csrfHeaderName, csrf)
.send({
name: 'CAR',
color: Object.values(CarColor).filter((color) =>
isNaN(Number(color)))[1],
})
.expect(400)
.then((res) => {
expect(res.body.message)
.to.equal(new CarNameAlreadyInUseError('CAR').message);
});
});
it('responses with 400 CarColorAlreadyInUseError if ' +
'car with color already exists in group', async function() {
// Create group
const group = await Group.create({
name: 'GROUP',
description: 'TEST',
ownerId: user.id,
});
// Create cars for the group
await Car.create({
groupId: group.id,
name: 'CAR-1',
color: CarColor.Black,
carId: 1,
});
return agent.post(`/api/group/${group.id}/car`)
.set(csrfHeaderName, csrf)
.send({
name: 'CAR-2',
color: CarColor.Black,
})
.expect(400)
.then((res) => {
expect(res.body.message)
.to.equal(new CarColorAlreadyInUseError(CarColor.Black)
.message);
});
});
it('creates car and returns it', async function() {
// Create group
const group = await Group.create({
name: 'TEST',
description: 'DESC',
ownerId: user.id,
});
const car = {
name: 'TEST',
color: 'Red',
};
return agent.post(`/api/group/${group.id}/car`)
.set(csrfHeaderName, csrf)
.send({name: car.name, color: car.color})
.expect(201)
.then((res) => {
const {body} = res;
expect(new Date(body.createdAt)).to.be.a('date');
expect(new Date(body.updatedAt)).to.be.a('date');
expect(body.name).to.equal(car.name);
expect(body.color).to.equal(car.color);
expect(body.carId).to.be.a('number');
expect(body.groupId).to.equal(group.id);
expect(body.driverId).to.be.null;
expect(body.latitude).to.be.null;
expect(body.longitude).to.be.null;
});
});
it('increments carId within group', async function() {
const group1 = await Group.create({
ownerId: user.id,
name: 'GROUP 1',
description: 'Group 1',
});
for (let i = 0; i < config.group.maxCars; i++) {
const res = await agent.post(`/api/group/${group1.id}/car`)
.set(csrfHeaderName, csrf)
.send({
name: `Car ${i+1}`,
color: Object.values(CarColor).filter((color) =>
isNaN(Number(color)))[i],
})
.expect(201);
expect(res.body.carId).to.equal(i + 1);
}
const group2 = await Group.create({
ownerId: user.id,
name: 'GROUP 2',
description: 'Group 2',
});
for (let i = 0; i < config.group.maxCars; i++) {
const res = await agent.post(`/api/group/${group2.id}/car`)
.set(csrfHeaderName, csrf)
.send({
name: `Car ${i+1}`,
color: Object.values(CarColor).filter((color) =>
isNaN(Number(color)))[i],
})
.expect(201);
expect(res.body.carId).to.equal(i + 1);
}
});
it('emits update event in group namespace with new car', function() {
return new Promise(async (resolve, reject) => {
try {
// Create group
const group = await Group.create({
name: 'TEST',
description: 'DESC',
ownerId: user.id,
});
const car = {
name: 'TEST',
color: 'Red',
};
const socket = TestUtils.createSocket(
port,
`/group/${group.id}`,
jwtValue,
);
socket.on('update', async (res: any) => {
try {
expect(res.action).to.equal(GroupCarAction.Add);
const actualCar = res.car;
expect(actualCar.groupId).to.equal(group.id);
expect(actualCar.driverId).to.be.null;
expect(actualCar.latitude).to.be.null;
expect(actualCar.longitude).to.be.null;
expect(actualCar.color).to.equal(car.color);
expect(actualCar.name).to.equal(car.name);
socket.close();
resolve();
} catch (e) {
reject(e);
}
});
return agent.post(`/api/group/${group.id}/car`)
.set(csrfHeaderName, csrf)
.send({name: car.name, color: car.color})
.expect(201);
} catch (e) {
reject(e);
}
});
});
});
});
|