1
0
mirror of https://github.com/Unleash/unleash.git synced 2024-10-18 20:09:08 +02:00
unleash.unleash/test/featureApiSpec.js

63 lines
2.0 KiB
JavaScript

var assert = require('assert');
var specHelper = require('./specHelper');
var request = specHelper.request;
var stringify = function (o) { return JSON.stringify(o, null, ' '); };
describe('The features api', function () {
beforeEach(function (done) {
specHelper.db.resetAndSetup()
.then(done.bind(null, null))
.catch(done);
});
it('returns three feature toggles', function (done) {
request
.get('/features')
.expect('Content-Type', /json/)
.expect(200)
.end(function (err, res) {
assert(res.body.features.length === 3, "expected 3 features, got " + stringify(res.body));
done();
});
});
it('gets a feature by name', function (done) {
request
.get('/features/featureX')
.expect('Content-Type', /json/)
.expect(200, done);
});
it('creates new feature toggle', function (done) {
request
.post('/features')
.send({name: 'com.test.feature', enabled: false})
.set('Content-Type', 'application/json')
.expect(201, done);
});
it('require new feature toggle to have a name', function (done) {
request
.post('/features')
.send({name: ''})
.set('Content-Type', 'application/json')
.expect(400, done);
});
it('can not change status of feature toggle that does not exist', function (done) {
request
.put('/features/should-not-exist')
.send({name: 'should-not-exist', enabled: false})
.set('Content-Type', 'application/json')
.expect(404, done);
});
it('can change status of feature toggle that does exist', function (done) {
request
.put('/features/featureY')
.send({name: 'featureY', enabled: true})
.set('Content-Type', 'application/json')
.expect(200, done);
});
});