2018-08-02 16:24:51 -04:00
|
|
|
package container // import "github.com/docker/docker/integration/container"
|
|
|
|
|
|
|
|
import (
|
|
|
|
"context"
|
|
|
|
"fmt"
|
|
|
|
"strconv"
|
|
|
|
"strings"
|
|
|
|
"testing"
|
|
|
|
"time"
|
|
|
|
|
|
|
|
"github.com/docker/docker/api/types"
|
|
|
|
"github.com/docker/docker/integration/internal/container"
|
2020-02-07 08:39:24 -05:00
|
|
|
"gotest.tools/v3/assert"
|
|
|
|
"gotest.tools/v3/icmd"
|
|
|
|
"gotest.tools/v3/poll"
|
|
|
|
"gotest.tools/v3/skip"
|
2018-08-02 16:24:51 -04:00
|
|
|
)
|
|
|
|
|
|
|
|
// TestStopContainerWithTimeout checks that ContainerStop with
|
|
|
|
// a timeout works as documented, i.e. in case of negative timeout
|
|
|
|
// waiting is not limited (issue #35311).
|
|
|
|
func TestStopContainerWithTimeout(t *testing.T) {
|
|
|
|
defer setupTest(t)()
|
2019-01-02 08:16:25 -05:00
|
|
|
client := testEnv.APIClient()
|
2018-08-02 16:24:51 -04:00
|
|
|
ctx := context.Background()
|
|
|
|
|
|
|
|
testCmd := container.WithCmd("sh", "-c", "sleep 2 && exit 42")
|
|
|
|
testData := []struct {
|
|
|
|
doc string
|
|
|
|
timeout int
|
|
|
|
expectedExitCode int
|
|
|
|
}{
|
|
|
|
// In case container is forcefully killed, 137 is returned,
|
|
|
|
// otherwise the exit code from the above script
|
|
|
|
{
|
|
|
|
"zero timeout: expect forceful container kill",
|
|
|
|
0, 137,
|
|
|
|
},
|
|
|
|
{
|
|
|
|
"too small timeout: expect forceful container kill",
|
|
|
|
1, 137,
|
|
|
|
},
|
|
|
|
{
|
|
|
|
"big enough timeout: expect graceful container stop",
|
|
|
|
3, 42,
|
|
|
|
},
|
|
|
|
{
|
|
|
|
"unlimited timeout: expect graceful container stop",
|
|
|
|
-1, 42,
|
|
|
|
},
|
|
|
|
}
|
|
|
|
|
|
|
|
for _, d := range testData {
|
|
|
|
d := d
|
|
|
|
t.Run(strconv.Itoa(d.timeout), func(t *testing.T) {
|
|
|
|
t.Parallel()
|
2019-06-06 07:15:31 -04:00
|
|
|
id := container.Run(ctx, t, client, testCmd)
|
2018-08-02 16:24:51 -04:00
|
|
|
|
|
|
|
timeout := time.Duration(d.timeout) * time.Second
|
|
|
|
err := client.ContainerStop(ctx, id, &timeout)
|
|
|
|
assert.NilError(t, err)
|
|
|
|
|
|
|
|
poll.WaitOn(t, container.IsStopped(ctx, client, id),
|
|
|
|
poll.WithDelay(100*time.Millisecond))
|
|
|
|
|
|
|
|
inspect, err := client.ContainerInspect(ctx, id)
|
|
|
|
assert.NilError(t, err)
|
|
|
|
assert.Equal(t, inspect.State.ExitCode, d.expectedExitCode)
|
|
|
|
})
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
func TestDeleteDevicemapper(t *testing.T) {
|
|
|
|
skip.If(t, testEnv.DaemonInfo.Driver != "devicemapper")
|
2019-01-03 07:05:22 -05:00
|
|
|
skip.If(t, testEnv.IsRemoteDaemon)
|
2018-08-02 16:24:51 -04:00
|
|
|
|
|
|
|
defer setupTest(t)()
|
2019-01-02 08:16:25 -05:00
|
|
|
client := testEnv.APIClient()
|
2018-08-02 16:24:51 -04:00
|
|
|
ctx := context.Background()
|
|
|
|
|
2019-06-06 07:15:31 -04:00
|
|
|
id := container.Run(ctx, t, client, container.WithName("foo-"+t.Name()), container.WithCmd("echo"))
|
2018-08-02 16:24:51 -04:00
|
|
|
|
|
|
|
poll.WaitOn(t, container.IsStopped(ctx, client, id), poll.WithDelay(100*time.Millisecond))
|
|
|
|
|
|
|
|
inspect, err := client.ContainerInspect(ctx, id)
|
|
|
|
assert.NilError(t, err)
|
|
|
|
|
|
|
|
deviceID := inspect.GraphDriver.Data["DeviceId"]
|
|
|
|
|
|
|
|
// Find pool name from device name
|
|
|
|
deviceName := inspect.GraphDriver.Data["DeviceName"]
|
|
|
|
devicePrefix := deviceName[:strings.LastIndex(deviceName, "-")]
|
|
|
|
devicePool := fmt.Sprintf("/dev/mapper/%s-pool", devicePrefix)
|
|
|
|
|
|
|
|
result := icmd.RunCommand("dmsetup", "message", devicePool, "0", fmt.Sprintf("delete %s", deviceID))
|
|
|
|
result.Assert(t, icmd.Success)
|
|
|
|
|
|
|
|
err = client.ContainerRemove(ctx, id, types.ContainerRemoveOptions{})
|
|
|
|
assert.NilError(t, err)
|
|
|
|
}
|