… and do not use the `docker` cli in it. One of the reason of this move is to not make `integration` package using legacy `integration-cli` package. Next move will be to support swarm within this package *and* provide some helper function using the api (compared to the one using cli in `integration-cli/daemon` package). Signed-off-by: Vincent Demeester <vincent@sbr.pm> Upstream-commit: f0d277fe84a72b29c0d2d541c20d5a9c4d7e4884 Component: engine
34 lines
587 B
Go
34 lines
587 B
Go
package service // import "github.com/docker/docker/integration/service"
|
|
|
|
import (
|
|
"fmt"
|
|
"os"
|
|
"testing"
|
|
|
|
"github.com/docker/docker/internal/test/environment"
|
|
)
|
|
|
|
var testEnv *environment.Execution
|
|
|
|
func TestMain(m *testing.M) {
|
|
var err error
|
|
testEnv, err = environment.New()
|
|
if err != nil {
|
|
fmt.Println(err)
|
|
os.Exit(1)
|
|
}
|
|
err = environment.EnsureFrozenImagesLinux(testEnv)
|
|
if err != nil {
|
|
fmt.Println(err)
|
|
os.Exit(1)
|
|
}
|
|
|
|
testEnv.Print()
|
|
os.Exit(m.Run())
|
|
}
|
|
|
|
func setupTest(t *testing.T) func() {
|
|
environment.ProtectAll(t, testEnv)
|
|
return func() { testEnv.Clean(t) }
|
|
}
|