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 | 1x 1x 1x 1x 1x 1x 1x 1x 1x 1x 10x 1x 1x 10x 10x 10x 10x 10x 10x 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 2x 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 {TestUtils} from '../../../../../../../util/test-utils.spec';
import config from '../../../../../../../config';
import supertest from 'supertest';
import app from '../../../../../../../app';
import {expect} from 'chai';
import {
UnauthorizedError,
NotMemberOfGroupError,
NotAdminOfGroupError,
NotOwnerOfGroupError,
MembershipNotFoundError,
CannotKickSelfError,
} from '../../../../../../../errors';
import {Group, User, Membership} from '../../../../../../../models';
const csrfHeaderName = config.jwt.securityOptions.tokenName.toLowerCase();
/**
* Creates the url to be tested based on the parameters.
* @param groupId - The group id of the request
* @param userId - The user id of the request
*/
const createTestUrl = (groupId: any, userId: any) => {
return `/api/group/${groupId}/member/${userId}/kick`;
};
describe('post /api/group/:groupId/member/:userId/kick', function() {
let agent: supertest.SuperTest<supertest.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;
});
describe('if user is not logged in', function() {
it('responses with UnauthorizedError', function() {
return supertest(app)
.post(createTestUrl(1, 1))
.set(csrfHeaderName, csrf)
.send()
.expect(401)
.then((res) => {
expect(res.body.message).to
.be.equal(new UnauthorizedError().message);
});
});
});
describe('if user is logged', function() {
describe('responses with', function() {
describe('BadRequestError if', function() {
it('groupId is not a number', function() {
return agent.post(createTestUrl('test', 1))
.set(csrfHeaderName, csrf)
.send()
.expect(400)
.then((res) => {
expect(res.body.message).to
.contain('groupId has to be a number');
});
});
it('userId is not a number', function() {
return agent.post(createTestUrl(1, 'test'))
.set(csrfHeaderName, csrf)
.send()
.expect(400)
.then((res) => {
expect(res.body.message).to
.contain('userId has to be a number');
});
});
});
it('CannotKickSelfError if current user tries ' +
'to kick himself/herself', async function() {
return agent.post(createTestUrl(1, user.id))
.set(csrfHeaderName, csrf)
.send()
.expect(400)
.then((res) => {
expect(res.body.message).to
.equal(new CannotKickSelfError().message);
});
});
it('NotMemberOfGroup if current user is not a ' +
'member of the specified group', async function() {
return agent.post(createTestUrl(1, user.id + 1))
.set(csrfHeaderName, csrf)
.send()
.expect(401)
.then((res) => {
expect(res.body.message).to
.equal(new NotMemberOfGroupError().message);
});
});
it('NotAdminOfGroup if current user is not an admin ' +
'of the specified group', async function() {
// Create owner for group
const owner = await User.create({
username: 'owner',
password: 'owner_password',
email: 'owner@mail.com',
});
// Create group
const group = await Group.create({
name: 'name',
description: 'description',
ownerId: owner.id,
});
// Create not-admin membership for current user
await Membership.create({
userId: user.id,
groupId: group.id,
isAdmin: false,
});
// Try to kick a member
await agent.post(createTestUrl(group.id, 77))
.set(csrfHeaderName, csrf)
.expect(401)
.then((res) => {
expect(res.body.message).to
.be.equal(new NotAdminOfGroupError().message);
});
});
it('MembershipNotFound if specified user is not a ' +
'member of the specified group', async function() {
// Create owner for group
const owner = await User.create({
username: 'owner',
password: 'owner_password',
email: 'owner@mail.com',
});
// Create group
const group = await Group.create({
name: 'name',
description: 'description',
ownerId: owner.id,
});
// Create admin membership for current user
await Membership.create({
userId: user.id,
groupId: group.id,
isAdmin: true,
});
const toKickId = 77;
// Try to kick a member
await agent.post(createTestUrl(group.id, toKickId))
.set(csrfHeaderName, csrf)
.expect(404)
.then((res) => {
expect(res.body.message).to
.be.equal(new MembershipNotFoundError({
userId: toKickId,
groupId: group.id,
}).message);
});
});
it('NotOwnerOfGroup if specified user is an admin ' +
'of the group and the current user is not the owner', async function() {
// Create owner for group
const owner = await User.create({
username: 'owner',
password: 'owner_password',
email: 'owner@mail.com',
});
// Create group
const group = await Group.create({
name: 'name',
description: 'description',
ownerId: owner.id,
});
// Create a user to kick
const userToKick = await User.create({
username: 'to_kick_user',
password: 'to_kick_password',
email: 'to_kick@mail.com',
});
// Create admin membership for user to kick
await Membership.create({
userId: userToKick.id,
groupId: group.id,
isAdmin: true,
});
// Create admin membership for current user
await Membership.create({
userId: user.id,
groupId: group.id,
isAdmin: true,
});
// Try to kick a member
await agent.post(createTestUrl(group.id, userToKick.id))
.set(csrfHeaderName, csrf)
.expect(401)
.then((res) => {
expect(res.body.message).to
.be.equal(new NotOwnerOfGroupError().message);
});
});
});
describe('kicks the specified user from the specified group ' +
'and responses with the new group data', function() {
it('if the specified user is a normal member and ' +
'the current user is an admin', async function() {
// Create owner for group
const owner = await User.create({
username: 'owner',
password: 'owner_password',
email: 'owner@mail.com',
});
// Create group
const group = await Group.create({
name: 'name',
description: 'description',
ownerId: owner.id,
});
// Create a user to kick
const userToKick = await User.create({
username: 'to_kick_user',
password: 'to_kick_password',
email: 'to_kick@mail.com',
});
// Create not-admin membership for user to kick
await Membership.create({
userId: userToKick.id,
groupId: group.id,
isAdmin: false,
});
// Create admin membership for current user
await Membership.create({
userId: user.id,
groupId: group.id,
isAdmin: true,
});
// Try to kick a member
const newGroup = await agent.post(createTestUrl(
group.id,
userToKick.id,
)).set(csrfHeaderName, csrf)
.expect(200)
.then((res) => res.body);
expect(newGroup).has.ownProperty('members');
expect(newGroup.members).to.be.an('array');
const users: any[] = newGroup.members;
// Check that no member has the id of the kicked member
users.forEach((element) => {
expect(element.id).to.not.eql(userToKick.id);
});
// To be sure, check that membership doesn't exist anymore
const toKickMembership = await Membership.findOne({
where: {
userId: userToKick.id,
groupId: group.id,
},
});
expect(toKickMembership).to.be.null;
});
it('if the specified user is an admin and the ' +
'current user is the owner', async function() {
// Create group
const group = await Group.create({
name: 'name',
description: 'description',
ownerId: user.id,
});
// Create a user to kick
const userToKick = await User.create({
username: 'to_kick_user',
password: 'to_kick_password',
email: 'to_kick@mail.com',
});
// Create not-admin membership for user to kick
await Membership.create({
userId: userToKick.id,
groupId: group.id,
isAdmin: true,
});
// Try to kick a member
const newGroup = await agent.post(createTestUrl(
group.id,
userToKick.id,
)).set(csrfHeaderName, csrf)
.expect(200)
.then((res) => res.body);
expect(newGroup).has.ownProperty('members');
expect(newGroup.members).to.be.an('array');
const users: any[] = newGroup.members;
// Check that no member has the id of the kicked member
users.forEach((element) => {
expect(element.id).to.not.eql(userToKick.id);
});
// To be sure, check that membership doesn't exist anymore
const toKickMembership = await Membership.findOne({
where: {
userId: userToKick.id,
groupId: group.id,
},
});
expect(toKickMembership).to.be.null;
});
});
});
});
|