Fix repo url retrieval 73/1573/1
authorJuha Kosonen <juha.kosonen@nokia.com>
Thu, 12 Sep 2019 08:37:34 +0000 (11:37 +0300)
committerJuha Kosonen <juha.kosonen@nokia.com>
Thu, 12 Sep 2019 08:37:34 +0000 (11:37 +0300)
Allow also non-printable characters as a field separator when listing
repositories.

JIRA: VAL-47

Change-Id: If8628fd55adc5f2d38e8680d3f96e9a0cbd5b94e
Signed-off-by: Juha Kosonen <juha.kosonen@nokia.com>
tests/helm/helm_repository.resource

index e6ca3a2..eb4c4c7 100644 (file)
@@ -47,7 +47,8 @@ Build Chart Archive
     Set Suite Variable      ${CHARTARC}
 
 Get Default Repository
-    ${REPOURL}=             Execute Command  helm repo list | grep '^${REPONAME} ' | cut -f2
+    ${REPOURL}=             Execute Command
+    ...                     helm repo list | grep '^${REPONAME}\\([[:blank:]]\\|[^[:print:]]\\)' | cut -f2
     Set Suite Variable      ${REPOURL}
     Should Not Be Empty     ${REPOURL}