mirror of
https://github.com/Alfresco/alfresco-ng2-components.git
synced 2025-07-24 17:32:15 +00:00
[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:
@@ -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();
|
||||
}
|
||||
|
Reference in New Issue
Block a user