mirror of
https://github.com/toeverything/AFFiNE.git
synced 2026-02-12 12:28:42 +00:00
--- <details open="true"><summary>Generated summary (powered by <a href="https://app.graphite.dev">Graphite</a>)</summary> > ## TL;DR > This pull request adds a new migration file, a new model, and new modules related to runtime settings. It also introduces a new `Runtime` service that allows getting, setting, and updating runtime configurations. > > ## What changed > - Added a new migration file `migration.sql` that creates a table called `application_settings` with columns `key` and `value`. > - Added a new model `ApplicationSetting` with properties `key` and `value`. > - Added a new module `RuntimeSettingModule` that exports the `Runtime` service. > - Added a new service `Runtime` that provides methods for getting, setting, and updating runtime configurations. > - Modified the `app.module.ts` file to import the `RuntimeSettingModule`. > - Modified the `index.ts` file in the `fundamentals` directory to export the `Runtime` service. > - Added a new file `def.ts` in the `runtime` directory that defines the runtime configurations and provides a default implementation. > - Added a new file `service.ts` in the `runtime` directory that implements the `Runtime` service. > > ## How to test > 1. Run the migration script to create the `application_settings` table. > 2. Use the `Runtime` service to get, set, and update runtime configurations. > 3. Verify that the runtime configurations are stored correctly in the database and can be retrieved and modified using the `Runtime` service. > > ## Why make this change > This change introduces a new feature related to runtime settings. The `Runtime` service allows the application to dynamically manage and modify runtime configurations without requiring a restart. This provides flexibility and allows for easier customization and configuration of the application. </details>
90 lines
2.3 KiB
TypeScript
90 lines
2.3 KiB
TypeScript
import {
|
|
ForbiddenException,
|
|
HttpStatus,
|
|
INestApplication,
|
|
} from '@nestjs/common';
|
|
import { Args, Mutation, Query, Resolver } from '@nestjs/graphql';
|
|
import testFn, { TestFn } from 'ava';
|
|
import request from 'supertest';
|
|
|
|
import { Public } from '../src/core/auth';
|
|
import { createTestingApp } from './utils';
|
|
|
|
@Public()
|
|
@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 { app } = await createTestingApp({
|
|
providers: [TestResolver],
|
|
});
|
|
|
|
ctx.context.app = app;
|
|
});
|
|
|
|
test.afterEach.always(async ctx => {
|
|
await ctx.context.app.close();
|
|
});
|
|
|
|
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]);
|
|
});
|