-
Notifications
You must be signed in to change notification settings - Fork 62
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
test(back): adds tests for user creation in users-service
- Loading branch information
1 parent
c7a7202
commit 52ca66a
Showing
2 changed files
with
288 additions
and
2 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
286 changes: 286 additions & 0 deletions
286
apps/backend/src/app/modules/users/users.service.spec.ts
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,286 @@ | ||
import { Test, TestingModule } from '@nestjs/testing'; | ||
import { UsersService } from './users.service'; | ||
import { mockDeep } from 'jest-mock-extended'; | ||
import { | ||
PRISMA_MOCK_PROVIDER, | ||
PrismaMock | ||
} from '../../../../test/prisma-mock.const'; | ||
import { EXTENDED_PRISMA_SERVICE } from '../database/db.constants'; | ||
import { BadRequestException } from '@nestjs/common/exceptions/bad-request.exception'; | ||
import { | ||
ForbiddenException, | ||
InternalServerErrorException, | ||
ServiceUnavailableException | ||
} from '@nestjs/common'; | ||
import { User } from '@prisma/client'; | ||
import { AuthenticatedUser } from '../auth/auth.interface'; | ||
import { SteamUserSummaryData } from '../steam/steam.interface'; | ||
import { UsersGetAllQueryDto } from '../../dto'; | ||
|
||
describe('UserService', () => { | ||
let usersService: UsersService; | ||
let db: PrismaMock; | ||
|
||
beforeAll(async () => { | ||
const module: TestingModule = await Test.createTestingModule({ | ||
providers: [UsersService, PRISMA_MOCK_PROVIDER] | ||
}) | ||
.useMocker(mockDeep) | ||
.compile(); | ||
usersService = module.get(UsersService); | ||
db = module.get(EXTENDED_PRISMA_SERVICE); | ||
}); | ||
|
||
it('should be defined', () => { | ||
expect(usersService).toBeDefined(); | ||
expect(db).toBeDefined(); | ||
}); | ||
|
||
describe('getAll', () => { | ||
it('should throw an error when passing both steamID and steamIDs', async () => { | ||
const a: UsersGetAllQueryDto = { | ||
steamID: '123456789', | ||
steamIDs: ['123456789', '999999999'] | ||
}; | ||
await expect(usersService.getAll(a)).rejects.toThrow(BadRequestException); | ||
}); | ||
}); | ||
|
||
describe('findOrCreateFromGame', () => { | ||
it("should throw an error when the steamid's don't match", async () => { | ||
const steamUserSummaryData: SteamUserSummaryData = { | ||
avatar: '', | ||
avatarfull: '', | ||
avatarhash: '', | ||
avatarmedium: '', | ||
communityvisibilitystate: 0, | ||
lastlogoff: 0, | ||
loccountrycode: '', | ||
personaname: '', | ||
personastate: 0, | ||
personastateflags: 0, | ||
primaryclanid: '', | ||
profilestate: 0, | ||
profileurl: '', | ||
realname: '', | ||
timecreated: 0, | ||
steamid: '123456789' | ||
}; | ||
jest | ||
.spyOn(usersService['steamService'], 'getSteamUserSummaryData') | ||
.mockImplementationOnce(() => Promise.resolve(steamUserSummaryData)); | ||
await expect( | ||
usersService.findOrCreateFromGame(BigInt(999999999)) | ||
).rejects.toThrow(BadRequestException); | ||
}); | ||
it('should throw an error when getSteamUserSummaryData throws and error', async () => { | ||
jest | ||
.spyOn(usersService['steamService'], 'getSteamUserSummaryData') | ||
.mockImplementationOnce(() => Promise.reject('failed to start')); | ||
await expect( | ||
usersService.findOrCreateFromGame(BigInt(123456789)) | ||
).rejects.toThrow(ServiceUnavailableException); | ||
}); | ||
it('should call findOrCreateUser', async () => { | ||
const steamUserSummaryData: SteamUserSummaryData = { | ||
avatar: '', | ||
avatarfull: '', | ||
avatarhash: '', | ||
avatarmedium: '', | ||
communityvisibilitystate: 0, | ||
lastlogoff: 0, | ||
loccountrycode: '', | ||
personaname: '', | ||
personastate: 0, | ||
personastateflags: 0, | ||
primaryclanid: '', | ||
profilestate: 0, | ||
profileurl: '', | ||
realname: '', | ||
timecreated: 0, | ||
steamid: '123456789' | ||
}; | ||
jest | ||
.spyOn(usersService['steamService'], 'getSteamUserSummaryData') | ||
.mockImplementationOnce(() => Promise.resolve(steamUserSummaryData)); | ||
const spy = jest.spyOn(usersService, 'findOrCreateUser'); | ||
await usersService.findOrCreateFromGame(BigInt(123456789)); | ||
expect(spy).toHaveBeenCalled(); | ||
}); | ||
}); | ||
|
||
describe('findOrCreateFromWeb', () => { | ||
it('should error when profile state is not 1', async () => { | ||
await expect( | ||
usersService.findOrCreateFromWeb({ | ||
avatar: '', | ||
avatarfull: '', | ||
avatarhash: '', | ||
avatarmedium: '', | ||
communityvisibilitystate: 0, | ||
lastlogoff: 0, | ||
loccountrycode: '', | ||
personaname: '', | ||
personastate: 0, | ||
personastateflags: 0, | ||
primaryclanid: '', | ||
profilestate: 2, | ||
profileurl: '', | ||
realname: '', | ||
steamid: '', | ||
timecreated: 0 | ||
}) | ||
).rejects.toThrow(ForbiddenException); | ||
}); | ||
it('should error when steamid is deleted', async () => { | ||
db.deletedSteamID.findUnique.mockResolvedValueOnce({ | ||
steamID: BigInt(123456789) | ||
} as any); | ||
await expect( | ||
usersService.findOrCreateFromWeb({ | ||
avatar: '', | ||
avatarfull: '', | ||
avatarhash: '', | ||
avatarmedium: '', | ||
communityvisibilitystate: 0, | ||
lastlogoff: 0, | ||
loccountrycode: '', | ||
personaname: '', | ||
personastate: 0, | ||
personastateflags: 0, | ||
primaryclanid: '', | ||
profilestate: 1, | ||
profileurl: '', | ||
realname: '', | ||
steamid: '123456789', | ||
timecreated: 0 | ||
}) | ||
).rejects.toThrow(ForbiddenException); | ||
}); | ||
it('should call findOrCreateUser', async () => { | ||
const spy = jest.spyOn(usersService, 'findOrCreateUser'); | ||
spy.mockImplementationOnce(() => | ||
Promise.resolve({ | ||
id: 0, | ||
steamID: 0n | ||
}) | ||
); | ||
await usersService.findOrCreateFromWeb({ | ||
avatar: '', | ||
avatarfull: '', | ||
avatarhash: '', | ||
avatarmedium: '', | ||
communityvisibilitystate: 0, | ||
lastlogoff: 0, | ||
loccountrycode: '', | ||
personaname: '', | ||
personastate: 0, | ||
personastateflags: 0, | ||
primaryclanid: '', | ||
profilestate: 1, | ||
profileurl: '', | ||
realname: '', | ||
steamid: '123456789', | ||
timecreated: 0 | ||
}); | ||
expect(spy).toHaveBeenCalled(); | ||
}); | ||
|
||
it('should error when no user is returned by findOrCreateUser', async () => { | ||
const spy = jest.spyOn(usersService, 'findOrCreateUser'); | ||
spy.mockImplementationOnce(() => Promise.resolve(undefined)); | ||
await expect( | ||
usersService.findOrCreateFromWeb({ | ||
avatar: '', | ||
avatarfull: '', | ||
avatarhash: '', | ||
avatarmedium: '', | ||
communityvisibilitystate: 0, | ||
lastlogoff: 0, | ||
loccountrycode: '', | ||
personaname: '', | ||
personastate: 0, | ||
personastateflags: 0, | ||
primaryclanid: '', | ||
profilestate: 1, | ||
profileurl: '', | ||
realname: '', | ||
steamid: '123456789', | ||
timecreated: 0 | ||
}) | ||
).rejects.toThrow(InternalServerErrorException); | ||
}); | ||
}); | ||
|
||
describe('findOrCreateUser', () => { | ||
it('should return an existing user', async () => { | ||
const existingUser: User = { | ||
id: 0, | ||
roles: 0, | ||
bans: 0, | ||
steamID: BigInt(123456789), | ||
alias: '', | ||
avatar: '', | ||
country: '', | ||
createdAt: undefined | ||
}; | ||
db.user.findUnique.mockResolvedValueOnce(existingUser as any); | ||
const authUser: AuthenticatedUser = { | ||
id: 0, | ||
steamID: 123456789n | ||
}; | ||
db.user.update.mockResolvedValueOnce(authUser as any); | ||
|
||
const userData = { | ||
steamID: BigInt(123456789), | ||
alias: 'new alias', | ||
avatar: 'new avatar', | ||
country: 'new country' | ||
}; | ||
const spy = jest.spyOn(db['user'], 'update'); | ||
await usersService.findOrCreateUser(userData); | ||
expect(spy).toHaveBeenCalled(); | ||
}); | ||
it('should create a new user', async () => { | ||
const nonExistingUser: User = undefined; | ||
db.user.findUnique.mockResolvedValueOnce(nonExistingUser as any); | ||
|
||
const spy = jest.spyOn(db['user'], 'create'); | ||
|
||
const userData = { | ||
steamID: BigInt(123456789), | ||
alias: '', | ||
avatar: '', | ||
country: '' | ||
}; | ||
await usersService.findOrCreateUser(userData); | ||
|
||
expect(spy).toHaveBeenCalled(); | ||
}); | ||
it('should throw error when using a limited account if the setting is on', async () => { | ||
const nonExistingUser: User = undefined; | ||
db.user.findUnique.mockResolvedValueOnce(nonExistingUser as any); | ||
|
||
jest | ||
.spyOn(usersService['config'], 'getOrThrow') | ||
.mockImplementationOnce(() => { | ||
return true; | ||
}); | ||
jest | ||
.spyOn(usersService['steamService'], 'isAccountLimited') | ||
.mockImplementationOnce(() => { | ||
return Promise.resolve(true); | ||
}); | ||
|
||
const userData = { | ||
steamID: BigInt(123456789), | ||
alias: '', | ||
avatar: '', | ||
country: '' | ||
}; | ||
await expect(usersService.findOrCreateUser(userData)).rejects.toThrow( | ||
ForbiddenException | ||
); | ||
}); | ||
}); | ||
}); |