open-nomad/client/testing.go

78 lines
2.2 KiB
Go
Raw Normal View History

2018-01-12 01:00:30 +00:00
package client
import (
"fmt"
"time"
2018-01-12 01:00:30 +00:00
"github.com/hashicorp/nomad/client/config"
2018-06-11 20:33:18 +00:00
consulApi "github.com/hashicorp/nomad/client/consul"
2018-01-12 01:00:30 +00:00
"github.com/hashicorp/nomad/client/fingerprint"
"github.com/hashicorp/nomad/command/agent/consul"
"github.com/hashicorp/nomad/helper/testlog"
"github.com/hashicorp/nomad/plugins/shared/catalog"
"github.com/hashicorp/nomad/plugins/shared/singleton"
testing "github.com/mitchellh/go-testing-interface"
2018-01-12 01:00:30 +00:00
)
// TestClient creates an in-memory client for testing purposes and returns a
// cleanup func to shutdown the client and remove the alloc and state dirs.
//
// There is no need to override the AllocDir or StateDir as they are randomized
// and removed in the returned cleanup function. If they are overridden in the
// callback then the caller still must run the returned cleanup func.
func TestClient(t testing.T, cb func(c *config.Config)) (*Client, func() error) {
conf, cleanup := config.TestClientConfig(t)
2018-03-01 00:25:56 +00:00
// Tighten the fingerprinter timeouts (must be done in client package
// to avoid circular dependencies)
2018-01-12 01:00:30 +00:00
if conf.Options == nil {
conf.Options = make(map[string]string)
}
conf.Options[fingerprint.TightenNetworkTimeoutsConfig] = "true"
logger := testlog.HCLogger(t)
2018-10-04 23:32:14 +00:00
conf.Logger = logger
2018-01-12 01:00:30 +00:00
if cb != nil {
cb(conf)
}
// Set the plugin loaders
if conf.PluginLoader == nil {
conf.PluginLoader = catalog.TestPluginLoaderWithOptions(t, "", conf.Options, nil)
}
if conf.PluginSingletonLoader == nil {
conf.PluginSingletonLoader = singleton.NewSingletonLoader(logger, conf.PluginLoader)
}
2018-01-12 01:00:30 +00:00
catalog := consul.NewMockCatalog(logger)
2018-09-13 17:43:40 +00:00
mockService := consulApi.NewMockConsulServiceClient(t, logger)
client, err := NewClient(conf, catalog, mockService)
2018-01-12 01:00:30 +00:00
if err != nil {
cleanup()
2018-01-12 01:00:30 +00:00
t.Fatalf("err: %v", err)
}
return client, func() error {
2018-12-11 11:49:20 +00:00
ch := make(chan error)
go func() {
defer close(ch)
// Shutdown client
err := client.Shutdown()
if err != nil {
ch <- fmt.Errorf("failed to shutdown client: %v", err)
}
// Call TestClientConfig cleanup
cleanup()
}()
select {
case e := <-ch:
return e
case <-time.After(1 * time.Minute):
return fmt.Errorf("timed out while shutting down client")
}
}
2018-01-12 01:00:30 +00:00
}