mirror of
https://github.com/moby/moby.git
synced 2022-11-09 12:21:53 -05:00
26 lines
852 B
Go
26 lines
852 B
Go
|
package main
|
||
|
|
||
|
import (
|
||
|
"net/http"
|
||
|
|
||
|
"github.com/go-check/check"
|
||
|
)
|
||
|
|
||
|
func (s *DockerSuite) TestApiOptionsRoute(c *check.C) {
|
||
|
status, _, err := sockRequest("OPTIONS", "/", nil)
|
||
|
c.Assert(status, check.Equals, http.StatusOK)
|
||
|
c.Assert(err, check.IsNil)
|
||
|
}
|
||
|
|
||
|
func (s *DockerSuite) TestApiGetEnabledCors(c *check.C) {
|
||
|
res, body, err := sockRequestRaw("GET", "/version", nil, "")
|
||
|
body.Close()
|
||
|
c.Assert(err, check.IsNil)
|
||
|
c.Assert(res.StatusCode, check.Equals, http.StatusOK)
|
||
|
// TODO: @runcom incomplete tests, why old integration tests had this headers
|
||
|
// and here none of the headers below are in the response?
|
||
|
//c.Log(res.Header)
|
||
|
//c.Assert(res.Header.Get("Access-Control-Allow-Origin"), check.Equals, "*")
|
||
|
//c.Assert(res.Header.Get("Access-Control-Allow-Headers"), check.Equals, "Origin, X-Requested-With, Content-Type, Accept, X-Registry-Auth")
|
||
|
}
|