e8dc902781
Integration tests will now configure clients to propagate traces as well as create spans for all tests. Some extra changes were needed (or desired for trace propagation) in the test helpers to pass through tracing spans via context. Signed-off-by: Brian Goff <cpuguy83@gmail.com>
41 lines
1.2 KiB
Go
41 lines
1.2 KiB
Go
package container // import "github.com/docker/docker/integration/container"
|
|
|
|
import (
|
|
"testing"
|
|
"time"
|
|
|
|
containertypes "github.com/docker/docker/api/types/container"
|
|
"github.com/docker/docker/integration/internal/container"
|
|
"gotest.tools/v3/assert"
|
|
"gotest.tools/v3/poll"
|
|
)
|
|
|
|
// hcs can sometimes take a long time to stop container.
|
|
const StopContainerWindowsPollTimeout = 75 * time.Second
|
|
|
|
func TestStopContainerWithRestartPolicyAlways(t *testing.T) {
|
|
ctx := setupTest(t)
|
|
apiClient := testEnv.APIClient()
|
|
|
|
names := []string{"verifyRestart1-" + t.Name(), "verifyRestart2-" + t.Name()}
|
|
for _, name := range names {
|
|
container.Run(ctx, t, apiClient,
|
|
container.WithName(name),
|
|
container.WithCmd("false"),
|
|
container.WithRestartPolicy(containertypes.RestartPolicyAlways),
|
|
)
|
|
}
|
|
|
|
for _, name := range names {
|
|
poll.WaitOn(t, container.IsInState(ctx, apiClient, name, "running", "restarting"), poll.WithDelay(100*time.Millisecond))
|
|
}
|
|
|
|
for _, name := range names {
|
|
err := apiClient.ContainerStop(ctx, name, containertypes.StopOptions{})
|
|
assert.NilError(t, err)
|
|
}
|
|
|
|
for _, name := range names {
|
|
poll.WaitOn(t, container.IsStopped(ctx, apiClient, name), poll.WithDelay(100*time.Millisecond))
|
|
}
|
|
}
|