2014-12-30 17:22:31 -05:00
|
|
|
// +build !test_no_exec
|
|
|
|
|
2014-12-01 12:16:49 -05:00
|
|
|
package main
|
|
|
|
|
|
|
|
import (
|
|
|
|
"bytes"
|
2015-07-02 02:57:44 -04:00
|
|
|
"encoding/json"
|
2014-12-01 12:16:49 -05:00
|
|
|
"fmt"
|
2015-04-20 17:03:56 -04:00
|
|
|
"net/http"
|
2015-04-18 12:46:47 -04:00
|
|
|
|
|
|
|
"github.com/go-check/check"
|
2014-12-01 12:16:49 -05:00
|
|
|
)
|
|
|
|
|
|
|
|
// Regression test for #9414
|
2015-04-18 12:46:47 -04:00
|
|
|
func (s *DockerSuite) TestExecApiCreateNoCmd(c *check.C) {
|
2015-08-28 13:36:42 -04:00
|
|
|
testRequires(c, DaemonIsLinux)
|
2014-12-01 12:16:49 -05:00
|
|
|
name := "exec_test"
|
2015-07-14 02:35:36 -04:00
|
|
|
dockerCmd(c, "run", "-d", "-t", "--name", name, "busybox", "/bin/sh")
|
2014-12-01 12:16:49 -05:00
|
|
|
|
2015-04-20 17:03:56 -04:00
|
|
|
status, body, err := sockRequest("POST", fmt.Sprintf("/containers/%s/exec", name), map[string]interface{}{"Cmd": nil})
|
|
|
|
c.Assert(err, check.IsNil)
|
2015-07-23 07:24:14 -04:00
|
|
|
c.Assert(status, check.Equals, http.StatusInternalServerError)
|
2015-04-20 17:03:56 -04:00
|
|
|
|
|
|
|
if !bytes.Contains(body, []byte("No exec command specified")) {
|
|
|
|
c.Fatalf("Expected message when creating exec command with no Cmd specified")
|
2014-12-01 12:16:49 -05:00
|
|
|
}
|
|
|
|
}
|
2015-07-02 02:57:44 -04:00
|
|
|
|
|
|
|
func (s *DockerSuite) TestExecApiCreateNoValidContentType(c *check.C) {
|
2015-08-28 13:36:42 -04:00
|
|
|
testRequires(c, DaemonIsLinux)
|
2015-07-02 02:57:44 -04:00
|
|
|
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")
|
|
|
|
}
|
|
|
|
}
|