diff options
author | Toshiki Sonoda <sonoda.toshiki@fujitsu.com> | 2022-09-08 11:18:10 +0900 |
---|---|---|
committer | Toshiki Sonoda <sonoda.toshiki@fujitsu.com> | 2022-09-08 17:56:42 +0900 |
commit | 626ee118c8b39e2cd17b2d88e651d2e39fa60ec4 (patch) | |
tree | 7387850ec2bf3eae74d7ca7888418fdffc61b944 | |
parent | ea3e7ef0733dfc010606fdc8fc631e1d17866349 (diff) | |
download | podman-626ee118c8b39e2cd17b2d88e651d2e39fa60ec4.tar.gz podman-626ee118c8b39e2cd17b2d88e651d2e39fa60ec4.tar.bz2 podman-626ee118c8b39e2cd17b2d88e651d2e39fa60ec4.zip |
e2e: fix run_staticip_test in proxy environment
`Podman run two containers with the same IP [It]`
This test will be failed in proxy environment.
We need to set the static ip to no_proxy.
Signed-off-by: Toshiki Sonoda <sonoda.toshiki@fujitsu.com>
-rw-r--r-- | test/e2e/run_staticip_test.go | 7 |
1 files changed, 7 insertions, 0 deletions
diff --git a/test/e2e/run_staticip_test.go b/test/e2e/run_staticip_test.go index 8207f6d0b..12783cd29 100644 --- a/test/e2e/run_staticip_test.go +++ b/test/e2e/run_staticip_test.go @@ -105,6 +105,13 @@ var _ = Describe("Podman run with --ip flag", func() { result.WaitWithDefaultTimeout() Expect(result).Should(Exit(0)) + // We need to set "no_proxy" in proxy environment + if env, found := os.LookupEnv("no_proxy"); found { + defer os.Setenv("no_proxy", env) + } else { + defer os.Unsetenv("no_proxy") + } + os.Setenv("no_proxy", ip) for retries := 20; retries > 0; retries-- { response, err := http.Get(fmt.Sprintf("http://%s", ip)) if err == nil && response.StatusCode == http.StatusOK { |