UNPKG

@elastic/synthetics

Version:

Elastic synthetic monitoring agent

104 lines 3.88 kB
"use strict"; /** * MIT License * * Copyright (c) 2020-present, Elastic NV * * Permission is hereby granted, free of charge, to any person obtaining a copy * of this software and associated documentation files (the "Software"), to deal * in the Software without restriction, including without limitation the rights * to use, copy, modify, merge, publish, distribute, sublicense, and/or sell * copies of the Software, and to permit persons to whom the Software is * furnished to do so, subject to the following conditions: * * The above copyright notice and this permission notice shall be included in * all copies or substantial portions of the Software. * * THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR * IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY, * FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE * AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER * LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, * OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN * THE SOFTWARE. * */ Object.defineProperty(exports, "__esModule", { value: true }); exports.findSyntheticsConfig = exports.readConfig = void 0; const path_1 = require("path"); const helpers_1 = require("./helpers"); async function readConfig(env, config) { let options = {}; const cwd = process.cwd(); /** * If config is passed via `--config` flag, try to resolve it relative to the * current working directory */ if (typeof config === 'string') { const configPath = resolveConfigPath(config, cwd); options = readAndParseConfig(configPath); } else { /** * resolve to `synthetics.config.js` and `synthetics.config.ts` * recursively till root */ const configPath = findSyntheticsConfig(cwd, cwd); configPath && (options = readAndParseConfig(configPath)); } if (typeof options === 'function') { options = options(env); const optionsPromise = options; if (optionsPromise != null && typeof optionsPromise.then === 'function' && typeof optionsPromise.catch === 'function') { options = await optionsPromise; } } return options; } exports.readConfig = readConfig; function resolveConfigPath(configPath, cwd) { const absolutePath = (0, path_1.isAbsolute)(configPath) ? configPath : (0, path_1.resolve)(cwd, configPath); if ((0, helpers_1.isFile)(absolutePath)) { return absolutePath; } throw new Error('Synthetics config file does not exist: ' + absolutePath); } function interopRequireDefault(obj) { return obj && obj.__esModule ? obj : { default: obj }; } function readAndParseConfig(configPath) { try { /* eslint-disable @typescript-eslint/no-var-requires */ const requiredModule = require(configPath); return interopRequireDefault(requiredModule).default; } catch (e) { throw new Error('Unable to read synthetics config: ' + configPath + '\n' + e); } } function getConfigFile(ext) { return 'synthetics.config' + ext; } function findSyntheticsConfig(resolvePath, cwd) { const configPath = ['.js', '.ts'] .map(ext => (0, path_1.resolve)(resolvePath, getConfigFile(ext))) .find(helpers_1.isFile); if (configPath) { return configPath; } const parentDirectory = (0, path_1.dirname)(resolvePath); /** * We are in the system root, so return empty path and fallback * to empty suite params */ if (resolvePath === parentDirectory) { return ''; } return findSyntheticsConfig(parentDirectory, cwd); } exports.findSyntheticsConfig = findSyntheticsConfig; //# sourceMappingURL=config.js.map