mirror of
https://github.com/wassname/talk.git
synced 2026-06-29 06:12:43 +08:00
52 lines
1.3 KiB
JavaScript
52 lines
1.3 KiB
JavaScript
const passport = require('../../../passport');
|
|
|
|
const app = require('../../../../../app');
|
|
const chai = require('chai');
|
|
const expect = chai.expect;
|
|
|
|
chai.should();
|
|
chai.use(require('chai-http'));
|
|
|
|
const SettingsService = require('../../../../../services/settings');
|
|
const defaults = {id: '1', moderation: 'PRE'};
|
|
|
|
describe('/api/v1/settings', () => {
|
|
|
|
beforeEach(() => SettingsService.init(defaults));
|
|
|
|
describe('#get', () => {
|
|
|
|
it('should return a settings object', () => {
|
|
return chai.request(app)
|
|
.get('/api/v1/settings')
|
|
.set(passport.inject({
|
|
roles: ['ADMIN']
|
|
}))
|
|
.then((res) => {
|
|
expect(res).to.have.status(200);
|
|
expect(res).to.be.json;
|
|
expect(res.body).to.have.property('moderation', 'PRE');
|
|
});
|
|
});
|
|
});
|
|
|
|
describe('#put', () => {
|
|
|
|
it('should update the settings', () => {
|
|
return chai.request(app)
|
|
.put('/api/v1/settings')
|
|
.set(passport.inject({roles: ['ADMIN']}))
|
|
.send({moderation: 'POST'})
|
|
.then((res) => {
|
|
expect(res).to.have.status(204);
|
|
|
|
return SettingsService.retrieve();
|
|
})
|
|
.then((settings) => {
|
|
expect(settings).to.have.property('moderation', 'POST');
|
|
});
|
|
});
|
|
});
|
|
|
|
});
|