2020-01-04 03:28:03 +08:00
|
|
|
import * as path from 'path';
|
2021-01-04 17:32:19 +08:00
|
|
|
import * as fs from 'fs';
|
2020-01-04 03:28:03 +08:00
|
|
|
import {Config} from '../../../../../src/common/config/private/Config';
|
|
|
|
import {SQLConnection} from '../../../../../src/backend/model/database/sql/SQLConnection';
|
|
|
|
import {Server} from '../../../../../src/backend/server';
|
2021-04-18 21:48:35 +08:00
|
|
|
import {DatabaseType, ServerConfig} from '../../../../../src/common/config/private/PrivateConfig';
|
2020-12-29 05:08:57 +08:00
|
|
|
import {ProjectPath} from '../../../../../src/backend/ProjectPath';
|
2020-01-04 03:28:03 +08:00
|
|
|
|
|
|
|
process.env.NODE_ENV = 'test';
|
|
|
|
const chai: any = require('chai');
|
|
|
|
const chaiHttp = require('chai-http');
|
|
|
|
const should = chai.should();
|
|
|
|
chai.use(chaiHttp);
|
|
|
|
|
|
|
|
describe('SettingsRouter', () => {
|
|
|
|
|
|
|
|
const tempDir = path.join(__dirname, '../../tmp');
|
|
|
|
beforeEach(async () => {
|
2021-01-04 17:32:19 +08:00
|
|
|
await fs.promises.rmdir(tempDir, {recursive: true});
|
2020-01-04 03:28:03 +08:00
|
|
|
Config.Server.Threading.enabled = false;
|
2021-04-18 21:48:35 +08:00
|
|
|
Config.Server.Database.type = DatabaseType.sqlite;
|
2020-01-04 03:28:03 +08:00
|
|
|
Config.Server.Database.dbFolder = tempDir;
|
2020-12-29 05:08:57 +08:00
|
|
|
ProjectPath.reset();
|
2020-01-04 03:28:03 +08:00
|
|
|
});
|
|
|
|
|
|
|
|
|
|
|
|
afterEach(async () => {
|
|
|
|
await SQLConnection.close();
|
2021-01-04 17:32:19 +08:00
|
|
|
await fs.promises.rmdir(tempDir, {recursive: true});
|
2020-01-04 03:28:03 +08:00
|
|
|
});
|
|
|
|
|
|
|
|
describe('/GET settings', () => {
|
|
|
|
it('it should GET all the books', async () => {
|
2020-01-08 06:31:38 +08:00
|
|
|
Config.Client.authenticationRequired = false;
|
2020-01-29 01:36:52 +08:00
|
|
|
const originalSettings = await Config.original();
|
2020-01-04 03:28:03 +08:00
|
|
|
originalSettings.Server.sessionSecret = null;
|
|
|
|
const srv = new Server();
|
|
|
|
await srv.onStarted.wait();
|
|
|
|
const result = await chai.request(srv.App)
|
|
|
|
.get('/api/settings');
|
|
|
|
|
|
|
|
result.res.should.have.status(200);
|
|
|
|
result.body.should.be.a('object');
|
|
|
|
should.equal(result.body.error, null);
|
2020-02-08 07:02:42 +08:00
|
|
|
result.body.result.Server.Environment.upTime = null;
|
|
|
|
originalSettings.Server.Environment.upTime = null;
|
2020-02-05 02:37:47 +08:00
|
|
|
result.body.result.should.deep.equal(JSON.parse(JSON.stringify(originalSettings.toJSON({attachState: true, attachVolatile: true}))));
|
2020-01-04 03:28:03 +08:00
|
|
|
});
|
|
|
|
});
|
|
|
|
});
|