Linting and review fix

pull/1017/head
Mikunj 5 years ago
parent 5c36b75723
commit fa387b5dfa

@ -91,6 +91,7 @@ This profile will change [userData](https://electron.atom.io/docs/all/#appgetpat
directory from `%appData%/Session` to `%appData%/Session-{environment}-{instance}`.
There are a few scripts which you can use:
```
yarn start - Start development
yarn start-multi - Start second instance of development
@ -100,9 +101,11 @@ yarn start-prod-multi - Start another instance of production
For more than 2 clients, you may run the above command with `NODE_APP_INSTANCE` set before them.
For example, running:
```
NODE_APP_INSTANCE=alice yarn start
```
Will run the development environment with the `alice` instance and thus create a seperate storage profile.
If a fixed profile is needed (in the case of tests), you can specify it using `storageProfile` in the config file. If the change is local then put it in `local-{instance}.json` otherwise put it in `default-{instance}.json` or `{env}-{instance}.json`.

@ -38,13 +38,10 @@ const config = require('config');
config.environment = environment;
// Log resulting env vars in use by config
[
'NODE_ENV',
'NODE_APP_INSTANCE',
'NODE_CONFIG_DIR',
'NODE_CONFIG',
].forEach(s => {
console.log(`${s} ${config.util.getEnv(s)}`);
});
['NODE_ENV', 'NODE_APP_INSTANCE', 'NODE_CONFIG_DIR', 'NODE_CONFIG'].forEach(
s => {
console.log(`${s} ${config.util.getEnv(s)}`);
}
);
module.exports = config;

@ -7,8 +7,12 @@ const { start } = require('./base_config');
const config = require('./config');
let storageProfile;
const { NODE_ENV: environment, NODE_APP_INSTANCE:instance } = process.env;
const isValidInstance = instance && instance.length > 0;
// Node makes sure all environment variables are strings
const { NODE_ENV: environment, NODE_APP_INSTANCE: instance } = process.env;
// We need to make sure instance is not empty
const isValidInstance = instance === 'string' && instance.length > 0;
const isProduction = environment === 'production' && !isValidInstance;
// Use seperate data directories for each different environment and app instances
@ -18,7 +22,7 @@ if (config.has(storageProfile)) {
} else if (!isProduction) {
storageProfile = environment;
if (isValidInstance) {
storageProfile = storageProfile.concat(`-${instance}`)
storageProfile = storageProfile.concat(`-${instance}`);
}
}

@ -51,27 +51,22 @@ module.exports = {
},
async startApp(environment = 'test-integration-session') {
const env = {
NODE_ENV: environment,
USE_STUBBED_NETWORK: true,
ELECTRON_ENABLE_LOGGING: true,
ELECTRON_ENABLE_STACK_DUMPING: true,
ELECTRON_DISABLE_SANDBOX: 1,
};
// If it's specifically integration environment then we should extract the instance from it.
// This will still allow its storage to be found in Session-{environment}
// It just makes it easier to manage the config file
if (environment.includes('test-integration-')) {
const instance = environment.replace('test-integration-', '');
env.NODE_ENV = 'test-integration';
env.NODE_APP_INSTANCE = instance;
}
const env = environment.startsWith('test-integration')
? 'test-integration'
: environment;
const instance = environment.replace('test-integration-', '');
const app1 = new Application({
path: path.join(__dirname, '..', 'node_modules', '.bin', 'electron'),
args: ['.'],
env,
env: {
NODE_ENV: env,
NODE_APP_INSTANCE: instance,
USE_STUBBED_NETWORK: true,
ELECTRON_ENABLE_LOGGING: true,
ELECTRON_ENABLE_STACK_DUMPING: true,
ELECTRON_DISABLE_SANDBOX: 1,
},
startTimeout: 10000,
requireName: 'electronRequire',
// chromeDriverLogPath: '../chromedriverlog.txt',
@ -131,10 +126,7 @@ module.exports = {
},
async startAndAssureCleanedApp(env = 'test-integration-session') {
const userData = path.join(
this.USER_DATA_ROOT_FOLDER,
`Session-${env}`
);
const userData = path.join(this.USER_DATA_ROOT_FOLDER, `Session-${env}`);
await this.rmFolder(userData);

Loading…
Cancel
Save