node-red/test/red/api/info_spec.js

98 lines
3.5 KiB
JavaScript
Raw Normal View History

2014-11-06 23:59:48 +01:00
/**
2015-04-13 23:15:15 +02:00
* Copyright 2014, 2015 IBM Corp.
2014-11-06 23:59:48 +01:00
*
* Licensed under the Apache License, Version 2.0 (the "License");
* you may not use this file except in compliance with the License.
* You may obtain a copy of the License at
*
* http://www.apache.org/licenses/LICENSE-2.0
*
* Unless required by applicable law or agreed to in writing, software
* distributed under the License is distributed on an "AS IS" BASIS,
* WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
* See the License for the specific language governing permissions and
* limitations under the License.
**/
var should = require("should");
var request = require('supertest');
var express = require('express');
var sinon = require('sinon');
var when = require('when');
var app = express();
var info = require("../../../red/api/info");
2015-04-13 23:15:15 +02:00
var theme = require("../../../red/api/theme");
2014-11-06 23:59:48 +01:00
describe("info api", function() {
describe("settings handler", function() {
before(function() {
2015-04-13 23:15:15 +02:00
sinon.stub(theme,"settings",function() { return { test: 456 };});
2014-11-06 23:59:48 +01:00
app = express();
app.get("/settings",info.settings);
});
2014-11-06 23:59:48 +01:00
after(function() {
2015-04-13 23:15:15 +02:00
theme.settings.restore();
2014-11-06 23:59:48 +01:00
});
2014-11-06 23:59:48 +01:00
it('returns the filtered settings', function(done) {
info.init({
settings: {
foo: 123,
httpNodeRoot: "testHttpNodeRoot",
version: "testVersion",
paletteCategories :["red","blue","green"]
},
nodes: {
paletteEditorEnabled: function() { return true; }
}
});
2014-11-06 23:59:48 +01:00
request(app)
.get("/settings")
.expect(200)
.end(function(err,res) {
if (err) {
return done(err);
}
res.body.should.have.property("httpNodeRoot","testHttpNodeRoot");
res.body.should.have.property("version","testVersion");
res.body.should.have.property("paletteCategories",["red","blue","green"]);
2015-04-13 23:15:15 +02:00
res.body.should.have.property("editorTheme",{test:456});
2014-11-06 23:59:48 +01:00
res.body.should.not.have.property("foo",123);
done();
});
});
it('overrides palette editable if runtime says it is disabled', function(done) {
info.init({
settings: {
httpNodeRoot: "testHttpNodeRoot",
version: "testVersion",
paletteCategories :["red","blue","green"]
},
nodes: {
paletteEditorEnabled: function() { return false; }
}
});
request(app)
.get("/settings")
.expect(200)
.end(function(err,res) {
if (err) {
return done(err);
}
res.body.should.have.property("httpNodeRoot","testHttpNodeRoot");
res.body.should.have.property("version","testVersion");
res.body.should.have.property("paletteCategories",["red","blue","green"]);
res.body.should.have.property("editorTheme");
res.body.editorTheme.should.have.property("test",456);
res.body.editorTheme.should.have.property("palette",{editable:false});
done();
});
})
2014-11-06 23:59:48 +01:00
});
});