mirror of
https://github.com/toeverything/AFFiNE.git
synced 2026-02-12 12:28:42 +00:00
Remove `next-auth` and implement our own Authorization/Authentication system from scratch.
## Server
- [x] tokens
- [x] function
- [x] encryption
- [x] AuthController
- [x] /api/auth/sign-in
- [x] /api/auth/sign-out
- [x] /api/auth/session
- [x] /api/auth/session (WE SUPPORT MULTI-ACCOUNT!)
- [x] OAuthPlugin
- [x] OAuthController
- [x] /oauth/login
- [x] /oauth/callback
- [x] Providers
- [x] Google
- [x] GitHub
## Client
- [x] useSession
- [x] cloudSignIn
- [x] cloudSignOut
## NOTE:
Tests will be adding in the future
57 lines
1.1 KiB
TypeScript
57 lines
1.1 KiB
TypeScript
import type { INestApplication } from '@nestjs/common';
|
|
import ava, { type TestFn } from 'ava';
|
|
import request from 'supertest';
|
|
|
|
import { AppModule } from '../src/app.module';
|
|
import { createTestingApp } from './utils';
|
|
|
|
const gql = '/graphql';
|
|
|
|
const test = ava as TestFn<{
|
|
app: INestApplication;
|
|
}>;
|
|
|
|
test.beforeEach(async t => {
|
|
const { app } = await createTestingApp({
|
|
imports: [AppModule],
|
|
});
|
|
|
|
t.context.app = app;
|
|
});
|
|
|
|
test.afterEach.always(async t => {
|
|
await t.context.app.close();
|
|
});
|
|
|
|
test('should init app', async t => {
|
|
await request(t.context.app.getHttpServer())
|
|
.post(gql)
|
|
.send({
|
|
query: `
|
|
query {
|
|
error
|
|
}
|
|
`,
|
|
})
|
|
.expect(400);
|
|
|
|
const response = await request(t.context.app.getHttpServer())
|
|
.post(gql)
|
|
.send({
|
|
query: `query {
|
|
serverConfig {
|
|
name
|
|
version
|
|
type
|
|
features
|
|
}
|
|
}`,
|
|
})
|
|
.expect(200);
|
|
|
|
const config = response.body.data.serverConfig;
|
|
|
|
t.is(config.type, 'Affine');
|
|
t.true(Array.isArray(config.features));
|
|
});
|