2019-04-02 08:40:04 +00:00
|
|
|
package integration
|
|
|
|
|
|
|
|
import (
|
|
|
|
"net/http"
|
2019-07-15 08:22:03 +00:00
|
|
|
"os"
|
2019-04-02 08:40:04 +00:00
|
|
|
"time"
|
|
|
|
|
2019-08-03 01:58:23 +00:00
|
|
|
"github.com/containous/traefik/v2/integration/try"
|
2019-04-02 08:40:04 +00:00
|
|
|
"github.com/go-check/check"
|
|
|
|
checker "github.com/vdemeester/shakers"
|
|
|
|
)
|
|
|
|
|
|
|
|
// Headers test suites
|
|
|
|
type HeadersSuite struct{ BaseSuite }
|
|
|
|
|
|
|
|
func (s *HeadersSuite) TestSimpleConfiguration(c *check.C) {
|
|
|
|
cmd, display := s.traefikCmd(withConfigFile("fixtures/headers/basic.toml"))
|
|
|
|
defer display(c)
|
|
|
|
err := cmd.Start()
|
|
|
|
c.Assert(err, checker.IsNil)
|
|
|
|
defer cmd.Process.Kill()
|
|
|
|
|
|
|
|
// Expected a 404 as we did not configure anything
|
|
|
|
err = try.GetRequest("http://127.0.0.1:8000/", 1000*time.Millisecond, try.StatusCodeIs(http.StatusNotFound))
|
|
|
|
c.Assert(err, checker.IsNil)
|
|
|
|
}
|
|
|
|
|
|
|
|
func (s *HeadersSuite) TestCorsResponses(c *check.C) {
|
2019-07-15 08:22:03 +00:00
|
|
|
file := s.adaptFile(c, "fixtures/headers/cors.toml", struct{}{})
|
|
|
|
defer os.Remove(file)
|
|
|
|
cmd, display := s.traefikCmd(withConfigFile(file))
|
2019-04-02 08:40:04 +00:00
|
|
|
defer display(c)
|
|
|
|
|
|
|
|
err := cmd.Start()
|
|
|
|
c.Assert(err, checker.IsNil)
|
|
|
|
defer cmd.Process.Kill()
|
|
|
|
|
2019-07-12 09:46:04 +00:00
|
|
|
backend := startTestServer("9000", http.StatusOK)
|
|
|
|
defer backend.Close()
|
|
|
|
|
|
|
|
err = try.GetRequest(backend.URL, 500*time.Millisecond, try.StatusCodeIs(http.StatusOK))
|
|
|
|
c.Assert(err, checker.IsNil)
|
|
|
|
|
2019-04-02 08:40:04 +00:00
|
|
|
testCase := []struct {
|
|
|
|
desc string
|
|
|
|
requestHeaders http.Header
|
|
|
|
expected http.Header
|
2019-07-12 09:46:04 +00:00
|
|
|
reqHost string
|
|
|
|
method string
|
2019-04-02 08:40:04 +00:00
|
|
|
}{
|
|
|
|
{
|
|
|
|
desc: "simple access control allow origin",
|
|
|
|
requestHeaders: http.Header{
|
|
|
|
"Origin": {"https://foo.bar.org"},
|
|
|
|
},
|
|
|
|
expected: http.Header{
|
|
|
|
"Access-Control-Allow-Origin": {"https://foo.bar.org"},
|
|
|
|
"Vary": {"Origin"},
|
|
|
|
},
|
2019-07-12 09:46:04 +00:00
|
|
|
reqHost: "test.localhost",
|
|
|
|
method: http.MethodGet,
|
2019-04-02 08:40:04 +00:00
|
|
|
},
|
|
|
|
{
|
|
|
|
desc: "simple preflight request",
|
|
|
|
requestHeaders: http.Header{
|
|
|
|
"Access-Control-Request-Headers": {"origin"},
|
|
|
|
"Access-Control-Request-Method": {"GET", "OPTIONS"},
|
|
|
|
"Origin": {"https://foo.bar.org"},
|
|
|
|
},
|
|
|
|
expected: http.Header{
|
|
|
|
"Access-Control-Allow-Origin": {"https://foo.bar.org"},
|
|
|
|
"Access-Control-Max-Age": {"100"},
|
|
|
|
"Access-Control-Allow-Methods": {"GET,OPTIONS,PUT"},
|
|
|
|
},
|
2019-07-12 09:46:04 +00:00
|
|
|
reqHost: "test.localhost",
|
|
|
|
method: http.MethodOptions,
|
|
|
|
},
|
|
|
|
{
|
|
|
|
desc: "preflight Options request with no cors configured",
|
|
|
|
requestHeaders: http.Header{
|
|
|
|
"Access-Control-Request-Headers": {"origin"},
|
|
|
|
"Access-Control-Request-Method": {"GET", "OPTIONS"},
|
|
|
|
"Origin": {"https://foo.bar.org"},
|
|
|
|
},
|
|
|
|
expected: http.Header{
|
|
|
|
"X-Custom-Response-Header": {"True"},
|
|
|
|
},
|
|
|
|
reqHost: "test2.localhost",
|
|
|
|
method: http.MethodOptions,
|
|
|
|
},
|
|
|
|
{
|
|
|
|
desc: "preflight Get request with no cors configured",
|
|
|
|
requestHeaders: http.Header{
|
|
|
|
"Access-Control-Request-Headers": {"origin"},
|
|
|
|
"Access-Control-Request-Method": {"GET", "OPTIONS"},
|
|
|
|
"Origin": {"https://foo.bar.org"},
|
|
|
|
},
|
|
|
|
expected: http.Header{
|
|
|
|
"X-Custom-Response-Header": {"True"},
|
|
|
|
},
|
|
|
|
reqHost: "test2.localhost",
|
|
|
|
method: http.MethodGet,
|
2019-04-02 08:40:04 +00:00
|
|
|
},
|
|
|
|
}
|
|
|
|
|
|
|
|
for _, test := range testCase {
|
2019-07-12 09:46:04 +00:00
|
|
|
req, err := http.NewRequest(test.method, "http://127.0.0.1:8000/", nil)
|
2019-04-02 08:40:04 +00:00
|
|
|
c.Assert(err, checker.IsNil)
|
2019-07-12 09:46:04 +00:00
|
|
|
req.Host = test.reqHost
|
2019-04-02 08:40:04 +00:00
|
|
|
req.Header = test.requestHeaders
|
|
|
|
|
2019-07-12 09:46:04 +00:00
|
|
|
err = try.Request(req, 500*time.Millisecond, try.HasHeaderStruct(test.expected))
|
2019-04-02 08:40:04 +00:00
|
|
|
c.Assert(err, checker.IsNil)
|
|
|
|
}
|
|
|
|
}
|
2019-07-29 14:12:05 +00:00
|
|
|
|
|
|
|
func (s *HeadersSuite) TestSecureHeadersResponses(c *check.C) {
|
|
|
|
file := s.adaptFile(c, "fixtures/headers/secure.toml", struct{}{})
|
|
|
|
defer os.Remove(file)
|
|
|
|
cmd, display := s.traefikCmd(withConfigFile(file))
|
|
|
|
defer display(c)
|
|
|
|
|
|
|
|
err := cmd.Start()
|
|
|
|
c.Assert(err, checker.IsNil)
|
|
|
|
defer cmd.Process.Kill()
|
|
|
|
|
|
|
|
backend := startTestServer("9000", http.StatusOK)
|
|
|
|
defer backend.Close()
|
|
|
|
|
|
|
|
err = try.GetRequest(backend.URL, 500*time.Millisecond, try.StatusCodeIs(http.StatusOK))
|
|
|
|
c.Assert(err, checker.IsNil)
|
|
|
|
|
|
|
|
testCase := []struct {
|
|
|
|
desc string
|
|
|
|
expected http.Header
|
|
|
|
reqHost string
|
|
|
|
}{
|
|
|
|
{
|
|
|
|
desc: "Feature-Policy Set",
|
|
|
|
expected: http.Header{
|
|
|
|
"Feature-Policy": {"vibrate 'none';"},
|
|
|
|
},
|
|
|
|
reqHost: "test.localhost",
|
|
|
|
},
|
|
|
|
}
|
|
|
|
|
|
|
|
for _, test := range testCase {
|
|
|
|
req, err := http.NewRequest(http.MethodGet, "http://127.0.0.1:8000/", nil)
|
|
|
|
c.Assert(err, checker.IsNil)
|
|
|
|
req.Host = test.reqHost
|
|
|
|
|
|
|
|
err = try.Request(req, 500*time.Millisecond, try.HasHeaderStruct(test.expected))
|
|
|
|
c.Assert(err, checker.IsNil)
|
|
|
|
}
|
|
|
|
}
|