cloudcmd/server/config.spec.mjs
2026-01-16 23:55:32 +02:00

105 lines
2.2 KiB
JavaScript

import {createRequire} from 'node:module';
import {test, stub} from 'supertape';
import {createConfig, _cryptoPass} from './config.mjs';
import {apiURL} from '../common/cloudfunc.mjs';
import {connect} from '../test/before.mjs';
const require = createRequire(import.meta.url);
const fixture = require('./config.fixture.json');
const config = createConfig();
test('config: manage', (t) => {
t.equal(undefined, config(), 'should return "undefined"');
t.end();
});
test('config: manage: get', async (t) => {
const editor = 'deepword';
const configManager = createConfig();
const {done} = await connect({
config: {
editor,
},
configManager,
});
done();
t.equal(configManager('editor'), editor, 'should get config');
t.end();
});
test('config: manage: get: config', async (t) => {
const editor = 'deepword';
const conf = {
editor,
};
const {done} = await connect({
config: conf,
});
config('editor', 'dword');
done();
t.equal('dword', config('editor'), 'should set config');
t.end();
});
test('config: manage: get: *', (t) => {
const data = config('*');
const keys = Object.keys(data);
t.ok(keys.length > 1, 'should return config data');
t.end();
});
test('config: cryptoPass: no password', (t) => {
const json = {
hello: 'world',
};
const config = createConfig();
const result = _cryptoPass(config, json);
t.deepEqual(result, [config, json], 'should not change json');
t.end();
});
test('config: cryptoPass', (t) => {
const json = {
password: 'hello',
};
const {password} = fixture;
const expected = {
password,
};
const config = createConfig();
const result = _cryptoPass(config, json);
t.deepEqual(result, [config, expected], 'should crypt password');
t.end();
});
test('config: middle: no', (t) => {
const {middle} = config;
const next = stub();
const res = null;
const url = `${apiURL}/config`;
const method = 'POST';
const req = {
url,
method,
};
middle(req, res, next);
t.calledWithNoArgs(next, 'should call next');
t.end();
});