2017-07-06 14:28:13 +00:00
|
|
|
package integration
|
2016-07-20 09:56:14 +00:00
|
|
|
|
|
|
|
import (
|
|
|
|
"net/http"
|
|
|
|
"time"
|
|
|
|
|
2017-05-17 13:22:44 +00:00
|
|
|
"github.com/containous/traefik/integration/try"
|
2016-07-20 09:56:14 +00:00
|
|
|
"github.com/go-check/check"
|
|
|
|
checker "github.com/vdemeester/shakers"
|
|
|
|
)
|
|
|
|
|
|
|
|
// Mesos test suites (using libcompose)
|
|
|
|
type MesosSuite struct{ BaseSuite }
|
|
|
|
|
|
|
|
func (s *MesosSuite) SetUpSuite(c *check.C) {
|
|
|
|
s.createComposeProject(c, "mesos")
|
|
|
|
}
|
|
|
|
|
|
|
|
func (s *MesosSuite) TestSimpleConfiguration(c *check.C) {
|
2017-07-10 12:58:31 +00:00
|
|
|
cmd, _ := s.cmdTraefik(withConfigFile("fixtures/mesos/simple.toml"))
|
2016-07-20 09:56:14 +00:00
|
|
|
err := cmd.Start()
|
|
|
|
c.Assert(err, checker.IsNil)
|
|
|
|
defer cmd.Process.Kill()
|
|
|
|
|
|
|
|
// TODO validate : run on 80
|
|
|
|
// Expected a 404 as we did not configure anything
|
2017-05-17 13:22:44 +00:00
|
|
|
err = try.GetRequest("http://127.0.0.1:8000/", 500*time.Millisecond, try.StatusCodeIs(http.StatusNotFound))
|
2016-07-20 09:56:14 +00:00
|
|
|
c.Assert(err, checker.IsNil)
|
|
|
|
}
|