forked from influxdata/influxdb
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathintegration_test.go
91 lines (79 loc) · 1.97 KB
/
integration_test.go
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
package cmd_test
import (
"io/ioutil"
"os"
"path/filepath"
client "github.com/influxdata/influxdb/client/v2"
"github.com/influxdata/influxdb/cmd/influxd/run"
"github.com/influxdata/influxdb/services/httpd"
)
type TestRunCommand struct {
*run.Command
// Temporary directory used for default data, meta, and wal dirs.
Dir string
}
func NewTestRunCommand(env map[string]string) *TestRunCommand {
dir, err := ioutil.TempDir("", "testrun-")
if err != nil {
panic(err)
}
cmd := run.NewCommand()
cmd.Getenv = func(k string) string {
// Return value in env map, if set.
if env != nil {
if v, ok := env[k]; ok {
return v
}
}
// If the key wasn't explicitly set in env, use some reasonable defaults for test.
switch k {
case "INFLUXDB_DATA_DIR":
return filepath.Join(dir, "data")
case "INFLUXDB_META_DIR":
return filepath.Join(dir, "meta")
case "INFLUXDB_DATA_WAL_DIR":
return filepath.Join(dir, "wal")
case "INFLUXDB_HTTP_BIND_ADDRESS":
return "localhost:0"
case "INFLUXDB_BIND_ADDRESS":
return "localhost:0"
case "INFLUXDB_REPORTING_DISABLED":
return "true"
default:
return ""
}
}
return &TestRunCommand{
Command: cmd,
Dir: dir,
}
}
// MustRun calls Command.Run and panics if there is an error.
func (c *TestRunCommand) MustRun() {
if err := c.Command.Run("-config", os.DevNull); err != nil {
panic(err)
}
}
// HTTPClient returns a new v2 HTTP client.
func (c *TestRunCommand) HTTPClient() client.Client {
cl, err := client.NewHTTPClient(client.HTTPConfig{
Addr: "http://" + c.BoundHTTPAddr(),
})
if err != nil {
panic(err)
}
return cl
}
// BoundHTTPAddr returns the bind address of the HTTP service, in form "localhost:65432".
func (c *TestRunCommand) BoundHTTPAddr() string {
for _, s := range c.Command.Server.Services {
if s, ok := s.(*httpd.Service); ok {
return s.BoundHTTPAddr()
}
}
panic("Did not find HTTPD service!")
}
func (c *TestRunCommand) Cleanup() {
c.Command.Close()
os.RemoveAll(c.Dir)
}