-
Notifications
You must be signed in to change notification settings - Fork 0
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
- Loading branch information
Showing
2 changed files
with
100 additions
and
1 deletion.
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
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,86 @@ | ||
import { NestExpressApplication } from '@nestjs/platform-express'; | ||
import { AppModule } from '../../app.module'; | ||
import { Test } from '@nestjs/testing'; | ||
import { DataSource } from 'typeorm'; | ||
import { appSetting } from '../../main'; | ||
import * as supertest from 'supertest'; | ||
import { UserEntity } from '../../user/models/user.entity'; | ||
import { UserFixture } from '../fixture/user.fixture'; | ||
import { HttpStatus } from '@nestjs/common'; | ||
import { RestaurantEntity } from '../../review/models/restaurant.entity'; | ||
import { RestaurantFixture } from '../fixture/restaurant.fixture'; | ||
import { ReviewEntity } from '../../review/models/review.entity'; | ||
import { ReviewFixture } from '../fixture/review.fixture'; | ||
import { ImageFixture } from '../fixture/image.fixture'; | ||
|
||
describe('Get review detail test', () => { | ||
let testServer: NestExpressApplication; | ||
let dataSource: DataSource; | ||
let user: UserEntity; | ||
let accessToken: string; | ||
let restaurant: RestaurantEntity; | ||
let review: ReviewEntity; | ||
|
||
beforeAll(async () => { | ||
const module = await Test.createTestingModule({ | ||
imports: [AppModule], | ||
}).compile(); | ||
|
||
testServer = module.createNestApplication<NestExpressApplication>(); | ||
dataSource = testServer.get(DataSource); | ||
await dataSource.synchronize(true); | ||
appSetting(testServer); | ||
|
||
await testServer.init(); | ||
}); | ||
|
||
beforeEach(async () => { | ||
await dataSource.synchronize(true); | ||
|
||
user = await UserFixture.create({ | ||
name: 'hi', | ||
username: 'hello', | ||
password: 'world', | ||
}); | ||
|
||
const { body } = await supertest(testServer.getHttpServer()) | ||
.post('/auth/login') | ||
.send({ | ||
username: 'hello', | ||
password: 'world', | ||
}) | ||
.expect(HttpStatus.CREATED); | ||
|
||
accessToken = body.accessToken; | ||
|
||
restaurant = await RestaurantFixture.create({}); | ||
const image = await ImageFixture.create({}); | ||
review = await ReviewFixture.create({ | ||
restaurant, | ||
images: [image], | ||
user, | ||
}); | ||
}); | ||
|
||
it('unauthorized', async () => { | ||
await supertest(testServer.getHttpServer()) | ||
.delete(`/reviews/${review.id}`) | ||
.expect(HttpStatus.UNAUTHORIZED); | ||
}); | ||
|
||
it('OK', async () => { | ||
await supertest(testServer.getHttpServer()) | ||
.delete(`/reviews/${review.id}`) | ||
.set('Authorization', `Bearer ${accessToken}`) | ||
.expect(HttpStatus.OK); | ||
|
||
expect(await ReviewEntity.findOneBy({ id: review.id })).toBeNull(); | ||
}); | ||
|
||
it('리뷰 없으면 404', async () => { | ||
const { body } = await supertest(testServer.getHttpServer()) | ||
.delete(`/reviews/999999`) | ||
.set('Authorization', `Bearer ${accessToken}`) | ||
.expect(HttpStatus.NOT_FOUND); | ||
}); | ||
}); |