fix: #199 transform found Rally artifacts to upper case

since Rally API returns 'undefined' errors for lowercase artifacts.
This commit is contained in:
Alexander Vorobyev 2021-05-06 12:45:00 +03:00 коммит произвёл GitHub
Родитель 8f1cb6f448
Коммит cec5930b8e
Не найден ключ, соответствующий данной подписи
Идентификатор ключа GPG: 4AEE18F83AFDEB23
1 изменённых файлов: 4 добавлений и 2 удалений

Просмотреть файл

@ -726,7 +726,9 @@ class RallyValidate {
const regexp = RegExp('\\b' + prefix + '[0-9]{1,10}\\b', 'gi')
const artifactMatches = text.match(regexp)
if (artifactMatches) {
artifacts = artifacts.concat(artifactMatches)
artifacts = artifacts.concat(artifactMatches.map(
artifactMatch => artifactMatch.toUpperCase())
)
}
})
return artifacts
@ -769,7 +771,7 @@ class RallyValidate {
const artifactMatches = matches.map(match => {
const artifactMatch = {
command: command,
artifact: match.substr(command.length + 2)
artifact: match.substr(command.length + 2).toUpperCase()
}
return artifactMatch
})