thelounge/test/tests/mergeConfig.js
Reto d4cc2dd361
Refactor config out of Helper (#4558)
* Remove config from Helper

Helper is the usual util grab bag of useful stuff.
Somehow the config ended up there historically but
structurally that doesn't make any sense.

* Add cert folder to prettier ignore file
2022-05-01 12:12:39 -07:00

286 lines
4.5 KiB
JavaScript

"use strict";
const log = require("../../src/log");
const expect = require("chai").expect;
const stub = require("sinon").stub;
const Config = require("../../src/config");
const TestUtil = require("../util");
describe("mergeConfig", function () {
it("should mutate object", function () {
const config = {
ip: "default",
};
expect(
Config._merge_config_objects(config, {
ip: "overridden",
})
).to.deep.equal({
ip: "overridden",
});
expect(config).to.deep.equal({
ip: "overridden",
});
});
it("should merge new properties", function () {
expect(
Config._merge_config_objects(
{
ip: "default",
newProp: "this should appear too",
},
{
ip: "overridden",
}
)
).to.deep.equal({
ip: "overridden",
newProp: "this should appear too",
});
});
it("should extend objects", function () {
expect(
Config._merge_config_objects(
{
tlsOptions: {},
},
{
tlsOptions: {
user: "test",
thing: 123,
},
}
)
).to.deep.equal({
tlsOptions: {
user: "test",
thing: 123,
},
});
});
it("should warn for unknown top level keys", function () {
let warning = "";
stub(log, "warn").callsFake(TestUtil.sanitizeLog((str) => (warning += str)));
expect(
Config._merge_config_objects(
{
optionOne: 123,
},
{
optionOne: 456,
optionTwo: 789,
}
)
).to.deep.equal({
optionOne: 456,
optionTwo: 789,
});
log.warn.restore();
expect(warning).to.equal('Unknown key "optionTwo", please verify your config.\n');
});
it("should not warn for unknown second level keys", function () {
expect(
Config._merge_config_objects(
{
optionOne: {
subOne: 123,
},
},
{
optionOne: {
subOne: 123,
subTwo: 123,
},
}
)
).to.deep.equal({
optionOne: {
subOne: 123,
subTwo: 123,
},
});
});
it("should allow changing nulls", function () {
expect(
Config._merge_config_objects(
{
oidentd: null,
},
{
oidentd: "some path",
}
)
).to.deep.equal({
oidentd: "some path",
});
});
it("should allow changing nulls with objects", function () {
expect(
Config._merge_config_objects(
{
webirc: null,
},
{
webirc: {
serverone: "password",
servertwo: "password2",
},
}
)
).to.deep.equal({
webirc: {
serverone: "password",
servertwo: "password2",
},
});
});
it("should allow changing nulls with objects that has function", function () {
const callbackFunction = () => ({});
expect(
Config._merge_config_objects(
{
webirc: null,
},
{
webirc: {
servercb: callbackFunction,
},
}
)
).to.deep.equal({
webirc: {
servercb: callbackFunction,
},
});
});
it("should keep new properties inside of objects", function () {
expect(
Config._merge_config_objects(
{
nestedOnce: {
ip: "default",
},
nestedTwice: {
thing: "default",
nested: {
otherThing: "also default",
newThing: "but also this",
},
},
},
{
nestedOnce: {},
nestedTwice: {
nested: {
otherThing: "overridden",
},
},
}
)
).to.deep.equal({
nestedOnce: {
ip: "default",
},
nestedTwice: {
thing: "default",
nested: {
otherThing: "overridden",
newThing: "but also this",
},
},
});
});
it("should not merge arrays", function () {
expect(
Config._merge_config_objects(
{
test: ["sqlite", "text"],
},
{
test: ["sqlite"],
}
)
).to.deep.equal({
test: ["sqlite"],
});
expect(
Config._merge_config_objects(
{
test: ["sqlite", "text"],
},
{
test: [],
}
)
).to.deep.equal({
test: [],
});
});
it("should change order in arrays", function () {
expect(
Config._merge_config_objects(
{
test: ["sqlite", "text"],
},
{
test: ["text", "sqlite"],
}
)
).to.deep.equal({
test: ["text", "sqlite"],
});
});
it("should only merge same type", function () {
stub(log, "warn");
expect(
Config._merge_config_objects(
{
shouldBeObject: {
thing: "yes",
},
},
{
shouldBeObject: "bad type",
}
)
).to.deep.equal({
shouldBeObject: {
thing: "yes",
},
});
expect(
Config._merge_config_objects(
{
shouldBeString: "string",
},
{
shouldBeString: 1234567,
}
)
).to.deep.equal({
shouldBeString: "string",
});
log.warn.restore();
});
});