2017-02-06 22:00:54 +00:00
|
|
|
package main
|
|
|
|
|
|
|
|
import (
|
|
|
|
"bytes"
|
|
|
|
"net/http"
|
|
|
|
"os"
|
|
|
|
"os/exec"
|
|
|
|
"time"
|
|
|
|
|
2017-05-17 13:22:44 +00:00
|
|
|
"github.com/containous/traefik/integration/try"
|
2017-02-06 22:00:54 +00:00
|
|
|
"github.com/go-check/check"
|
|
|
|
checker "github.com/vdemeester/shakers"
|
|
|
|
)
|
|
|
|
|
2017-04-25 23:08:15 +00:00
|
|
|
// HealthCheck test suites (using libcompose)
|
|
|
|
type HealthCheckSuite struct{ BaseSuite }
|
2017-02-06 22:00:54 +00:00
|
|
|
|
2017-04-25 23:08:15 +00:00
|
|
|
func (s *HealthCheckSuite) SetUpSuite(c *check.C) {
|
2017-02-06 22:00:54 +00:00
|
|
|
s.createComposeProject(c, "healthcheck")
|
|
|
|
s.composeProject.Start(c)
|
|
|
|
}
|
|
|
|
|
2017-04-25 23:08:15 +00:00
|
|
|
func (s *HealthCheckSuite) TestSimpleConfiguration(c *check.C) {
|
2017-02-06 22:00:54 +00:00
|
|
|
|
|
|
|
whoami1Host := s.composeProject.Container(c, "whoami1").NetworkSettings.IPAddress
|
|
|
|
whoami2Host := s.composeProject.Container(c, "whoami2").NetworkSettings.IPAddress
|
|
|
|
|
|
|
|
file := s.adaptFile(c, "fixtures/healthcheck/simple.toml", struct {
|
|
|
|
Server1 string
|
|
|
|
Server2 string
|
|
|
|
}{whoami1Host, whoami2Host})
|
|
|
|
defer os.Remove(file)
|
|
|
|
cmd := exec.Command(traefikBinary, "--configFile="+file)
|
|
|
|
|
|
|
|
err := cmd.Start()
|
|
|
|
c.Assert(err, checker.IsNil)
|
|
|
|
defer cmd.Process.Kill()
|
|
|
|
|
|
|
|
// wait for traefik
|
2017-05-17 13:22:44 +00:00
|
|
|
err = try.GetRequest("http://127.0.0.1:8080/api/providers", 60*time.Second, try.BodyContains("Host:test.localhost"))
|
2017-02-06 22:00:54 +00:00
|
|
|
c.Assert(err, checker.IsNil)
|
|
|
|
|
2017-05-17 13:22:44 +00:00
|
|
|
frontendHealthReq, err := http.NewRequest(http.MethodGet, "http://127.0.0.1:8000/health", nil)
|
2017-02-06 22:00:54 +00:00
|
|
|
c.Assert(err, checker.IsNil)
|
2017-05-17 13:22:44 +00:00
|
|
|
frontendHealthReq.Host = "test.localhost"
|
2017-02-06 22:00:54 +00:00
|
|
|
|
2017-05-17 13:22:44 +00:00
|
|
|
err = try.Request(frontendHealthReq, 500*time.Millisecond, try.StatusCodeIs(http.StatusOK))
|
2017-02-06 22:00:54 +00:00
|
|
|
c.Assert(err, checker.IsNil)
|
|
|
|
|
2017-05-17 13:22:44 +00:00
|
|
|
// Fix all whoami health to 500
|
|
|
|
client := &http.Client{}
|
|
|
|
whoamiHosts := []string{whoami1Host, whoami2Host}
|
|
|
|
for _, whoami := range whoamiHosts {
|
|
|
|
statusInternalServerErrorReq, err := http.NewRequest(http.MethodPost, "http://"+whoami+"/health", bytes.NewBuffer([]byte("500")))
|
|
|
|
c.Assert(err, checker.IsNil)
|
|
|
|
_, err = client.Do(statusInternalServerErrorReq)
|
|
|
|
c.Assert(err, checker.IsNil)
|
|
|
|
}
|
|
|
|
|
|
|
|
// Waiting for Traefik healthcheck
|
|
|
|
try.Sleep(2 * time.Second)
|
|
|
|
|
|
|
|
// Verify frontend health : 500
|
|
|
|
err = try.Request(frontendHealthReq, 3*time.Second, try.StatusCodeIs(http.StatusInternalServerError))
|
2017-02-06 22:00:54 +00:00
|
|
|
c.Assert(err, checker.IsNil)
|
|
|
|
|
2017-05-17 13:22:44 +00:00
|
|
|
// Change one whoami health to 200
|
|
|
|
statusOKReq1, err := http.NewRequest(http.MethodPost, "http://"+whoami1Host+"/health", bytes.NewBuffer([]byte("200")))
|
2017-02-06 22:00:54 +00:00
|
|
|
c.Assert(err, checker.IsNil)
|
2017-05-17 13:22:44 +00:00
|
|
|
_, err = client.Do(statusOKReq1)
|
2017-02-06 22:00:54 +00:00
|
|
|
c.Assert(err, checker.IsNil)
|
|
|
|
|
2017-05-17 13:22:44 +00:00
|
|
|
// Verify frontend health : after
|
|
|
|
err = try.Request(frontendHealthReq, 3*time.Second, try.StatusCodeIs(http.StatusOK))
|
|
|
|
c.Assert(err, checker.IsNil)
|
2017-02-06 22:00:54 +00:00
|
|
|
|
2017-05-17 13:22:44 +00:00
|
|
|
frontendReq, err := http.NewRequest(http.MethodGet, "http://127.0.0.1:8000/", nil)
|
2017-02-06 22:00:54 +00:00
|
|
|
c.Assert(err, checker.IsNil)
|
2017-05-17 13:22:44 +00:00
|
|
|
frontendReq.Host = "test.localhost"
|
2017-02-06 22:00:54 +00:00
|
|
|
|
2017-05-17 13:22:44 +00:00
|
|
|
// Check if whoami1 respond
|
|
|
|
err = try.Request(frontendReq, 500*time.Millisecond, try.BodyContains(whoami1Host))
|
2017-02-06 22:00:54 +00:00
|
|
|
c.Assert(err, checker.IsNil)
|
2017-05-17 13:22:44 +00:00
|
|
|
|
|
|
|
// Check if the service with bad health check (whoami2) never respond.
|
|
|
|
err = try.Request(frontendReq, 2*time.Second, try.BodyContains(whoami2Host))
|
|
|
|
c.Assert(err, checker.Not(checker.IsNil))
|
2017-02-06 22:00:54 +00:00
|
|
|
|
|
|
|
// TODO validate : run on 80
|
2017-05-17 13:22:44 +00:00
|
|
|
resp, err := http.Get("http://127.0.0.1:8000/")
|
2017-02-06 22:00:54 +00:00
|
|
|
|
|
|
|
// Expected a 404 as we did not configure anything
|
|
|
|
c.Assert(err, checker.IsNil)
|
2017-05-17 13:22:44 +00:00
|
|
|
c.Assert(resp.StatusCode, checker.Equals, http.StatusNotFound)
|
2017-02-06 22:00:54 +00:00
|
|
|
}
|