moby--moby/integration-cli/docker_api_exec_resize_test.go

26 lines
592 B
Go
Raw Normal View History

package main
import (
"os/exec"
"strings"
"testing"
)
func TestExecResizeApiHeightWidthNoInt(t *testing.T) {
runCmd := exec.Command(dockerBinary, "run", "-d", "busybox", "top")
out, _, err := runCommandWithOutput(runCmd)
if err != nil {
t.Fatalf(out, err)
}
defer deleteAllContainers()
cleanedContainerID := strings.TrimSpace(out)
endpoint := "/exec/" + cleanedContainerID + "/resize?h=foo&w=bar"
_, err = sockRequest("POST", endpoint, nil)
if err == nil {
t.Fatal("Expected exec resize Request to fail")
}
logDone("container exec resize - height, width no int fail")
}