[ACA-4229] [ADW-AGS] Move Governance plugin check script to ADF CLI (#6523)

* [ACA-4229] [ADW-AGS] Move Governance plugin check script to ADF CLI

* * Added description
This commit is contained in:
siva kumar
2021-01-22 14:58:18 +05:30
committed by GitHub
parent 5712b50d62
commit cf1bb700ae
7 changed files with 106 additions and 14 deletions

View File

@@ -3,6 +3,7 @@ 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';
import { GovernanceCheckPlugin } from './plugins/governance-check-plugin';
let pluginEnv;
@@ -10,11 +11,11 @@ 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('--pluginName [type]', 'pluginName')
.option('--appName [type]', 'appName ', 'Deployed appName on activiti-cloud')
.option('-p, --password [type]', 'password ')
.option('-u, --username [type]', 'username ')
.option('--ui, --uiName [type]', 'uiName')
.option('--ui, --uiName [type]', 'uiName', 'Deployed app UI type on activiti-cloud')
.parse(process.argv);
pluginEnv = new CheckEnv(program.host, program.username, program.password);
@@ -27,15 +28,17 @@ export default async function main(_args: string[]) {
if (program.pluginName === PluginTarget.processAutomation) {
await checkProcessAutomationPlugin();
}
if (program.pluginName === PluginTarget.governance) {
await checkGovernancePlugin();
}
}
async function checkProcessServicesPlugin() {
const processServiceCheckPlugin = new ProcessServiceCheckPlugin(
{
host: program.host,
name: PluginTarget.processService,
appName: null,
uiName: null
name: PluginTarget.processService
},
pluginEnv.alfrescoJsApi
);
@@ -54,3 +57,15 @@ async function checkProcessAutomationPlugin() {
);
await processAutomationCheckPlugin.checkProcessAutomationPlugin();
}
async function checkGovernancePlugin() {
const governancePluginCheck = new GovernanceCheckPlugin(
{
host: program.host,
name: PluginTarget.governance
},
pluginEnv.alfrescoJsApi
);
await governancePluginCheck.checkRecordManagement();
}