2017-08-11 10:04:58 +00:00
|
|
|
// +build !windows
|
|
|
|
|
|
|
|
package integration
|
|
|
|
|
|
|
|
import (
|
|
|
|
"bufio"
|
|
|
|
"io/ioutil"
|
|
|
|
"net/http"
|
|
|
|
"os"
|
|
|
|
"syscall"
|
|
|
|
"time"
|
|
|
|
|
|
|
|
"github.com/containous/traefik/integration/try"
|
|
|
|
"github.com/go-check/check"
|
|
|
|
checker "github.com/vdemeester/shakers"
|
|
|
|
)
|
|
|
|
|
|
|
|
// Log rotation integration test suite
|
|
|
|
type LogRotationSuite struct{ BaseSuite }
|
|
|
|
|
2018-01-11 09:04:03 +00:00
|
|
|
func (s *LogRotationSuite) SetUpSuite(c *check.C) {
|
|
|
|
s.createComposeProject(c, "access_log")
|
|
|
|
s.composeProject.Start(c)
|
|
|
|
|
|
|
|
s.composeProject.Container(c, "server1")
|
|
|
|
}
|
|
|
|
|
2017-08-11 10:04:58 +00:00
|
|
|
func (s *LogRotationSuite) TestAccessLogRotation(c *check.C) {
|
|
|
|
// Start Traefik
|
2017-09-13 08:34:04 +00:00
|
|
|
cmd, display := s.traefikCmd(withConfigFile("fixtures/access_log_config.toml"))
|
|
|
|
defer display(c)
|
2018-02-05 08:48:03 +00:00
|
|
|
defer displayTraefikLogFile(c, traefikTestLogFile)
|
|
|
|
|
2017-08-11 10:04:58 +00:00
|
|
|
err := cmd.Start()
|
|
|
|
c.Assert(err, checker.IsNil)
|
|
|
|
defer cmd.Process.Kill()
|
2018-02-05 08:48:03 +00:00
|
|
|
|
2017-08-11 10:04:58 +00:00
|
|
|
defer os.Remove(traefikTestAccessLogFile)
|
|
|
|
|
|
|
|
// Verify Traefik started ok
|
|
|
|
verifyEmptyErrorLog(c, "traefik.log")
|
|
|
|
|
2018-01-11 09:04:03 +00:00
|
|
|
waitForTraefik(c, "server1")
|
2017-08-11 10:04:58 +00:00
|
|
|
|
|
|
|
// Make some requests
|
2018-01-11 09:04:03 +00:00
|
|
|
req, err := http.NewRequest(http.MethodGet, "http://127.0.0.1:8000/", nil)
|
|
|
|
c.Assert(err, checker.IsNil)
|
|
|
|
req.Host = "frontend1.docker.local"
|
|
|
|
|
|
|
|
err = try.Request(req, 500*time.Millisecond, try.StatusCodeIs(http.StatusOK), try.HasBody())
|
2017-08-11 10:04:58 +00:00
|
|
|
c.Assert(err, checker.IsNil)
|
|
|
|
|
|
|
|
// Rename access log
|
|
|
|
err = os.Rename(traefikTestAccessLogFile, traefikTestAccessLogFile+".rotated")
|
|
|
|
c.Assert(err, checker.IsNil)
|
|
|
|
|
|
|
|
// in the midst of the requests, issue SIGUSR1 signal to server process
|
|
|
|
err = cmd.Process.Signal(syscall.SIGUSR1)
|
|
|
|
c.Assert(err, checker.IsNil)
|
|
|
|
|
|
|
|
// continue issuing requests
|
2018-01-11 09:04:03 +00:00
|
|
|
err = try.Request(req, 500*time.Millisecond, try.StatusCodeIs(http.StatusOK), try.HasBody())
|
2017-08-11 10:04:58 +00:00
|
|
|
c.Assert(err, checker.IsNil)
|
2018-01-11 09:04:03 +00:00
|
|
|
err = try.Request(req, 500*time.Millisecond, try.StatusCodeIs(http.StatusOK), try.HasBody())
|
2017-08-11 10:04:58 +00:00
|
|
|
c.Assert(err, checker.IsNil)
|
|
|
|
|
|
|
|
// Verify access.log.rotated output as expected
|
2017-10-06 07:20:13 +00:00
|
|
|
logAccessLogFile(c, traefikTestAccessLogFile+".rotated")
|
2017-08-11 10:04:58 +00:00
|
|
|
lineCount := verifyLogLines(c, traefikTestAccessLogFile+".rotated", 0, true)
|
|
|
|
c.Assert(lineCount, checker.GreaterOrEqualThan, 1)
|
|
|
|
|
2017-10-06 07:20:13 +00:00
|
|
|
// make sure that the access log file is at least created before we do assertions on it
|
|
|
|
err = try.Do(1*time.Second, func() error {
|
|
|
|
_, err := os.Stat(traefikTestAccessLogFile)
|
|
|
|
return err
|
|
|
|
})
|
|
|
|
c.Assert(err, checker.IsNil, check.Commentf("access log file was not created in time"))
|
|
|
|
|
2017-08-11 10:04:58 +00:00
|
|
|
// Verify access.log output as expected
|
2017-10-06 07:20:13 +00:00
|
|
|
logAccessLogFile(c, traefikTestAccessLogFile)
|
2017-08-11 10:04:58 +00:00
|
|
|
lineCount = verifyLogLines(c, traefikTestAccessLogFile, lineCount, true)
|
|
|
|
c.Assert(lineCount, checker.Equals, 3)
|
|
|
|
|
|
|
|
verifyEmptyErrorLog(c, traefikTestLogFile)
|
|
|
|
}
|
|
|
|
|
|
|
|
func (s *LogRotationSuite) TestTraefikLogRotation(c *check.C) {
|
|
|
|
// Start Traefik
|
2017-09-13 08:34:04 +00:00
|
|
|
cmd, display := s.traefikCmd(withConfigFile("fixtures/traefik_log_config.toml"))
|
|
|
|
defer display(c)
|
2018-02-05 08:48:03 +00:00
|
|
|
defer displayTraefikLogFile(c, traefikTestLogFile)
|
|
|
|
|
2017-08-11 10:04:58 +00:00
|
|
|
err := cmd.Start()
|
|
|
|
c.Assert(err, checker.IsNil)
|
|
|
|
defer cmd.Process.Kill()
|
2018-02-05 08:48:03 +00:00
|
|
|
|
2017-08-11 10:04:58 +00:00
|
|
|
defer os.Remove(traefikTestAccessLogFile)
|
|
|
|
|
2018-01-11 09:04:03 +00:00
|
|
|
waitForTraefik(c, "server1")
|
2017-08-11 10:04:58 +00:00
|
|
|
|
|
|
|
// Rename traefik log
|
|
|
|
err = os.Rename(traefikTestLogFile, traefikTestLogFile+".rotated")
|
|
|
|
c.Assert(err, checker.IsNil)
|
|
|
|
|
|
|
|
// issue SIGUSR1 signal to server process
|
|
|
|
err = cmd.Process.Signal(syscall.SIGUSR1)
|
|
|
|
c.Assert(err, checker.IsNil)
|
|
|
|
|
|
|
|
err = cmd.Process.Signal(syscall.SIGTERM)
|
|
|
|
c.Assert(err, checker.IsNil)
|
|
|
|
|
|
|
|
// Allow time for switch to be processed
|
|
|
|
err = try.Do(3*time.Second, func() error {
|
|
|
|
_, err = os.Stat(traefikTestLogFile)
|
|
|
|
return err
|
|
|
|
})
|
|
|
|
c.Assert(err, checker.IsNil)
|
|
|
|
|
|
|
|
// we have at least 6 lines in traefik.log.rotated
|
|
|
|
lineCount := verifyLogLines(c, traefikTestLogFile+".rotated", 0, false)
|
|
|
|
|
|
|
|
// GreaterOrEqualThan used to ensure test doesn't break
|
|
|
|
// If more log entries are output on startup
|
2017-08-25 14:10:03 +00:00
|
|
|
c.Assert(lineCount, checker.GreaterOrEqualThan, 5)
|
2017-08-11 10:04:58 +00:00
|
|
|
|
|
|
|
//Verify traefik.log output as expected
|
|
|
|
lineCount = verifyLogLines(c, traefikTestLogFile, lineCount, false)
|
|
|
|
c.Assert(lineCount, checker.GreaterOrEqualThan, 7)
|
|
|
|
}
|
|
|
|
|
2017-10-06 07:20:13 +00:00
|
|
|
func logAccessLogFile(c *check.C, fileName string) {
|
|
|
|
output, err := ioutil.ReadFile(fileName)
|
|
|
|
c.Assert(err, checker.IsNil)
|
|
|
|
c.Logf("Contents of file %s\n%s", fileName, string(output))
|
|
|
|
}
|
|
|
|
|
2017-08-11 10:04:58 +00:00
|
|
|
func verifyEmptyErrorLog(c *check.C, name string) {
|
|
|
|
err := try.Do(5*time.Second, func() error {
|
|
|
|
traefikLog, e2 := ioutil.ReadFile(name)
|
|
|
|
if e2 != nil {
|
|
|
|
return e2
|
|
|
|
}
|
|
|
|
c.Assert(traefikLog, checker.HasLen, 0)
|
|
|
|
return nil
|
|
|
|
})
|
|
|
|
c.Assert(err, checker.IsNil)
|
|
|
|
}
|
|
|
|
|
|
|
|
func verifyLogLines(c *check.C, fileName string, countInit int, accessLog bool) int {
|
|
|
|
rotated, err := os.Open(fileName)
|
|
|
|
c.Assert(err, checker.IsNil)
|
|
|
|
rotatedLog := bufio.NewScanner(rotated)
|
|
|
|
count := countInit
|
|
|
|
for rotatedLog.Scan() {
|
|
|
|
line := rotatedLog.Text()
|
|
|
|
if accessLog {
|
|
|
|
if len(line) > 0 {
|
|
|
|
CheckAccessLogFormat(c, line, count)
|
|
|
|
}
|
|
|
|
}
|
|
|
|
count++
|
|
|
|
}
|
|
|
|
|
|
|
|
return count
|
|
|
|
}
|