2014-10-23 16:30:18 -04:00
|
|
|
package main
|
|
|
|
|
|
|
|
import (
|
2015-04-13 13:30:07 -04:00
|
|
|
"net/http"
|
2014-10-23 16:30:18 -04:00
|
|
|
"os/exec"
|
|
|
|
"strings"
|
|
|
|
"testing"
|
|
|
|
)
|
|
|
|
|
|
|
|
func TestResizeApiResponse(t *testing.T) {
|
2014-10-24 00:27:09 -04:00
|
|
|
runCmd := exec.Command(dockerBinary, "run", "-d", "busybox", "top")
|
2014-10-23 16:30:18 -04:00
|
|
|
out, _, err := runCommandWithOutput(runCmd)
|
|
|
|
if err != nil {
|
|
|
|
t.Fatalf(out, err)
|
|
|
|
}
|
|
|
|
defer deleteAllContainers()
|
2015-04-06 09:21:18 -04:00
|
|
|
cleanedContainerID := strings.TrimSpace(out)
|
2014-10-23 16:30:18 -04:00
|
|
|
|
|
|
|
endpoint := "/containers/" + cleanedContainerID + "/resize?h=40&w=40"
|
2015-04-11 17:49:14 -04:00
|
|
|
_, _, err = sockRequest("POST", endpoint, nil)
|
2014-10-23 16:30:18 -04:00
|
|
|
if err != nil {
|
|
|
|
t.Fatalf("resize Request failed %v", err)
|
|
|
|
}
|
|
|
|
|
|
|
|
logDone("container resize - when started")
|
|
|
|
}
|
|
|
|
|
2015-04-13 02:36:04 -04:00
|
|
|
func TestResizeApiHeightWidthNoInt(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 := "/containers/" + cleanedContainerID + "/resize?h=foo&w=bar"
|
2015-04-13 13:30:07 -04:00
|
|
|
status, _, err := sockRequest("POST", endpoint, nil)
|
2015-04-13 02:36:04 -04:00
|
|
|
if err == nil {
|
|
|
|
t.Fatal("Expected resize Request to fail")
|
|
|
|
}
|
2015-04-13 13:30:07 -04:00
|
|
|
if status != http.StatusInternalServerError {
|
|
|
|
t.Fatalf("Status expected %d, got %d", http.StatusInternalServerError, status)
|
|
|
|
}
|
2015-04-13 02:36:04 -04:00
|
|
|
|
|
|
|
logDone("container resize - height, width no int fail")
|
|
|
|
}
|
|
|
|
|
2014-10-23 16:30:18 -04:00
|
|
|
func TestResizeApiResponseWhenContainerNotStarted(t *testing.T) {
|
|
|
|
runCmd := exec.Command(dockerBinary, "run", "-d", "busybox", "true")
|
|
|
|
out, _, err := runCommandWithOutput(runCmd)
|
|
|
|
if err != nil {
|
|
|
|
t.Fatalf(out, err)
|
|
|
|
}
|
|
|
|
defer deleteAllContainers()
|
2015-04-06 09:21:18 -04:00
|
|
|
cleanedContainerID := strings.TrimSpace(out)
|
2014-10-23 16:30:18 -04:00
|
|
|
|
2015-04-10 03:09:26 -04:00
|
|
|
// make sure the exited container is not running
|
2014-10-23 16:30:18 -04:00
|
|
|
runCmd = exec.Command(dockerBinary, "wait", cleanedContainerID)
|
|
|
|
out, _, err = runCommandWithOutput(runCmd)
|
|
|
|
if err != nil {
|
|
|
|
t.Fatalf(out, err)
|
|
|
|
}
|
|
|
|
|
|
|
|
endpoint := "/containers/" + cleanedContainerID + "/resize?h=40&w=40"
|
2015-04-11 17:49:14 -04:00
|
|
|
_, body, err := sockRequest("POST", endpoint, nil)
|
2014-10-23 16:30:18 -04:00
|
|
|
if err == nil {
|
|
|
|
t.Fatalf("resize should fail when container is not started")
|
|
|
|
}
|
|
|
|
if !strings.Contains(string(body), "Cannot resize container") && !strings.Contains(string(body), cleanedContainerID) {
|
|
|
|
t.Fatalf("resize should fail with message 'Cannot resize container' but instead received %s", string(body))
|
|
|
|
}
|
|
|
|
|
|
|
|
logDone("container resize - when not started should not resize")
|
|
|
|
}
|