mirror of
https://github.com/toeverything/AFFiNE.git
synced 2024-12-23 00:11:33 +03:00
91 lines
2.4 KiB
TypeScript
91 lines
2.4 KiB
TypeScript
|
import {
|
||
|
ForbiddenException,
|
||
|
HttpStatus,
|
||
|
INestApplication,
|
||
|
} from '@nestjs/common';
|
||
|
import { Args, Mutation, Query, Resolver } from '@nestjs/graphql';
|
||
|
import { Test } from '@nestjs/testing';
|
||
|
import testFn, { TestFn } from 'ava';
|
||
|
import request from 'supertest';
|
||
|
|
||
|
import { ConfigModule } from '../src/fundamentals/config';
|
||
|
import { GqlModule } from '../src/fundamentals/graphql';
|
||
|
|
||
|
@Resolver(() => String)
|
||
|
class TestResolver {
|
||
|
greating = 'hello world';
|
||
|
|
||
|
@Query(() => String)
|
||
|
hello() {
|
||
|
return this.greating;
|
||
|
}
|
||
|
|
||
|
@Mutation(() => String)
|
||
|
update(@Args('greating') greating: string) {
|
||
|
this.greating = greating;
|
||
|
return this.greating;
|
||
|
}
|
||
|
|
||
|
@Query(() => String)
|
||
|
errorQuery() {
|
||
|
throw new ForbiddenException('forbidden query');
|
||
|
}
|
||
|
|
||
|
@Query(() => String)
|
||
|
unknownErrorQuery() {
|
||
|
throw new Error('unknown error');
|
||
|
}
|
||
|
}
|
||
|
|
||
|
const test = testFn as TestFn<{ app: INestApplication }>;
|
||
|
|
||
|
function gql(app: INestApplication, query: string) {
|
||
|
return request(app.getHttpServer())
|
||
|
.post('/graphql')
|
||
|
.send({ query })
|
||
|
.expect(200);
|
||
|
}
|
||
|
|
||
|
test.beforeEach(async ctx => {
|
||
|
const module = await Test.createTestingModule({
|
||
|
imports: [ConfigModule.forRoot(), GqlModule],
|
||
|
providers: [TestResolver],
|
||
|
}).compile();
|
||
|
|
||
|
ctx.context.app = await module
|
||
|
.createNestApplication({
|
||
|
logger: false,
|
||
|
})
|
||
|
.init();
|
||
|
});
|
||
|
|
||
|
test('should be able to execute query', async t => {
|
||
|
const res = await gql(t.context.app, `query { hello }`);
|
||
|
t.is(res.body.data.hello, 'hello world');
|
||
|
});
|
||
|
|
||
|
test('should be able to execute mutation', async t => {
|
||
|
const res = await gql(t.context.app, `mutation { update(greating: "hi") }`);
|
||
|
|
||
|
t.is(res.body.data.update, 'hi');
|
||
|
|
||
|
const newRes = await gql(t.context.app, `query { hello }`);
|
||
|
t.is(newRes.body.data.hello, 'hi');
|
||
|
});
|
||
|
|
||
|
test('should be able to handle known http exception', async t => {
|
||
|
const res = await gql(t.context.app, `query { errorQuery }`);
|
||
|
const err = res.body.errors[0];
|
||
|
t.is(err.message, 'forbidden query');
|
||
|
t.is(err.extensions.code, HttpStatus.FORBIDDEN);
|
||
|
t.is(err.extensions.status, HttpStatus[HttpStatus.FORBIDDEN]);
|
||
|
});
|
||
|
|
||
|
test('should be able to handle unknown internal error', async t => {
|
||
|
const res = await gql(t.context.app, `query { unknownErrorQuery }`);
|
||
|
const err = res.body.errors[0];
|
||
|
t.is(err.message, 'Internal Server Error');
|
||
|
t.is(err.extensions.code, HttpStatus.INTERNAL_SERVER_ERROR);
|
||
|
t.is(err.extensions.status, HttpStatus[HttpStatus.INTERNAL_SERVER_ERROR]);
|
||
|
});
|