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 376 377 378 379 380 381 382 383 384 385 386 387 388 389 390 391 392 393 394 395 396 397 398 399 400 401 | 1x 1x 1x 1x 1x 1x 1x 1x 1x 1x 11x 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 1x 1x 1x 1x 1x 1x 1x 1x 1x 1x 1x 1x 1x 1x 1x 1x | /* eslint-disable @typescript-eslint/no-explicit-any */
import {InviteRepository} from './invite-repository';
import {
InviteNotFoundError,
CouldNotAssignToGroupError,
UnauthorizedError,
MembershipNotFoundError,
NotMemberOfGroupError,
} from '../../errors';
import sinon, {assert, match} from 'sinon';
import {InviteService} from './invite-service';
import {expect} from 'chai';
import {MembershipRepository} from '../membership';
import db from '../../db';
import {MembershipService} from '../membership/membership-service';
describe('InviteService', function() {
afterEach(function() {
sinon.restore();
});
describe('assignUserToGroup', function() {
it('throws InviteNotFoundError if no invite for the user ' +
'and the group exists', async function() {
const currentUser = {
id: 6,
};
const groupId = 5;
const inviteRepFindByIdStub = sinon.stub(InviteRepository, 'findById')
.rejects(new InviteNotFoundError({userId: currentUser.id, groupId}));
await expect(InviteService.assignUserToGroup(currentUser as any, groupId))
.to.eventually.be.rejectedWith(InviteNotFoundError);
assert.calledOnceWithExactly(inviteRepFindByIdStub, match({
userId: currentUser.id,
groupId,
}));
});
it('deletes invite and creates membership if ' +
'invite exists', async function() {
const currentUser: any = {
id: 6,
};
const groupId = 5;
const inviteId = {
userId: currentUser.id,
groupId,
};
const transactionFake = {
rollback: sinon.stub(),
commit: sinon.stub(),
};
const transactionStub = sinon.stub(db, 'transaction')
.resolves(transactionFake as any);
const inviteRepFindByIdStub = sinon.stub(InviteRepository, 'findById')
.resolves();
const inviteRepDeleteByIdStub = sinon.stub(InviteRepository, 'deleteById')
.resolves();
const membershipRepCreateStub = sinon.stub(MembershipRepository, 'create')
.resolves();
await expect(InviteService.assignUserToGroup(currentUser as any, groupId))
.to.eventually.be.fulfilled;
assert.calledOnceWithExactly(inviteRepFindByIdStub, match(inviteId));
assert.calledOnceWithExactly(inviteRepDeleteByIdStub,
match(inviteId), match.any);
assert.calledOnceWithExactly(
membershipRepCreateStub,
currentUser,
groupId,
false,
match.any,
);
assert.calledOnceWithExactly(transactionStub);
assert.calledOnceWithExactly(transactionFake.commit);
assert.notCalled(transactionFake.rollback);
});
it('executes create and delete with transaction and ' +
'calls rollback when deletes invite throws error', async function() {
const currentUser: any = {
id: 6,
};
const groupId = 5;
const inviteId = {
userId: currentUser.id,
groupId,
};
const transactionFake = {
rollback: sinon.stub(),
commit: sinon.stub(),
};
const transactionStub = sinon.stub(db, 'transaction')
.resolves(transactionFake as any);
const inviteRepFindByIdStub = sinon.stub(InviteRepository, 'findById')
.resolves();
const inviteRepDeleteByIdStub = sinon.stub(InviteRepository, 'deleteById')
.rejects();
const membershipRepCreateStub = sinon.stub(MembershipRepository, 'create')
.resolves();
await expect(InviteService.assignUserToGroup(currentUser as any, groupId))
.to.eventually.be.rejectedWith(CouldNotAssignToGroupError);
assert.calledOnceWithExactly(inviteRepFindByIdStub, match(inviteId));
assert.calledOnceWithExactly(inviteRepDeleteByIdStub,
match(inviteId), match.any);
assert.notCalled(
membershipRepCreateStub);
assert.calledOnceWithExactly(transactionStub);
assert.notCalled(transactionFake.commit);
assert.calledOnceWithExactly(transactionFake.rollback);
});
it('executes create and delete with transaction and ' +
'calls rollback when create membership throws error', async function() {
const currentUser: any = {
id: 6,
};
const groupId = 5;
const inviteId = {
userId: currentUser.id,
groupId,
};
const transactionFake = {
rollback: sinon.stub(),
commit: sinon.stub(),
};
const transactionStub = sinon.stub(db, 'transaction')
.resolves(transactionFake as any);
const inviteRepFindByIdStub = sinon.stub(InviteRepository, 'findById')
.resolves();
const inviteRepDeleteByIdStub = sinon.stub(InviteRepository, 'deleteById')
.resolves();
const membershipRepCreateStub = sinon.stub(MembershipRepository, 'create')
.rejects();
await expect(InviteService.assignUserToGroup(currentUser as any, groupId))
.to.eventually.be.rejectedWith(CouldNotAssignToGroupError);
assert.calledOnceWithExactly(inviteRepFindByIdStub, match(inviteId));
assert.calledOnceWithExactly(inviteRepDeleteByIdStub,
match(inviteId), match.any);
assert.calledOnceWithExactly(
membershipRepCreateStub,
currentUser,
groupId,
false,
match.any,
);
assert.calledOnceWithExactly(transactionStub);
assert.notCalled(transactionFake.commit);
assert.calledOnceWithExactly(transactionFake.rollback);
});
});
describe('findById', function() {
it('throws UnauthorizedError if currentUser ' +
'is other user than requested and not member ' +
'of the group the invite is for', async function() {
const currentUser: any = {
id: 5,
};
const id = {
userId: 10,
groupId: 71,
};
const membershipFindOneStub = sinon.stub(MembershipService, 'findById')
.resolves(null as any);
const inviteRepFindByIdStub = sinon.stub(InviteRepository, 'findById');
await expect(InviteService.findById(currentUser, id))
.to.eventually.be.rejectedWith(UnauthorizedError);
assert.calledOnceWithExactly(membershipFindOneStub, currentUser, match({
userId: currentUser.id,
groupId: id.groupId,
}));
assert.notCalled(inviteRepFindByIdStub);
});
it('returns invite if currentUser is user with ' +
'the specified id', async function() {
const currentUser: any = {
id: 10,
};
const id = {
userId: 10,
groupId: 71,
};
const membershipFindOneStub = sinon.stub(MembershipService, 'findById')
.resolves(null as any);
const invite = {
userId: id.userId,
groupId: id.groupId,
invitedBy: 12,
};
const inviteRepFindByIdStub = sinon.stub(InviteRepository, 'findById')
.resolves(invite as any);
await expect(InviteService.findById(currentUser, id))
.to.eventually.equal(invite);
assert.calledOnceWithExactly(membershipFindOneStub, currentUser, match({
userId: currentUser.id,
groupId: id.groupId,
}));
assert.calledOnceWithExactly(inviteRepFindByIdStub, id);
});
it('returns invite if currentUser is a member of ' +
'the group the invite is for', async function() {
const currentUser: any = {
id: 5,
};
const id = {
userId: 10,
groupId: 71,
};
const membershipFindOneStub = sinon.stub(MembershipService, 'findById')
.resolves(true as any);
const invite = {
userId: id.userId,
groupId: id.groupId,
invitedBy: 12,
};
const inviteRepFindByIdStub = sinon.stub(InviteRepository, 'findById')
.resolves(invite as any);
await expect(InviteService.findById(currentUser, id))
.to.eventually.equal(invite);
assert.calledOnceWithExactly(membershipFindOneStub, currentUser, match({
userId: currentUser.id,
groupId: id.groupId,
}));
assert.calledOnceWithExactly(inviteRepFindByIdStub, id);
});
});
describe('findAllForUser', function() {
it('throws UnauthorizedError if currentUser is not user with ' +
'specified userId', async function() {
const currentUser: any = {
id: 98,
};
const userId = 11;
await expect(InviteService.findAllForUser(currentUser, userId))
.to.eventually.be.rejectedWith(UnauthorizedError);
});
it('returns all invites for currentUser', async function() {
const currentUser: any = {
id: 98,
};
const userId = 98;
const invites = [
{
userId: 98,
groupId: 1,
},
{
userId: 98,
groupId: 2,
},
];
const inviteRepFindAllForUserStub = sinon
.stub(InviteRepository, 'findAllForUser')
.resolves(invites as any);
await expect(InviteService.findAllForUser(currentUser, userId))
.to.eventually.equal(invites);
assert.calledOnceWithExactly(inviteRepFindAllForUserStub, userId, match({
withGroupData: true,
withInvitedByData: true,
}));
});
});
describe('findAllForGroup', function() {
it('throws NotMemberOfGroupError if specified user ' +
'is not a member of specified group', async function() {
const user = {
id: 5,
};
const groupId = 12;
const membershipFindById = sinon.stub(MembershipService, 'findById')
.rejects(new MembershipNotFoundError({userId: user.id, groupId}));
await expect(InviteService.findAllForGroup(user as any, groupId))
.to.eventually.be.rejectedWith(NotMemberOfGroupError);
assert.calledOnceWithExactly(
membershipFindById,
user as any,
match({
userId: user.id,
groupId,
}),
);
});
it('returns all invites by calling repository', async function() {
const user = {
id: 5,
};
const groupId = 12;
const invites = [
{
userId: 4,
groupId,
},
{
userId: 1,
groupId,
},
];
const membershipFindById = sinon.stub(MembershipService, 'findById')
.resolves();
const inviteRepFindAllForGroup = sinon
.stub(InviteRepository, 'findAllForGroup')
.resolves(invites as any);
await expect(InviteService.findAllForGroup(user as any, groupId))
.to.eventually.be.eql(invites);
assert.calledOnceWithExactly(
membershipFindById,
user as any,
match({
userId: user.id,
groupId,
}),
);
assert.calledOnceWithExactly(
inviteRepFindAllForGroup,
groupId,
match({
withInvitedByData: true,
withUserData: true,
}),
);
});
});
});
|