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 | 1x 1x 1x 1x 1x 1x 1x 1x 1x 1x 1x 10x 10x 10x 10x 10x 10x 1x 1x 1x 1x 1x 1x 1x 1x 1x 1x 1x 1x 1x 1x 1x 1x 3x 3x 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 | /* eslint-disable @typescript-eslint/no-explicit-any */
import supertest from 'supertest';
import {TestUtils} from '../../../../../../../../util/test-utils.spec';
import db, {syncPromise} from '../../../../../../../../db';
import app from '../../../../../../../../app';
import config from '../../../../../../../../config';
import {expect} from 'chai';
import {
UnauthorizedError,
NotOwnerOfGroupError,
UserNotMemberOfGroupError,
UserNotAdminOfGroupError,
} from '../../../../../../../../errors';
import {Group, Invite, Membership, User} from '../../../../../../../../models';
const csrfHeaderName = config.jwt.securityOptions.tokenName.toLowerCase();
describe('post /api/group/:groupId/member/' +
':userId/admin/transfer-ownership', 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 not logged in', function() {
it('responses with UnauthorizedError', function() {
return supertest(app)
.post('/api/group/1/member/1/admin/transfer-ownership')
.send()
.set(csrfHeaderName, csrf)
.expect(401);
});
});
describe('if user logged in', function() {
describe('response with', function() {
it('BadRequestError if groupId is not a number', function() {
return agent.post('/api/group/test/member/5/admin/transfer-ownership')
.set(csrfHeaderName, csrf)
.send()
.expect(400)
.then((res) => {
expect(res.body.message).to.contain('groupId has to be a number');
});
});
it('BadRequestError if userId is not a number', function() {
return agent.post('/api/group/1/member/test/admin/transfer-ownership')
.set(csrfHeaderName, csrf)
.send()
.expect(400)
.then((res) => {
expect(res.body.message).to.contain('userId has to be a number');
});
});
it('UnauthorizedError if current user is ' +
'not a member of the group and has no invite for it', function() {
return agent.post('/api/group/1/member/1/admin/transfer-ownership')
.set(csrfHeaderName, csrf)
.send()
.expect(401)
.then((res) => {
expect(res.body.message).to
.contain(new UnauthorizedError().message);
});
});
describe('NotOwnerOfGroupError if the current user', function() {
let owner: User;
let group: Group;
// Before each request login with a different user and create a group
beforeEach(async function() {
owner = await User.create({
username: 'owner',
password: 'owner-password',
email: 'owner@mail.com',
});
group = await Group.create({
name: 'NAME',
description: 'DESC',
ownerId: owner.id,
});
});
it('only has an invite for the group', async function() {
// Invite user
await Invite.create({
userId: user.id,
groupId: group.id,
invitedBy: owner.id,
});
// Try to transfer ownership
await agent
.post(`/api/group/${group.id}/member/6/admin/transfer-ownership`)
.set(csrfHeaderName, csrf)
.send()
.expect(401)
.then((res) => {
expect(res.body.message).to.be
.eql(new NotOwnerOfGroupError().message);
});
});
it('is only a member of the group', async function() {
// Create membership for user
await Membership.create({
userId: user.id,
groupId: group.id,
isAdmin: false,
});
// Try to transfer ownership
await agent
.post(`/api/group/${group.id}/member/6/admin/transfer-ownership`)
.set(csrfHeaderName, csrf)
.send()
.expect(401)
.then((res) => {
expect(res.body.message).to.be
.eql(new NotOwnerOfGroupError().message);
});
});
it('is only an admin of the group', async function() {
// Create membership for user
await Membership.create({
userId: user.id,
groupId: group.id,
isAdmin: true,
});
// Try to transfer ownership
await agent
.post(`/api/group/${group.id}/member/6/admin/transfer-ownership`)
.set(csrfHeaderName, csrf)
.send()
.expect(401)
.then((res) => {
expect(res.body.message).to
.be.eql(new NotOwnerOfGroupError().message);
});
});
});
it('UserNotMemberOfGroupError if the user to which the ownership ' +
'should be transferred to is not a member ' +
'of the group', async function() {
// Create group with user as owner
const group = await Group.create({
name: 'NAME',
description: 'DESC',
ownerId: user.id,
});
// Create user to transfer ownership to
const toUser = await User.create({
username: 'TOUSER',
password: 'TOUSERPASSWORD',
email: 'touser@mail.com',
});
// Try to transfer ownership
await agent.post(`/api/group/${group.id}/member/${toUser.id}/` +
'admin/transfer-ownership')
.set(csrfHeaderName, csrf)
.send()
.expect(400)
.then((res) => {
expect(res.body.message).to.be
.eql(new UserNotMemberOfGroupError(toUser.id).message);
});
});
it('UserNotAdminOfGroupError if the user to which the ' +
'ownership should be transferred to is not an admin ' +
'of the group', async function() {
// Create group with user as owner
const group = await Group.create({
name: 'NAME',
description: 'DESC',
ownerId: user.id,
});
// Create user to transfer ownership to
const toUser = await User.create({
username: 'TOUSER',
password: 'TOUSERPASSWORD',
email: 'touser@mail.com',
});
// Create membership for new user
await Membership.create({
userId: toUser.id,
groupId: group.id,
isAdmin: false,
});
// Try to transfer ownership
await agent.post(`/api/group/${group.id}/member/${toUser.id}/` +
'admin/transfer-ownership')
.set(csrfHeaderName, csrf)
.send()
.expect(400)
.then((res) => {
expect(res.body.message).to.be
.eql(new UserNotAdminOfGroupError(toUser.id).message);
});
});
it('transfers the ownership successfully and responses ' +
'with the updated group data', async function() {
// Create group with user as owner
const group = await Group.create({
name: 'NAME',
description: 'DESC',
ownerId: user.id,
});
// Create user to transfer ownership to
const toUser = await User.create({
username: 'TOUSER',
password: 'TOUSERPASSWORD',
email: 'touser@mail.com',
});
// Create membership for new user
await Membership.create({
userId: toUser.id,
groupId: group.id,
isAdmin: true,
});
// Try to transfer ownership
await agent.post(`/api/group/${group.id}/member/${toUser.id}/` +
'admin/transfer-ownership')
.set(csrfHeaderName, csrf)
.send()
.expect(200)
.then((res) => {
expect(res.body).to.haveOwnProperty('id');
expect(res.body).to.haveOwnProperty('name');
expect(res.body).to.haveOwnProperty('description');
expect(res.body).to.haveOwnProperty('Owner');
expect(res.body.Owner).to.haveOwnProperty('id', toUser.id);
});
});
});
});
});
|