hayd-caf
Version:
Haystacks D-CAF: Distinguished Cloud Automation Framework is a web/cloud/SaaS/mobile GUI automation plugin that leverages a suite of business rules and a factory pattern to auto-generate functions and strings for logging that are used to execute test acti
65 lines (61 loc) • 3.19 kB
JavaScript
/**
* @file commandsLibrary.js
* @module commandsLibrary
* @description Contains all of the plugin defined commands as a map between function names and function calls.
* @requires module:dCafCommands
* @requires module:plugin.command.constants
* @requires module:plugin.constants
* @requires module:loggers
* @requires module:pluginData
* @requires {@link https://www.npmjs.com/package/@haystacks/constants|@haystacks/constants}
* @requires {@link https://www.npmjs.com/package/path|path}
* @author Seth Hollingsead
* @date 2023/04/03
* @copyright Copyright © 2023-… by Seth Hollingsead. All rights reserved
*/
// Internal imports
import dCafCommands from './commands/dCafCommands.js';
import * as plg_cmd from '../constants/plugin.command.constants.js';
import * as plg from '../constants/plugin.constants.js';
import loggers from '../executrix/loggers.js';
import D from '../structures/pluginData.js';
// External imports
import hayConst from '@haystacks/constants';
import path from 'path';
const {bas, msg, sys, wrd} = hayConst;
const baseFileName = path.basename(import.meta.url, path.extname(import.meta.url));
// plugins.hayD-CAF.commandsBlob.commandsLibrary.
const namespacePrefix = wrd.cplugins + bas.cDot + plg.cpluginName + bas.cDot + sys.ccommandsBlob + bas.cDot + baseFileName + bas.cDot;
/**
* @function initPluginCommandsLibrary
* @description Initializes an object map of plugin commands and plugin function calls and returns them.
* @return {object} A JSON object that contains an array of function objects that map function name to function call for all of the commands.
* @author Seth Hollingsead
* @date 2023/04/03
* @NOTE Please be aware that the Commands and BusinessRules data fields in the
* D-data structure are going to display as empty when printing out the D-data structure even when using JSON.stringify().
* This is because the functions cannot really be serialized in any way. It actually kind of makes sense,
* but could be really confusing if you are struggling, trying to debug commands or business rules that do not appear to exist.
*/
async function initPluginCommandsLibrary() {
// let functionName = initPluginCommandsLibrary.name;
// await loggers.consoleLog(namespacePrefix + functionName, msg.cBEGIN_Function);
let returnData = {};
returnData[wrd.ccommands] = {};
returnData[wrd.ccommands] = {
// Commands
// ***********************************************************************
// BEGIN d-CafCommands category
// ***********************************************************************
[plg_cmd.cbuildBrowserActionFunction]: (inputData, inputMetaData) => dCafCommands.buildBrowserActionFunction(inputData, inputMetaData)
// ***********************************************************************
// END d-CafCommands category
// ***********************************************************************
};
// await loggers.consoleLog(namespacePrefix + functionName, msg.creturnDataIs + JSON.stringify(returnData));
// await loggers.consoleLog(namespacePrefix + functionName, msg.cEND_Function);
return returnData;
}
export default {
initPluginCommandsLibrary
};