mirror of
https://github.com/xuthus83/pigallery2.git
synced 2024-11-03 21:04:03 +08:00
103 lines
3.2 KiB
TypeScript
103 lines
3.2 KiB
TypeScript
/* eslint-disable no-unused-expressions,@typescript-eslint/no-unused-expressions */
|
|
import {expect} from 'chai';
|
|
import {ErrorDTO} from '../../../../../src/common/entities/Error';
|
|
import {ObjectManagers} from '../../../../../src/backend/model/ObjectManagers';
|
|
import {SettingsMWs} from '../../../../../src/backend/middlewares/admin/SettingsMWs';
|
|
import {ServerUserConfig} from '../../../../../src/common/config/private/PrivateConfig';
|
|
import {Config} from '../../../../../src/common/config/private/Config';
|
|
import {UserRoles} from '../../../../../src/common/entities/UserDTO';
|
|
import {ConfigClassBuilder} from '../../../../../node_modules/typeconfig/node';
|
|
import {ServerEnvironment} from '../../../../../src/backend/Environment';
|
|
import {EmailMessagingType} from '../../../../../src/common/config/private/MessagingConfig';
|
|
|
|
|
|
declare const describe: any;
|
|
declare const it: any;
|
|
declare const beforeEach: any;
|
|
|
|
describe('Settings middleware', () => {
|
|
|
|
beforeEach(() => {
|
|
ObjectManagers.reset();
|
|
});
|
|
|
|
it('should save empty enforced users settings', (done: (err?: any) => void) => {
|
|
|
|
ServerEnvironment.sendMailAvailable = false;
|
|
Config.Environment.sendMailAvailable = false;
|
|
Config.Messaging.Email.type = EmailMessagingType.sendmail;
|
|
const req: any = {
|
|
session: {},
|
|
sessionOptions: {},
|
|
query: {},
|
|
params: {},
|
|
body: {
|
|
settingsPath: 'Users',
|
|
settings: ConfigClassBuilder.attachPrivateInterface(new ServerUserConfig()).toJSON()
|
|
}
|
|
};
|
|
console.log('Settings', req);
|
|
req.body.settings.enforcedUsers = [];
|
|
const next: any = (err: ErrorDTO) => {
|
|
try {
|
|
expect(err).to.be.undefined;
|
|
expect(Config.Users.enforcedUsers.length).to.be.equal(0);
|
|
done();
|
|
} catch (err) {
|
|
console.error(err);
|
|
done(err);
|
|
}
|
|
};
|
|
SettingsMWs.updateSettings(req, null, next);
|
|
|
|
|
|
});
|
|
it('should save enforced users settings', (done: (err?: any) => void) => {
|
|
|
|
ServerEnvironment.sendMailAvailable = false;
|
|
Config.Environment.sendMailAvailable = false;
|
|
Config.Messaging.Email.type = EmailMessagingType.sendmail;
|
|
const req: any = {
|
|
session: {},
|
|
sessionOptions: {},
|
|
query: {},
|
|
params: {},
|
|
body: {
|
|
settingsPath: 'Users',
|
|
settings: {
|
|
enforcedUsers: [],
|
|
authenticationRequired: false,
|
|
unAuthenticatedUserRole: UserRoles.User
|
|
}
|
|
}
|
|
};
|
|
|
|
req.body.settings.enforcedUsers = [{name: 'Apple', password: 'Apple pass', role: UserRoles.User}];
|
|
|
|
const next2: any = (err: ErrorDTO) => {
|
|
try {
|
|
expect(Config.Users.enforcedUsers.length).to.be.equal(1);
|
|
expect(Config.Users.enforcedUsers[0].name).to.be.equal('Apple');
|
|
expect(Config.Users.enforcedUsers.length).to.be.equal(1);
|
|
Config.original().then((cfg) => {
|
|
try {
|
|
expect(cfg.Users.enforcedUsers.length).to.be.equal(1);
|
|
expect(cfg.Users.enforcedUsers[0].name).to.be.equal('Apple');
|
|
done();
|
|
} catch (err) {
|
|
console.error(err);
|
|
done(err);
|
|
}
|
|
}).catch(done);
|
|
} catch (err) {
|
|
console.error(err);
|
|
done(err);
|
|
}
|
|
};
|
|
SettingsMWs.updateSettings(req, null, next2);
|
|
|
|
});
|
|
|
|
|
|
});
|