mirror of
https://github.com/toeverything/AFFiNE.git
synced 2024-12-23 00:41:50 +03:00
153 lines
3.9 KiB
TypeScript
153 lines
3.9 KiB
TypeScript
import type { INestApplication } from '@nestjs/common';
|
|
import request from 'supertest';
|
|
|
|
import type { WorkspaceType } from '../../src/core/workspaces';
|
|
import { gql } from './common';
|
|
|
|
export async function createWorkspace(
|
|
app: INestApplication,
|
|
token: string
|
|
): Promise<WorkspaceType> {
|
|
const res = await request(app.getHttpServer())
|
|
.post(gql)
|
|
.auth(token, { type: 'bearer' })
|
|
.set({ 'x-request-id': 'test', 'x-operation-name': 'test' })
|
|
.field(
|
|
'operations',
|
|
JSON.stringify({
|
|
name: 'createWorkspace',
|
|
query: `mutation createWorkspace($init: Upload!) {
|
|
createWorkspace(init: $init) {
|
|
id
|
|
}
|
|
}`,
|
|
variables: { init: null },
|
|
})
|
|
)
|
|
.field('map', JSON.stringify({ '0': ['variables.init'] }))
|
|
.attach('0', Buffer.from([0, 0]), 'init.data')
|
|
.expect(200);
|
|
return res.body.data.createWorkspace;
|
|
}
|
|
|
|
export async function getWorkspacePublicPages(
|
|
app: INestApplication,
|
|
token: string,
|
|
workspaceId: string
|
|
) {
|
|
const res = await request(app.getHttpServer())
|
|
.post(gql)
|
|
.auth(token, { type: 'bearer' })
|
|
.set({ 'x-request-id': 'test', 'x-operation-name': 'test' })
|
|
.send({
|
|
query: `
|
|
query {
|
|
workspace(id: "${workspaceId}") {
|
|
publicPages {
|
|
id
|
|
mode
|
|
}
|
|
}
|
|
}
|
|
`,
|
|
})
|
|
.expect(200);
|
|
return res.body.data.workspace.publicPages;
|
|
}
|
|
|
|
export async function getWorkspace(
|
|
app: INestApplication,
|
|
token: string,
|
|
workspaceId: string,
|
|
skip = 0,
|
|
take = 8
|
|
): Promise<WorkspaceType> {
|
|
const res = await request(app.getHttpServer())
|
|
.post(gql)
|
|
.auth(token, { type: 'bearer' })
|
|
.set({ 'x-request-id': 'test', 'x-operation-name': 'test' })
|
|
.send({
|
|
query: `
|
|
query {
|
|
workspace(id: "${workspaceId}") {
|
|
id, members(skip: ${skip}, take: ${take}) { id, name, email, permission, inviteId }
|
|
}
|
|
}
|
|
`,
|
|
})
|
|
.expect(200);
|
|
return res.body.data.workspace;
|
|
}
|
|
|
|
export async function updateWorkspace(
|
|
app: INestApplication,
|
|
token: string,
|
|
workspaceId: string,
|
|
isPublic: boolean
|
|
): Promise<boolean> {
|
|
const res = await request(app.getHttpServer())
|
|
.post(gql)
|
|
.auth(token, { type: 'bearer' })
|
|
.set({ 'x-request-id': 'test', 'x-operation-name': 'test' })
|
|
.send({
|
|
query: `
|
|
mutation {
|
|
updateWorkspace(input: { id: "${workspaceId}", public: ${isPublic} }) {
|
|
public
|
|
}
|
|
}
|
|
`,
|
|
})
|
|
.expect(200);
|
|
return res.body.data.updateWorkspace.public;
|
|
}
|
|
|
|
export async function publishPage(
|
|
app: INestApplication,
|
|
token: string,
|
|
workspaceId: string,
|
|
pageId: string
|
|
) {
|
|
const res = await request(app.getHttpServer())
|
|
.post(gql)
|
|
.auth(token, { type: 'bearer' })
|
|
.set({ 'x-request-id': 'test', 'x-operation-name': 'test' })
|
|
.send({
|
|
query: `
|
|
mutation {
|
|
publishPage(workspaceId: "${workspaceId}", pageId: "${pageId}") {
|
|
id
|
|
mode
|
|
}
|
|
}
|
|
`,
|
|
})
|
|
.expect(200);
|
|
return res.body.errors?.[0]?.message || res.body.data?.publishPage;
|
|
}
|
|
|
|
export async function revokePublicPage(
|
|
app: INestApplication,
|
|
token: string,
|
|
workspaceId: string,
|
|
pageId: string
|
|
) {
|
|
const res = await request(app.getHttpServer())
|
|
.post(gql)
|
|
.auth(token, { type: 'bearer' })
|
|
.set({ 'x-request-id': 'test', 'x-operation-name': 'test' })
|
|
.send({
|
|
query: `
|
|
mutation {
|
|
revokePublicPage(workspaceId: "${workspaceId}", pageId: "${pageId}") {
|
|
id
|
|
mode
|
|
public
|
|
}
|
|
}
|
|
`,
|
|
})
|
|
.expect(200);
|
|
return res.body.errors?.[0]?.message || res.body.data?.revokePublicPage;
|
|
}
|