mirror of
https://github.com/moby/moby.git
synced 2022-11-09 12:21:53 -05:00
f9a3558a9d
Signed-off-by: John Howard <jhoward@microsoft.com>
49 lines
1.5 KiB
Go
49 lines
1.5 KiB
Go
// +build !test_no_exec
|
|
|
|
package main
|
|
|
|
import (
|
|
"bytes"
|
|
"encoding/json"
|
|
"fmt"
|
|
"net/http"
|
|
|
|
"github.com/go-check/check"
|
|
)
|
|
|
|
// Regression test for #9414
|
|
func (s *DockerSuite) TestExecApiCreateNoCmd(c *check.C) {
|
|
testRequires(c, DaemonIsLinux)
|
|
name := "exec_test"
|
|
dockerCmd(c, "run", "-d", "-t", "--name", name, "busybox", "/bin/sh")
|
|
|
|
status, body, err := sockRequest("POST", fmt.Sprintf("/containers/%s/exec", name), map[string]interface{}{"Cmd": nil})
|
|
c.Assert(err, check.IsNil)
|
|
c.Assert(status, check.Equals, http.StatusInternalServerError)
|
|
|
|
if !bytes.Contains(body, []byte("No exec command specified")) {
|
|
c.Fatalf("Expected message when creating exec command with no Cmd specified")
|
|
}
|
|
}
|
|
|
|
func (s *DockerSuite) TestExecApiCreateNoValidContentType(c *check.C) {
|
|
testRequires(c, DaemonIsLinux)
|
|
name := "exec_test"
|
|
dockerCmd(c, "run", "-d", "-t", "--name", name, "busybox", "/bin/sh")
|
|
|
|
jsonData := bytes.NewBuffer(nil)
|
|
if err := json.NewEncoder(jsonData).Encode(map[string]interface{}{"Cmd": nil}); err != nil {
|
|
c.Fatalf("Can not encode data to json %s", err)
|
|
}
|
|
|
|
res, body, err := sockRequestRaw("POST", fmt.Sprintf("/containers/%s/exec", name), jsonData, "text/plain")
|
|
c.Assert(err, check.IsNil)
|
|
c.Assert(res.StatusCode, check.Equals, http.StatusInternalServerError)
|
|
|
|
b, err := readBody(body)
|
|
c.Assert(err, check.IsNil)
|
|
|
|
if !bytes.Contains(b, []byte("Content-Type specified")) {
|
|
c.Fatalf("Expected message when creating exec command with invalid Content-Type specified")
|
|
}
|
|
}
|