diff options
author | Filip Tehlar <ftehlar@cisco.com> | 2023-06-15 10:06:57 +0200 |
---|---|---|
committer | Florin Coras <florin.coras@gmail.com> | 2023-06-27 15:58:47 +0000 |
commit | 31eaea9eef0594117e83733aa01f8bbda940e4da (patch) | |
tree | 40a0ff08e018c379dd92823aa60c2a64ce1b9a4a /extras/hs-test/hst_suite.go | |
parent | fe965a3a17fd543cb5a7caf37b25729c1683865b (diff) |
hs-test: add nginx+quic test
Type: test
Change-Id: I15e4f2fb84cb4f34b6fea95978db000854a63e78
Signed-off-by: Filip Tehlar <ftehlar@cisco.com>
Diffstat (limited to 'extras/hs-test/hst_suite.go')
-rw-r--r-- | extras/hs-test/hst_suite.go | 16 |
1 files changed, 16 insertions, 0 deletions
diff --git a/extras/hs-test/hst_suite.go b/extras/hs-test/hst_suite.go index d972c9d9b8e..093bca0b56f 100644 --- a/extras/hs-test/hst_suite.go +++ b/extras/hs-test/hst_suite.go @@ -4,6 +4,8 @@ import ( "flag" "io/ioutil" "os" + "os/exec" + "strings" "time" "github.com/edwarnicke/exechelper" @@ -162,6 +164,20 @@ func (s *HstSuite) SkipIfMultiWorker(args ...any) { } } +func (s *HstSuite) SkipUnlessExtendedTestsBuilt() { + imageName := "hs-test/nginx-http3" + + cmd := exec.Command("docker", "images", imageName) + byteOutput, err := cmd.CombinedOutput() + if err != nil { + s.log("error while searching for docker image") + return + } + if !strings.Contains(string(byteOutput), imageName) { + s.skip("extended tests not built") + } +} + func (s *HstSuite) resetContainers() { for _, container := range s.containers { container.stop() |