1
0
mirror of https://github.com/containous/traefik.git synced 2025-01-11 05:17:52 +03:00
traefik/integration/consul_test.go

28 lines
676 B
Go
Raw Normal View History

package main
import (
"net/http"
"os/exec"
"time"
2016-02-01 13:07:05 +03:00
"fmt"
checker "github.com/vdemeester/shakers"
check "gopkg.in/check.v1"
)
func (s *ConsulSuite) TestSimpleConfiguration(c *check.C) {
2016-01-14 00:46:44 +03:00
cmd := exec.Command(traefikBinary, "--configFile=fixtures/consul/simple.toml")
err := cmd.Start()
c.Assert(err, checker.IsNil)
defer cmd.Process.Kill()
2015-10-08 23:11:34 +03:00
time.Sleep(500 * time.Millisecond)
// TODO validate : run on 80
2016-01-14 00:46:44 +03:00
resp, err := http.Get("http://127.0.0.1:8000/")
2016-02-01 13:07:05 +03: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"))
}