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 | 1x 1x 1x 1x 1x 1x 1x 1x 1x 1x 12x 12x 12x 12x 12x 12x 1x 12x 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 21x 21x 1x 5x 5x 1x 1x 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 {TestUtils} from '../../../../../util/test-utils.spec';
import db, {syncPromise} from '../../../../../db';
import {expect} from 'chai';
import {User, Group, Membership, Invite} from '../../../../../models';
import {
NotMemberOfGroupError,
NotAdminOfGroupError,
UserNotFoundError,
GroupIsFullError,
AlreadyInvitedError,
AlreadyMemberError,
} from '../../../../../errors';
import request from 'supertest';
import config from '../../../../../config';
import sinon from 'sinon';
const csrfHeaderName = config.jwt.securityOptions.tokenName.toLowerCase();
describe('post /api/group/:groupId/invite', function() {
let agent: request.SuperTest<request.Test>;
let user: any;
let csrf: string;
beforeEach(async function() {
await syncPromise;
await db.sync({force: true});
const response = await TestUtils.signUp();
agent = response.agent;
user = response.user;
csrf = response.csrf;
});
afterEach(function() {
sinon.restore();
});
describe('responses with 400', function() {
it('if groupId is not numeric', function() {
return agent
.post('/api/group/test/invite')
.set(csrfHeaderName, csrf)
.send({userId: 10})
.expect(400)
.then((res) => {
expect(res.body.message).to.contain('groupId has to be a number');
});
});
it('if userId and username are missing', function() {
return agent
.post('/api/group/2/invite')
.set(csrfHeaderName, csrf)
.send()
.expect(400)
.then((res) => {
expect(res.body.message).to.contain('userId is missing');
expect(res.body.message).to.contain('username is missing');
});
});
it('if userId is not numeric', function() {
return agent
.post('/api/group/2/invite')
.set(csrfHeaderName, csrf)
.send({userId: 'test'})
.expect(400)
.then((res) => {
expect(res.body.message).to.contain('userId has to be a number');
});
});
});
it('responses with 400 and BadRequestError if user ' +
'tries to invite himself/herself', function() {
return agent
.post('/api/group/1/invite')
.set(csrfHeaderName, csrf)
.send({userId: user.id})
.expect(400)
.then((res) => {
expect(res.body.message).to.contain('You can\'t invite yourself');
});
});
it('responses with 401 and NotMemberOfGroupError if user ' +
'tries to invite to a group he/she is not a member of', function() {
return agent
.post('/api/group/1/invite')
.set(csrfHeaderName, csrf)
.send({userId: user.id + 1})
.expect(401)
.then((res) => {
expect(res.body.message).to
.contain(new NotMemberOfGroupError().message);
});
});
it('responses with 401 and NotAdminOfGroupError if user ' +
'tries to invite to a group he/she is not an admin of', async function() {
const owner = await User.create({
username: 'OWNER',
password: 'OWNERPASSWORD',
email: 'OWNER@mail.com',
});
const group = await Group.create({
name: 'TEST',
description: 'TEST',
ownerId: owner.id,
});
await Membership.create({
groupId: group.id,
userId: user.id,
isAdmin: false,
});
await agent
.post(`/api/group/${group.id}/invite`)
.set(csrfHeaderName, csrf)
.send({userId: user.id + 1})
.expect(401)
.then((res) => {
expect(res.body.message).to
.contain(new NotAdminOfGroupError().message);
});
});
it('responses with 404 and UserNotFound if user is admin ' +
'but the invitee doesn\'t exist', async function() {
const group = await Group.create({
ownerId: user.id,
name: 'NAME',
description: 'DESC',
});
await agent
.post(`/api/group/${group.id}/invite`)
.set(csrfHeaderName, csrf)
.send({userId: user.id + 1})
.expect(404)
.then((res) => {
expect(res.body.message).to.be
.eql((new UserNotFoundError(user.id + 1) as any).message);
});
});
it('responses with 400 and AlreadyInvitedError if user ' +
'is admin and invitee is already invited', async function() {
const group = await Group.create({
ownerId: user.id,
name: 'NAME',
description: 'DESC',
});
// Create invitee
const invitee = await User.create({
username: 'INVITEE',
password: 'INVITEEPASSWORD',
email: 'INVITEE@mail.com',
});
// Create invitation for invitee
await Invite.create({
groupId: group.id,
userId: invitee.id,
});
await agent
.post(`/api/group/${group.id}/invite`)
.set(csrfHeaderName, csrf)
.send({userId: invitee.id})
.expect(400)
.then((res) => {
expect(res.body.message).to.be
.eql(new AlreadyInvitedError(invitee.id, group.id).message);
});
});
it('responses with 400 and AlreadyMemberError if user ' +
'is admin and invitee is already a member', async function() {
const group = await Group.create({
ownerId: user.id,
name: 'NAME',
description: 'DESC',
});
// Create invitee
const invitee = await User.create({
username: 'INVITEE',
password: 'INVITEEPASSWORD',
email: 'INVITEE@mail.com',
});
// Create membership for invitee
await Membership.create({
groupId: group.id,
userId: invitee.id,
isAdmin: false,
});
await agent
.post(`/api/group/${group.id}/invite`)
.set(csrfHeaderName, csrf)
.send({userId: invitee.id})
.expect(400)
.then((res) => {
expect(res.body.message).to.be
.eql(new AlreadyMemberError(invitee.id, group.id).message);
});
});
it('responses with 400 and GroupIsFullError if max amount ' +
'of members is reached', async function() {
const group = await Group.create({
ownerId: user.id,
name: 'NAME',
description: 'DESC',
});
const maxMembers = config.group.maxMembers;
// Add maxMembers - 4 to the group
for (let i = 0; i < maxMembers - 4; i++) {
const member = await User.create({
username: `test-${i}-name`,
password: `test-${i}-password`,
email: `test-${i}@mail.com`,
});
await Membership.create({
groupId: group.id,
userId: member.id,
isAdmin: i % 2 === 0,
});
}
// Fill rest of group capacity with invites (add 5 more invites)
for (let i = maxMembers - 4; i < maxMembers + 1; i++) {
const member = await User.create({
username: `test-${i}-name`,
password: `test-${i}-password`,
email: `test-${i}@mail.com`,
});
await Invite.create({
groupId: group.id,
userId: member.id,
});
}
// Create user to invite
const invitee = await User.create({
username: 'INVITEE',
password: 'INVITEEPASSWORD',
email: 'INVITEE@mail.com',
});
await agent
.post(`/api/group/${group.id}/invite`)
.set(csrfHeaderName, csrf)
.send({userId: invitee.id})
.expect(400)
.then((res) => {
expect(res.body.message).to.be.eql(new GroupIsFullError().message);
});
});
it('invites user and responses with invitation', async function() {
const group = await Group.create({
ownerId: user.id,
name: 'NAME',
description: 'DESC',
});
// Create invitee
const invitee = await User.create({
username: 'INVITEE',
password: 'INVITEEPASSWORD',
email: 'INVITEE@mail.com',
});
const expectedInvite = {
userId: invitee.id,
groupId: group.id,
invitedBy: user.id,
};
await agent
.post(`/api/group/${group.id}/invite`)
.set(csrfHeaderName, csrf)
.send({userId: user.id + 1})
.expect(201)
.then((res) => {
expect(res.body).to.include(expectedInvite);
expect(res.body.createdAt).to.be.a('string');
});
// Check if invite exists
const invite = await Invite.findOne({
where: {
groupId: group.id,
userId: invitee.id,
},
});
expect(invite).to.be.not.null;
});
it('can also work with username', async function() {
const group = await Group.create({
ownerId: user.id,
name: 'NAME',
description: 'DESC',
});
// Create invitee
const invitee = await User.create({
username: 'INVITEE',
password: 'INVITEEPASSWORD',
email: 'INVITEE@mail.com',
});
const expectedInvite = {
userId: invitee.id,
groupId: group.id,
invitedBy: user.id,
};
await agent
.post(`/api/group/${group.id}/invite`)
.set(csrfHeaderName, csrf)
.send({username: invitee.username})
.expect(201)
.then((res) => {
expect(res.body).to.include(expectedInvite);
expect(res.body.createdAt).to.be.a('string');
});
// Check if invite exists
const invite = await Invite.findOne({
where: {
groupId: group.id,
userId: invitee.id,
},
});
expect(invite).to.be.not.null;
});
});
|