* feat: improve code * chore: update version * feat: api service * fix: api services * feat: improve code * feat: improve code * feat: improve code * feat: pm socket * fix: test errors * feat: add built-in plugins before upgrade * feat: update docs * feat: improve code * fix: after load
84 lines
2.1 KiB
TypeScript
84 lines
2.1 KiB
TypeScript
import Database from '@nocobase/database';
|
|
import { mockServer, MockServer } from '@nocobase/test';
|
|
import PluginUsers from '../server';
|
|
import { userPluginConfig } from './utils';
|
|
|
|
describe('actions', () => {
|
|
let app: MockServer;
|
|
let db: Database;
|
|
let adminUser;
|
|
let agent;
|
|
let adminAgent;
|
|
let pluginUser;
|
|
|
|
beforeEach(async () => {
|
|
app = mockServer();
|
|
await app.cleanDb();
|
|
process.env.INIT_ROOT_EMAIL = 'test@nocobase.com';
|
|
process.env.INIT_ROOT_PASSWORD = '123456';
|
|
process.env.INIT_ROOT_NICKNAME = 'Test';
|
|
app.plugin(PluginUsers, userPluginConfig);
|
|
|
|
await app.loadAndInstall();
|
|
db = app.db;
|
|
|
|
pluginUser = app.getPlugin('users');
|
|
adminUser = await db.getRepository('users').findOne({
|
|
filter: {
|
|
email: process.env.INIT_ROOT_EMAIL
|
|
}
|
|
});
|
|
|
|
agent = app.agent();
|
|
adminAgent = app.agent().auth(
|
|
pluginUser.jwtService.sign({
|
|
userId: adminUser.get('id'),
|
|
}),
|
|
{ type: 'bearer' },
|
|
);
|
|
});
|
|
|
|
afterEach(async () => {
|
|
await db.close();
|
|
});
|
|
|
|
it('should login user with password', async () => {
|
|
const { INIT_ROOT_EMAIL, INIT_ROOT_PASSWORD } = process.env;
|
|
|
|
let response = await agent.resource('users').check();
|
|
expect(response.body.data.id).toBeUndefined();
|
|
|
|
response = await agent.post('/users:signin').send({
|
|
email: INIT_ROOT_EMAIL,
|
|
password: INIT_ROOT_PASSWORD,
|
|
});
|
|
|
|
expect(response.statusCode).toEqual(200);
|
|
|
|
const data = response.body.data;
|
|
const token = data.token;
|
|
expect(token).toBeDefined();
|
|
|
|
response = await agent.get('/users:check').set({ Authorization: 'Bearer ' + token });
|
|
expect(response.body.data.id).toBeDefined();
|
|
});
|
|
|
|
it('update profile', async () => {
|
|
const res1 = await agent.resource('users').updateProfile({
|
|
filterByTk: adminUser.id,
|
|
values: {
|
|
nickname: 'a'
|
|
}
|
|
});
|
|
expect(res1.status).toBe(401);
|
|
|
|
const res2 = await adminAgent.resource('users').updateProfile({
|
|
filterByTk: adminUser.id,
|
|
values: {
|
|
nickname: 'a'
|
|
}
|
|
});
|
|
expect(res2.status).toBe(200);
|
|
});
|
|
});
|