Press n or j to go to the next uncovered block, b, p or k for the previous block.
1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 52 53 54 55 56 57 58 59 60 61 62 63 64 65 66 67 68 69 70 71 72 73 74 75 76 77 78 79 80 81 82 83 84 85 86 87 88 89 90 91 92 93 94 95 96 97 98 99 100 101 102 103 104 105 106 107 108 109 110 111 112 113 114 115 116 117 118 119 120 121 122 123 124 125 126 127 128 129 130 131 132 133 134 135 136 137 138 139 140 141 142 143 144 145 146 147 148 149 150 151 152 153 154 155 156 157 158 159 160 161 162 163 164 165 166 167 168 169 170 171 172 173 174 175 176 177 178 179 180 181 182 183 184 185 186 187 188 189 190 191 192 193 194 195 196 197 198 199 200 201 202 203 204 205 206 207 208 209 210 211 212 213 214 215 216 217 218 219 220 221 222 223 224 225 226 227 228 229 230 231 232 233 234 235 236 237 238 239 240 241 242 243 244 245 246 247 248 249 250 251 252 253 254 255 256 257 258 259 260 261 262 263 264 265 266 267 268 269 270 271 272 273 274 275 276 277 278 279 280 281 282 283 284 285 286 287 288 289 290 291 | 1x 1x 32x 32x 31x 1x 30x 30x 30x 29x 29x 29x 29x 29x 609x 29x 29x 29x 1x 1x 22x 22x 22x 22x 1x 21x 4x 22x 22x 22x 8x 21x 4x 20x 20x 1x 1x 1x 20x 30x 630x 625x 5x 3x 2x 1x 3x 2x 19x 19x 19x 19x 19x 6x 6x 10x 10x 7x 6x 2x 4x 4x 1x 4x 1x 4x 10x 13x 4x 13x 1x 31x 12x 12x 12x 17x 14x 3x 6x 1x 12x 2x 10x 11x 2x 1x 1x 65x 65x 1x 65x 1x 64x 70x 70x 107x 70x 106x 70x 2x 70x 64x | import fs from 'fs' import path from 'path' import glob from 'glob' import merge from 'deepmerge' import logger from '@wdio/logger' import { detectBackend } from '../utils' import { DEFAULT_CONFIGS, SUPPORTED_HOOKS } from '../constants' const log = logger('@wdio/config:ConfigParser') const MERGE_OPTIONS = { clone: false } export default class ConfigParser { constructor () { this._config = DEFAULT_CONFIGS this._capabilities = [] } /** * merges config file with default values * @param {String} filename path of file relative to current directory */ addConfigFile (filename) { if (typeof filename !== 'string') { throw new Error('addConfigFile requires filepath') } var filePath = path.resolve(process.cwd(), filename) try { /** * clone the original config */ var fileConfig = merge(require(filePath).config, {}, MERGE_OPTIONS) /** * merge capabilities */ const defaultTo = Array.isArray(this._capabilities) ? [] : {} this._capabilities = merge(this._capabilities, fileConfig.capabilities || defaultTo, MERGE_OPTIONS) delete fileConfig.capabilities /** * Add hooks from the file config and remove them from file config object to avoid * complications when using merge function */ this.addService(fileConfig) for (let hookName of SUPPORTED_HOOKS) { delete fileConfig[hookName] } this._config = merge(this._config, fileConfig, MERGE_OPTIONS) /** * For Sauce Labs RDC we need to determine if the config file has a `testobject_api_key` * If so, we need to provide a boolean to the `detectBackend` to set the correct hostname * * NOTE: This will not work for multi remote */ const isRDC = Array.isArray(this._capabilities) && this._capabilities.some(capability => 'testobject_api_key' in capability) /** * detect Selenium backend */ this._config = merge(detectBackend(this._config, isRDC), this._config, MERGE_OPTIONS) } catch (e) { log.error(`Failed loading configuration file: ${filePath}:`, e.message) throw e } } /** * merge external object with config object * @param {Object} object desired object to merge into the config object */ merge (object = {}) { this._config = merge(this._config, object, MERGE_OPTIONS) let spec = Array.isArray(object.spec) ? object.spec : [] let exclude = Array.isArray(object.exclude) ? object.exclude : [] /** * overwrite config specs that got piped into the wdio command */ if (object.specs && object.specs.length > 0) { this._config.specs = object.specs } else if (object.exclude && object.exclude.length > 0) { this._config.exclude = object.exclude } /** * merge capabilities */ const defaultTo = Array.isArray(this._capabilities) ? [] : {} this._capabilities = merge(this._capabilities, this._config.capabilities || defaultTo, MERGE_OPTIONS) /** * run single spec file only, regardless of multiple-spec specification */ if (spec.length > 0) { this._config.specs = [...this.setFilePathToFilterOptions(spec, this._config.specs)] } if (exclude.length > 0) { this._config.exclude = [...this.setFilePathToFilterOptions(exclude, this._config.exclude)] } /** * user and key could get added via cli arguments so we need to detect again * Note: cli arguments are on the right and overwrite config * if host and port are default, remove them to get new values */ let defaultBackend = detectBackend({}) if ( (this._config.hostname === defaultBackend.hostname) && (this._config.port === defaultBackend.port) && (this._config.protocol === defaultBackend.protocol) ) { delete this._config.hostname delete this._config.port delete this._config.protocol } this._config = merge(detectBackend(this._config), this._config, MERGE_OPTIONS) } /** * Add hooks from an existing service to the runner config. * @param {Object} service - an object that contains hook methods. */ addService (service) { for (let hookName of SUPPORTED_HOOKS) { if (!service[hookName]) { continue } if (typeof service[hookName] === 'function') { this._config[hookName].push(service[hookName].bind(service)) } else if (Array.isArray(service[hookName])) { for (let hook of service[hookName]) { if (typeof hook === 'function') { this._config[hookName].push(hook.bind(service)) } } } } } /** * get excluded files from config pattern */ getSpecs (capSpecs, capExclude) { let specs = ConfigParser.getFilePaths(this._config.specs) let spec = Array.isArray(this._config.spec) ? this._config.spec : [] let exclude = ConfigParser.getFilePaths(this._config.exclude) let suites = Array.isArray(this._config.suite) ? this._config.suite : [] /** * check if user has specified a specific suites to run */ if (suites.length > 0) { let suiteSpecs = [] for (let suiteName of suites) { // ToDo: log warning if suite was not found let suite = this._config.suites[suiteName] if (suite && Array.isArray(suite)) { suiteSpecs = suiteSpecs.concat(ConfigParser.getFilePaths(suite)) } } if (suiteSpecs.length === 0) { throw new Error(`The suite(s) "${suites.join('", "')}" you specified don't exist ` + 'in your config file or doesn\'t contain any files!') } // Allow --suite and --spec to both be defined on the command line // Removing any duplicate tests that could be included let tmpSpecs = spec.length > 0 ? [...specs, ...suiteSpecs] : suiteSpecs if (Array.isArray(capSpecs)) { tmpSpecs = tmpSpecs.concat(ConfigParser.getFilePaths(capSpecs)) } if (Array.isArray(capExclude)) { exclude = exclude.concat(ConfigParser.getFilePaths(capExclude)) } specs = [...new Set(tmpSpecs)] return specs.filter(spec => !exclude.includes(spec)) } if (Array.isArray(capSpecs)) { specs = specs.concat(ConfigParser.getFilePaths(capSpecs)) } if (Array.isArray(capExclude)) { exclude = exclude.concat(ConfigParser.getFilePaths(capExclude)) } return specs.filter(spec => !exclude.includes(spec)) } /** * sets config attribute with file paths from filtering * options from cli argument * * @param {String} cliArgFileList list of files in a string from * @param {Object} config config object that stores the spec and exlcude attributes * cli argument * @return {String[]} List of files that should be included or excluded */ setFilePathToFilterOptions (cliArgFileList, config) { const filesToFilter = new Set() const fileList = ConfigParser.getFilePaths(config) cliArgFileList.forEach(filteredFile => { if (fs.existsSync(filteredFile) && fs.lstatSync(filteredFile).isFile()) { filesToFilter.add(path.resolve(process.cwd(), filteredFile)) } else { fileList.forEach(file => { if (file.match(filteredFile)) { filesToFilter.add(file) } }) } }) if (filesToFilter.size === 0) { throw new Error(`spec file(s) ${cliArgFileList.join(', ')} not found`) } return filesToFilter } /** * return configs */ getConfig () { return this._config } /** * return capabilities */ getCapabilities (i) { if (typeof i === 'number' && this._capabilities[i]) { return this._capabilities[i] } return this._capabilities } /** * returns a flatten list of globed files * * @param {String[]} filenames list of files to glob * @return {String[]} list of files */ static getFilePaths (patterns, omitWarnings) { let files = [] if (typeof patterns === 'string') { patterns = [patterns] } if (!Array.isArray(patterns)) { throw new Error('specs or exclude property should be an array of strings') } for (let pattern of patterns) { let filenames = glob.sync(pattern) filenames = filenames.filter(filename => filename.slice(-3) === '.js' || filename.slice(-4) === '.es6' || filename.slice(-3) === '.ts' || filename.slice(-8) === '.feature' || filename.slice(-7) === '.coffee') filenames = filenames.map(filename => path.isAbsolute(filename) ? path.normalize(filename) : path.resolve(process.cwd(), filename)) if (filenames.length === 0 && !omitWarnings) { log.warn('pattern', pattern, 'did not match any file') } files = merge(files, filenames, MERGE_OPTIONS) } return files } } |