mirror of
https://github.com/Alfresco/alfresco-ng2-components.git
synced 2025-07-24 17:32:15 +00:00
[ACA-4227] [APS] Create a script to check Process Services Management plugin status before running e2e tests (#6486)
* [ACA-4227] Create a generic script to check plugin status before running e2e tests by plugin name * * Added governace env check * * Added AAE plugin check * * Updated script * small improvements, add uiName parameter for the command * * Fixed comments * * Moved check-plugin script in the common place * * Added table format to show plugin status Co-authored-by: adomi <ardit.domi@alfresco.com>
This commit is contained in:
56
lib/cli/scripts/check-plugin-env.ts
Normal file
56
lib/cli/scripts/check-plugin-env.ts
Normal file
@@ -0,0 +1,56 @@
|
||||
import { PluginTarget } from './plugins/plugin-model';
|
||||
import { CheckEnv } from './plugins/check-env';
|
||||
import program = require('commander');
|
||||
import { ProcessServiceCheckPlugin } from './plugins/process-service-check-plugin';
|
||||
import { ProcessAutomationCheckPlugin } from './plugins/process-automation-check-plugin';
|
||||
|
||||
let pluginEnv;
|
||||
|
||||
export default async function main(_args: string[]) {
|
||||
program
|
||||
.version('0.1.0')
|
||||
.option('--host [type]', 'Remote environment host')
|
||||
.option('--pluginName [type]', 'pluginName ')
|
||||
.option('--appName [type]', 'appName ')
|
||||
.option('-p, --password [type]', 'password ')
|
||||
.option('-u, --username [type]', 'username ')
|
||||
.option('--ui, --uiName [type]', 'uiName')
|
||||
.parse(process.argv);
|
||||
|
||||
pluginEnv = new CheckEnv(program.host, program.username, program.password);
|
||||
await pluginEnv.checkEnv();
|
||||
|
||||
if (program.pluginName === PluginTarget.processService) {
|
||||
await checkProcessServicesPlugin();
|
||||
}
|
||||
|
||||
if (program.pluginName === PluginTarget.processAutomation) {
|
||||
await checkProcessAutomationPlugin();
|
||||
}
|
||||
}
|
||||
|
||||
async function checkProcessServicesPlugin() {
|
||||
const processServiceCheckPlugin = new ProcessServiceCheckPlugin(
|
||||
{
|
||||
host: program.host,
|
||||
name: PluginTarget.processService,
|
||||
appName: null,
|
||||
uiName: null
|
||||
},
|
||||
pluginEnv.alfrescoJsApi
|
||||
);
|
||||
await processServiceCheckPlugin.checkProcessServicesPlugin();
|
||||
}
|
||||
|
||||
async function checkProcessAutomationPlugin() {
|
||||
const processAutomationCheckPlugin = new ProcessAutomationCheckPlugin(
|
||||
{
|
||||
host: program.host,
|
||||
name: PluginTarget.processAutomation,
|
||||
appName: program.appName,
|
||||
uiName: program.uiName
|
||||
},
|
||||
pluginEnv.alfrescoJsApi
|
||||
);
|
||||
await processAutomationCheckPlugin.checkProcessAutomationPlugin();
|
||||
}
|
Reference in New Issue
Block a user