summaryrefslogtreecommitdiffstats
path: root/client/go/cmd/test.go
diff options
context:
space:
mode:
Diffstat (limited to 'client/go/cmd/test.go')
-rw-r--r--client/go/cmd/test.go24
1 files changed, 19 insertions, 5 deletions
diff --git a/client/go/cmd/test.go b/client/go/cmd/test.go
index 5e91a7ed634..53cf2f6b6af 100644
--- a/client/go/cmd/test.go
+++ b/client/go/cmd/test.go
@@ -6,6 +6,7 @@ package cmd
import (
"bytes"
+ "crypto/tls"
"encoding/json"
"fmt"
"github.com/spf13/cobra"
@@ -176,14 +177,21 @@ func verify(step step, testsPath string, defaultCluster string, defaultParameter
method = "GET"
}
- pathAndQuery := step.Request.URI
- if pathAndQuery == "" {
- pathAndQuery = "/search/"
+ requestUri := step.Request.URI
+ if requestUri == "" {
+ requestUri = "/search/"
}
- requestUrl, err := url.ParseRequestURI(service.BaseURL + pathAndQuery)
+ requestUrl, err := url.ParseRequestURI(requestUri)
if err != nil {
return "", "", err
}
+ externalEndpoint := requestUrl.IsAbs()
+ if !externalEndpoint {
+ requestUrl, err = url.ParseRequestURI(service.BaseURL + requestUri)
+ if err != nil {
+ return "", "", err
+ }
+ }
query := requestUrl.Query()
for name, value := range parameters {
query.Add(name, value)
@@ -201,7 +209,13 @@ func verify(step step, testsPath string, defaultCluster string, defaultParameter
}
defer request.Body.Close()
- response, err := service.Do(request, 600*time.Second) // Vespa should provide a response within the given request timeout
+ var response *http.Response
+ if externalEndpoint {
+ util.ActiveHttpClient.UseCertificate([]tls.Certificate{})
+ response, err = util.ActiveHttpClient.Do(request, 60*time.Second)
+ } else {
+ response, err = service.Do(request, 600*time.Second) // Vespa should provide a response within the given request timeout
+ }
if err != nil {
return "", "", err
}