2015-09-27 13:59:51 +00:00
|
|
|
package main
|
|
|
|
|
|
|
|
import (
|
|
|
|
"net/http"
|
|
|
|
"os/exec"
|
|
|
|
"time"
|
|
|
|
|
2016-02-01 10:07:05 +00:00
|
|
|
"fmt"
|
2015-09-27 13:59:51 +00:00
|
|
|
checker "github.com/vdemeester/shakers"
|
|
|
|
check "gopkg.in/check.v1"
|
|
|
|
)
|
|
|
|
|
|
|
|
func (s *ConsulSuite) TestSimpleConfiguration(c *check.C) {
|
2016-01-13 21:46:44 +00:00
|
|
|
cmd := exec.Command(traefikBinary, "--configFile=fixtures/consul/simple.toml")
|
2015-09-27 13:59:51 +00:00
|
|
|
err := cmd.Start()
|
|
|
|
c.Assert(err, checker.IsNil)
|
2015-11-03 22:06:31 +00:00
|
|
|
defer cmd.Process.Kill()
|
2015-09-27 13:59:51 +00:00
|
|
|
|
2015-10-08 20:11:34 +00:00
|
|
|
time.Sleep(500 * time.Millisecond)
|
2015-09-27 13:59:51 +00:00
|
|
|
// TODO validate : run on 80
|
2016-01-13 21:46:44 +00:00
|
|
|
resp, err := http.Get("http://127.0.0.1:8000/")
|
2015-09-27 13:59:51 +00:00
|
|
|
|
2016-02-01 10:07:05 +00:00
|
|
|
// Expected no response as we did not configure anything
|
|
|
|
c.Assert(resp, checker.IsNil)
|
|
|
|
c.Assert(err, checker.NotNil)
|
|
|
|
c.Assert(err.Error(), checker.Contains, fmt.Sprintf("getsockopt: connection refused"))
|
2015-09-27 13:59:51 +00:00
|
|
|
}
|