UNPKG

@haystacks/async

Version:

A framework to build any number or any kind of native application or automation solution.

112 lines (91 loc) 5.35 kB
Description: Test plan for pathArrayParsing.js -------------------------------------------------------------------------------- testName: doesArrayContainFilename_validData input inputData: array<string> (The array of file names that should be checked for the input file name we are looking for) input inputMetaData: string (The file name we are looking for in the input array) output: boolean (A True or False value to indicate if the file name was found or not) testName: doesArrayContainFilename_inValidInputDataString input inputData: string (dfxg24346dfg) input inputMetaData: string (The file name we are looking for in the input array) output: ? testName: doesArrayContainFilename_inValidInputMetaDataString input inputData: array<string> (The array of file names that should be checked for the input file name we are looking for) input inputMetaData: string (dfxg24346dfg) output: ? testName: doesArrayContainFilename_inValidInputDataInteger input inputData: integer (123) input inputMetaData: string (The file name we are looking for in the input array) output: ? testName: doesArrayContainFilename_inValidInputDataBoolean input inputData: boolean (false) input inputMetaData: string (The file name we are looking for in the input array) output: ? testName: doesArrayContainFilename_inValidInputMetaDataInteger input inputData: array<string> (The array of file names that should be checked for the input file name we are looking for) input inputMetaData: integer (123) output: ? testName: doesArrayContainFilename_inValidInputMetaDataBoolean input inputData: array<string> (The array of file names that should be checked for the input file name we are looking for) input inputMetaData: boolean (false) output: ? testName: doesArrayContainFilename_inValidInputDataUndefined input inputData: undefined input inputMetaData: string (The file name we are looking for in the input array) output: ? testName: doesArrayContainFilename_inValidInputDataNaN input inputData: NaN input inputMetaData: string (The file name we are looking for in the input array) output: ? testName: doesArrayContainFilename_inValidInputMetaDataUndefined input inputData: array<string> (The array of file names that should be checked for the input file name we are looking for) input inputMetaData: undefined output: ? testName: doesArrayContainFilename_inValidInputMetaDataNaN input inputData: array<string> (The array of file names that should be checked for the input file name we are looking for) input inputMetaData: NaN output: ? -------------------------------------------------------------------------------- testName: getFileAndPathListForPath_validData input inputData: string (The path that should be scanned for files and their full paths) input inputMetaData: integer (Optional file limit, ignored if the configuration flag is not set to true, if nothing is passed the configuration setting will be used) output: array<string> (The array that contains the full path and file name for every file found under the specified path) testName: getFileAndPathListForPath_inValidInputDataString input inputData: string (dfxg24346dfg) input inputMetaData: integer (Optional file limit, ignored if the configuration flag is not set to true, if nothing is passed the configuration setting will be used) output: ? testName: getFileAndPathListForPath_inValidInputMetaDataString input inputData: string (The path that should be scanned for files and their full paths) input inputMetaData: string (dfxg24346dfg) output: ? testName: getFileAndPathListForPath_inValidInputDataInteger input inputData: integer (123) input inputMetaData: integer (Optional file limit, ignored if the configuration flag is not set to true, if nothing is passed the configuration setting will be used) output: ? testName: getFileAndPathListForPath_inValidInputDataBoolean input inputData: boolean (false) input inputMetaData: integer (Optional file limit, ignored if the configuration flag is not set to true, if nothing is passed the configuration setting will be used) output: ? testName: getFileAndPathListForPath_inValidInputMetaDataInteger input inputData: string (The path that should be scanned for files and their full paths) input inputMetaData: integer (123) output: ? testName: getFileAndPathListForPath_inValidInputMetaDataBoolean input inputData: string (The path that should be scanned for files and their full paths) input inputMetaData: boolean (false) output: ? testName: getFileAndPathListForPath_inValidInputDataUndefined input inputData: undefined input inputMetaData: integer (Optional file limit, ignored if the configuration flag is not set to true, if nothing is passed the configuration setting will be used) output: ? testName: getFileAndPathListForPath_inValidInputDataNaN input inputData: NaN input inputMetaData: integer (Optional file limit, ignored if the configuration flag is not set to true, if nothing is passed the configuration setting will be used) output: ? testName: getFileAndPathListForPath_inValidInputMetaDataUndefined input inputData: string (The path that should be scanned for files and their full paths) input inputMetaData: undefined output: ? testName: getFileAndPathListForPath_inValidInputMetaDataNaN input inputData: string (The path that should be scanned for files and their full paths) input inputMetaData: NaN output: ?