2015-09-27 16:59:51 +03:00
// This is the main file that sets up integration tests using go-check.
package main
import (
"fmt"
2015-09-28 23:37:19 +03:00
"io/ioutil"
"os"
"os/exec"
"path/filepath"
2015-09-27 16:59:51 +03:00
"testing"
2015-09-28 23:37:19 +03:00
"text/template"
2015-09-27 16:59:51 +03:00
2016-02-24 18:43:39 +03:00
"github.com/containous/traefik/integration/utils"
2016-04-02 13:40:21 +03:00
"github.com/go-check/check"
2015-09-27 16:59:51 +03:00
2016-05-12 18:10:42 +03:00
"github.com/libkermit/docker-check/compose"
2015-09-27 16:59:51 +03:00
checker "github.com/vdemeester/shakers"
)
func Test ( t * testing . T ) {
check . TestingT ( t )
}
func init ( ) {
check . Suite ( & SimpleSuite { } )
2016-04-20 21:54:57 +03:00
check . Suite ( & AccessLogSuite { } )
2015-11-21 04:59:49 +03:00
check . Suite ( & HTTPSSuite { } )
2015-09-27 16:59:51 +03:00
check . Suite ( & FileSuite { } )
check . Suite ( & DockerSuite { } )
check . Suite ( & ConsulSuite { } )
2016-02-02 20:03:40 +03:00
check . Suite ( & ConsulCatalogSuite { } )
2016-02-26 02:31:35 +03:00
check . Suite ( & EtcdSuite { } )
2015-09-27 16:59:51 +03:00
check . Suite ( & MarathonSuite { } )
2016-05-20 18:17:38 +03:00
check . Suite ( & ConstraintSuite { } )
2015-09-27 16:59:51 +03:00
}
var traefikBinary = "../dist/traefik"
type BaseSuite struct {
2016-03-27 20:58:08 +03:00
composeProject * compose . Project
2015-09-27 16:59:51 +03:00
}
func ( s * BaseSuite ) TearDownSuite ( c * check . C ) {
// shutdown and delete compose project
if s . composeProject != nil {
2016-04-02 13:40:21 +03:00
s . composeProject . Stop ( c )
2015-09-27 16:59:51 +03:00
}
}
func ( s * BaseSuite ) createComposeProject ( c * check . C , name string ) {
2016-03-27 20:58:08 +03:00
projectName := fmt . Sprintf ( "integration-test-%s" , name )
composeFile := fmt . Sprintf ( "resources/compose/%s.yml" , name )
2016-04-02 13:40:21 +03:00
s . composeProject = compose . CreateProject ( c , projectName , composeFile )
2015-09-27 16:59:51 +03:00
}
2015-09-28 23:37:19 +03:00
func ( s * BaseSuite ) traefikCmd ( c * check . C , args ... string ) ( * exec . Cmd , string ) {
cmd , out , err := utils . RunCommand ( traefikBinary , args ... )
c . Assert ( err , checker . IsNil , check . Commentf ( "Fail to run %s with %v" , traefikBinary , args ) )
return cmd , out
}
func ( s * BaseSuite ) adaptFileForHost ( c * check . C , path string ) string {
dockerHost := os . Getenv ( "DOCKER_HOST" )
if dockerHost == "" {
// Default docker socket
dockerHost = "unix:///var/run/docker.sock"
}
2016-04-28 02:43:43 +03:00
tempObjects := struct { DockerHost string } { dockerHost }
return s . adaptFile ( c , path , tempObjects )
}
2015-09-28 23:37:19 +03:00
2016-04-28 02:43:43 +03:00
func ( s * BaseSuite ) adaptFile ( c * check . C , path string , tempObjects interface { } ) string {
2015-09-28 23:37:19 +03:00
// Load file
tmpl , err := template . ParseFiles ( path )
c . Assert ( err , checker . IsNil )
folder , prefix := filepath . Split ( path )
tmpFile , err := ioutil . TempFile ( folder , prefix )
c . Assert ( err , checker . IsNil )
defer tmpFile . Close ( )
2016-04-28 02:43:43 +03:00
err = tmpl . ExecuteTemplate ( tmpFile , prefix , tempObjects )
2015-09-28 23:37:19 +03:00
c . Assert ( err , checker . IsNil )
err = tmpFile . Sync ( )
c . Assert ( err , checker . IsNil )
return tmpFile . Name ( )
}