2019-02-11 21:54:46 -06:00
|
|
|
import * as fs from 'fs';
|
|
|
|
import * as os from 'os';
|
|
|
|
import * as path from 'path';
|
2024-07-15 02:31:54 -05:00
|
|
|
import {
|
|
|
|
ConfigFieldsDefaultValues,
|
|
|
|
IConfig,
|
|
|
|
IGlobalConfig,
|
|
|
|
} from '../src/app/config-handler';
|
2019-02-11 21:54:46 -06:00
|
|
|
|
2019-03-25 02:47:30 -05:00
|
|
|
jest.mock('electron-log');
|
2023-09-21 07:41:26 -05:00
|
|
|
jest.mock('../src/app/auto-update-handler', () => {
|
|
|
|
return {};
|
|
|
|
});
|
2024-01-11 05:07:54 -06:00
|
|
|
jest.mock('../src/common/env', () => {
|
|
|
|
return {
|
|
|
|
isWindowsOS: true,
|
|
|
|
isLinux: false,
|
|
|
|
isMac: false,
|
|
|
|
isDevEnv: true,
|
|
|
|
};
|
|
|
|
});
|
|
|
|
|
|
|
|
jest.mock('../src/common/logger', () => {
|
|
|
|
return {
|
|
|
|
logger: {
|
|
|
|
setLoggerWindow: jest.fn(),
|
|
|
|
error: jest.fn(),
|
|
|
|
info: jest.fn(),
|
|
|
|
},
|
|
|
|
};
|
|
|
|
});
|
2019-03-25 02:47:30 -05:00
|
|
|
|
2024-01-16 03:18:46 -06:00
|
|
|
jest.mock('../src/app/window-handler', () => {
|
|
|
|
return {
|
|
|
|
windowHandler: { isOnline: true },
|
|
|
|
};
|
|
|
|
});
|
|
|
|
|
2019-02-11 21:54:46 -06:00
|
|
|
describe('config', () => {
|
2021-01-29 00:25:40 -06:00
|
|
|
const configFileName: string = 'Symphony.config';
|
|
|
|
let userConfigDir: string;
|
|
|
|
let globalConfigDir: string;
|
|
|
|
let configInstance: any;
|
|
|
|
|
|
|
|
const createTempGlobalConfig = (fileName: string): string => {
|
|
|
|
const tmpDir = os.tmpdir();
|
|
|
|
return path.join(fs.mkdtempSync(path.join(tmpDir, 'config-')), fileName);
|
|
|
|
};
|
|
|
|
|
|
|
|
const createTempUserConfig = (fileName: string): string => {
|
|
|
|
const tmpDir = os.tmpdir();
|
|
|
|
return path.join(fs.mkdtempSync(path.join(tmpDir, 'user-')), fileName);
|
|
|
|
};
|
|
|
|
|
|
|
|
// write data in global config created
|
|
|
|
const writeConfigFile = (data: object): void => {
|
|
|
|
fs.writeFileSync(globalConfigDir, JSON.stringify(data));
|
|
|
|
};
|
|
|
|
|
|
|
|
// write data in user config created
|
|
|
|
const writeUserFile = (data: object): void => {
|
|
|
|
fs.writeFileSync(userConfigDir, JSON.stringify(data));
|
|
|
|
};
|
|
|
|
|
|
|
|
beforeEach(() => {
|
|
|
|
const { config } = require('../src/app/config-handler');
|
|
|
|
|
|
|
|
globalConfigDir = createTempGlobalConfig(configFileName);
|
|
|
|
userConfigDir = createTempUserConfig(configFileName);
|
|
|
|
|
|
|
|
configInstance = config;
|
|
|
|
jest.resetModules();
|
|
|
|
});
|
|
|
|
|
|
|
|
describe('getConfigFields', () => {
|
|
|
|
it('should fail when field not present in either user or global config', () => {
|
|
|
|
const fieldMock: string[] = ['no-url'];
|
|
|
|
const globalConfig: object = { url: 'test' };
|
|
|
|
const userConfig: object = { configVersion: '4.0.1' };
|
|
|
|
|
|
|
|
// creating temp file
|
|
|
|
writeConfigFile(globalConfig);
|
|
|
|
writeUserFile(userConfig);
|
|
|
|
|
|
|
|
// changing path from /Users/.../SymphonyElectron/config/Symphony.config to temp path
|
|
|
|
configInstance.globalConfigPath = globalConfigDir;
|
|
|
|
configInstance.userConfigPath = userConfigDir;
|
|
|
|
configInstance.readGlobalConfig();
|
|
|
|
configInstance.readUserConfig();
|
|
|
|
|
|
|
|
const configField: IConfig = configInstance.getConfigFields(fieldMock);
|
|
|
|
expect(configField).toEqual({});
|
2019-02-11 21:54:46 -06:00
|
|
|
});
|
|
|
|
|
2024-07-15 02:31:54 -05:00
|
|
|
it('should retrieve default values when field not present in either user or global config', () => {
|
|
|
|
const fieldMock: string[] = [
|
|
|
|
'isPodUrlEditable',
|
|
|
|
'forceAutoUpdate',
|
|
|
|
'enableBrowserLogin',
|
|
|
|
'browserLoginAutoConnect',
|
|
|
|
'latestAutoUpdateChannelEnabled',
|
|
|
|
'betaAutoUpdateChannelEnabled',
|
|
|
|
];
|
|
|
|
const globalConfig: object = { url: 'test' };
|
|
|
|
const userConfig: object = { configVersion: '4.0.1' };
|
|
|
|
|
|
|
|
// creating temp file
|
|
|
|
writeConfigFile(globalConfig);
|
|
|
|
writeUserFile(userConfig);
|
|
|
|
|
|
|
|
// changing path from /Users/.../SymphonyElectron/config/Symphony.config to temp path
|
|
|
|
configInstance.globalConfigPath = globalConfigDir;
|
|
|
|
configInstance.userConfigPath = userConfigDir;
|
|
|
|
configInstance.readGlobalConfig();
|
|
|
|
configInstance.readUserConfig();
|
|
|
|
|
|
|
|
const configField: IConfig = configInstance.getConfigFields(fieldMock);
|
|
|
|
expect(configField).toEqual({ ...ConfigFieldsDefaultValues });
|
|
|
|
});
|
|
|
|
|
2021-01-29 00:25:40 -06:00
|
|
|
it('should succeed when only present in user config', () => {
|
|
|
|
const fieldMock: string[] = ['url'];
|
|
|
|
const globalConfig: object = { url: 'something' };
|
|
|
|
const userConfig: object = { configVersion: '4.0.1' };
|
|
|
|
|
|
|
|
writeConfigFile(globalConfig);
|
|
|
|
writeUserFile(userConfig);
|
|
|
|
|
|
|
|
configInstance.globalConfigPath = globalConfigDir;
|
|
|
|
configInstance.userConfigPath = userConfigDir;
|
|
|
|
|
|
|
|
configInstance.readUserConfig();
|
|
|
|
configInstance.readGlobalConfig();
|
|
|
|
|
2023-09-21 07:41:26 -05:00
|
|
|
const configField: IGlobalConfig =
|
|
|
|
configInstance.getGlobalConfigFields(fieldMock);
|
2021-01-29 00:25:40 -06:00
|
|
|
|
|
|
|
expect(configField.url).toBe('something');
|
2019-02-11 21:54:46 -06:00
|
|
|
});
|
2021-01-29 00:25:40 -06:00
|
|
|
});
|
|
|
|
|
|
|
|
describe('updateConfig', () => {
|
|
|
|
it('should overwrite existing field', () => {
|
|
|
|
const userConfig: object = { configVersion: '4.0.0' };
|
|
|
|
const overwriteUserConfig: object = { configVersion: '4.0.1' };
|
|
|
|
writeUserFile(userConfig);
|
2019-02-11 21:54:46 -06:00
|
|
|
|
2021-01-29 00:25:40 -06:00
|
|
|
configInstance.userConfigPath = userConfigDir;
|
|
|
|
configInstance.readUserConfig();
|
2019-02-11 21:54:46 -06:00
|
|
|
|
2021-01-29 00:25:40 -06:00
|
|
|
configInstance.updateUserConfig(overwriteUserConfig);
|
|
|
|
expect(configInstance.userConfig.configVersion).toBe('4.0.1');
|
|
|
|
});
|
2019-02-11 21:54:46 -06:00
|
|
|
|
2021-01-29 00:25:40 -06:00
|
|
|
it('should add new field', () => {
|
|
|
|
const userConfig: object = { configVersion: '4.0.0' };
|
|
|
|
const newValue: object = { test: 'test' };
|
2019-02-11 21:54:46 -06:00
|
|
|
|
2021-01-29 00:25:40 -06:00
|
|
|
writeUserFile(userConfig);
|
2019-02-11 21:54:46 -06:00
|
|
|
|
2021-01-29 00:25:40 -06:00
|
|
|
configInstance.userConfigPath = userConfigDir;
|
|
|
|
configInstance.readUserConfig();
|
2019-02-11 21:54:46 -06:00
|
|
|
|
2021-01-29 00:25:40 -06:00
|
|
|
configInstance.updateUserConfig(newValue);
|
|
|
|
expect(configInstance.userConfig).toEqual({
|
|
|
|
configVersion: '4.0.0',
|
|
|
|
test: 'test',
|
|
|
|
});
|
|
|
|
});
|
|
|
|
});
|
2022-03-01 10:35:34 -06:00
|
|
|
|
|
|
|
describe('compareCloudConfig', () => {
|
|
|
|
it('should return no updated fields for same objects', () => {
|
|
|
|
const sdaCloudConfig: object = { configVersion: '4.0.0' };
|
|
|
|
const sfeCloudConfig: object = { configVersion: '4.0.0' };
|
|
|
|
const updatedFields = configInstance.compareCloudConfig(
|
|
|
|
sdaCloudConfig,
|
|
|
|
sfeCloudConfig,
|
|
|
|
);
|
|
|
|
|
|
|
|
expect(updatedFields.length).toBe(0);
|
|
|
|
});
|
|
|
|
|
|
|
|
it('should return no updated fields for empty object', () => {
|
|
|
|
const sdaCloudConfig: object = { configVersion: '4.0.0' };
|
|
|
|
const sfeCloudConfig: object = {};
|
|
|
|
const updatedFields = configInstance.compareCloudConfig(
|
|
|
|
sdaCloudConfig,
|
|
|
|
sfeCloudConfig,
|
|
|
|
);
|
|
|
|
|
|
|
|
expect(updatedFields.length).toBe(0);
|
|
|
|
});
|
|
|
|
|
|
|
|
it('should return correct number of updated fields', () => {
|
|
|
|
const sdaCloudConfig: object = {
|
|
|
|
memoryThreshold: false,
|
|
|
|
isCustomTitleBar: true,
|
|
|
|
};
|
|
|
|
const sfeCloudConfig: object = {
|
|
|
|
memoryThreshold: true,
|
|
|
|
isCustomTitleBar: true,
|
|
|
|
};
|
|
|
|
const updatedFields = configInstance.compareCloudConfig(
|
|
|
|
sdaCloudConfig,
|
|
|
|
sfeCloudConfig,
|
|
|
|
);
|
|
|
|
|
|
|
|
expect(updatedFields.length).toBe(1);
|
|
|
|
expect(updatedFields[0]).toBe('memoryThreshold');
|
|
|
|
});
|
|
|
|
|
|
|
|
it('should compare nested object and return correct fields', () => {
|
|
|
|
const sdaCloudConfig: object = {
|
|
|
|
memoryThreshold: false,
|
|
|
|
customFlags: {
|
|
|
|
authNegotiateDelegateWhitelist: '*.symphony.com',
|
|
|
|
authServerWhitelist: '',
|
|
|
|
},
|
|
|
|
};
|
|
|
|
const sfeCloudConfig: object = {
|
|
|
|
memoryThreshold: false,
|
|
|
|
customFlags: {
|
|
|
|
authNegotiateDelegateWhitelist: '*.symphony.com',
|
|
|
|
authServerWhitelist: '',
|
|
|
|
},
|
|
|
|
};
|
|
|
|
const updatedFields = configInstance.compareCloudConfig(
|
|
|
|
sdaCloudConfig,
|
|
|
|
sfeCloudConfig,
|
|
|
|
);
|
|
|
|
|
|
|
|
expect(updatedFields.length).toBe(0);
|
|
|
|
});
|
|
|
|
|
|
|
|
it('should return correct number of updated fields for nested object comparison', () => {
|
|
|
|
const sdaCloudConfig: object = {
|
|
|
|
memoryThreshold: false,
|
|
|
|
customFlags: {
|
|
|
|
authNegotiateDelegateWhitelist: '',
|
|
|
|
authServerWhitelist: '',
|
|
|
|
},
|
|
|
|
};
|
|
|
|
const sfeCloudConfig: object = {
|
|
|
|
memoryThreshold: false,
|
|
|
|
customFlags: {
|
|
|
|
authNegotiateDelegateWhitelist: '*.symphony.com',
|
|
|
|
authServerWhitelist: '',
|
|
|
|
},
|
|
|
|
};
|
|
|
|
const updatedFields = configInstance.compareCloudConfig(
|
|
|
|
sdaCloudConfig,
|
|
|
|
sfeCloudConfig,
|
|
|
|
);
|
|
|
|
|
|
|
|
expect(updatedFields.length).toBe(1);
|
|
|
|
expect(updatedFields[0]).toBe('customFlags');
|
|
|
|
});
|
|
|
|
|
|
|
|
it('should compare array and return correct fields', () => {
|
|
|
|
const sdaCloudConfig: object = {
|
|
|
|
memoryThreshold: false,
|
|
|
|
customFlags: {
|
|
|
|
authNegotiateDelegateWhitelist: '',
|
|
|
|
authServerWhitelist: '',
|
|
|
|
},
|
|
|
|
ctWhitelist: [],
|
|
|
|
podWhitelist: [],
|
|
|
|
};
|
|
|
|
const sfeCloudConfig: object = {
|
|
|
|
memoryThreshold: false,
|
|
|
|
customFlags: {
|
|
|
|
authNegotiateDelegateWhitelist: '',
|
|
|
|
authServerWhitelist: '',
|
|
|
|
},
|
|
|
|
ctWhitelist: [],
|
|
|
|
podWhitelist: [],
|
|
|
|
};
|
|
|
|
const updatedFields = configInstance.compareCloudConfig(
|
|
|
|
sdaCloudConfig,
|
|
|
|
sfeCloudConfig,
|
|
|
|
);
|
|
|
|
|
|
|
|
expect(updatedFields.length).toBe(0);
|
|
|
|
});
|
|
|
|
|
|
|
|
it('should return correct number of updated fields for array comparison', () => {
|
|
|
|
const sdaCloudConfig: object = {
|
|
|
|
memoryThreshold: false,
|
|
|
|
customFlags: {
|
|
|
|
authNegotiateDelegateWhitelist: '',
|
|
|
|
authServerWhitelist: '',
|
|
|
|
},
|
|
|
|
ctWhitelist: ['amulli'],
|
|
|
|
podWhitelist: [],
|
|
|
|
};
|
|
|
|
const sfeCloudConfig: object = {
|
|
|
|
memoryThreshold: false,
|
|
|
|
customFlags: {
|
|
|
|
authNegotiateDelegateWhitelist: '',
|
|
|
|
authServerWhitelist: '',
|
|
|
|
},
|
|
|
|
ctWhitelist: [],
|
|
|
|
podWhitelist: ['butti'],
|
|
|
|
};
|
|
|
|
const updatedFields = configInstance.compareCloudConfig(
|
|
|
|
sdaCloudConfig,
|
|
|
|
sfeCloudConfig,
|
|
|
|
);
|
|
|
|
|
|
|
|
expect(updatedFields.length).toBe(2);
|
|
|
|
expect(updatedFields[0]).toBe('ctWhitelist');
|
|
|
|
expect(updatedFields[1]).toBe('podWhitelist');
|
|
|
|
});
|
|
|
|
});
|
2019-02-11 21:54:46 -06:00
|
|
|
});
|