2018-09-06 10:50:38 +00:00
|
|
|
package proxyprocess
|
2018-05-01 06:35:23 +00:00
|
|
|
|
|
|
|
import (
|
2018-05-03 03:11:58 +00:00
|
|
|
"io/ioutil"
|
2018-05-01 06:35:23 +00:00
|
|
|
"os"
|
|
|
|
"os/exec"
|
|
|
|
"path/filepath"
|
2018-07-09 16:27:34 +00:00
|
|
|
"sort"
|
2018-07-11 20:50:27 +00:00
|
|
|
"strings"
|
2018-05-01 06:35:23 +00:00
|
|
|
"testing"
|
2018-05-02 16:57:06 +00:00
|
|
|
"time"
|
2018-05-01 06:35:23 +00:00
|
|
|
|
|
|
|
"github.com/hashicorp/consul/agent/local"
|
|
|
|
"github.com/hashicorp/consul/agent/structs"
|
|
|
|
"github.com/hashicorp/consul/testutil/retry"
|
|
|
|
"github.com/stretchr/testify/require"
|
|
|
|
)
|
|
|
|
|
|
|
|
func TestManagerClose_noRun(t *testing.T) {
|
|
|
|
t.Parallel()
|
|
|
|
|
|
|
|
// Really we're testing that it doesn't deadlock here.
|
2018-05-03 03:11:58 +00:00
|
|
|
m, closer := testManager(t)
|
|
|
|
defer closer()
|
2018-05-01 06:35:23 +00:00
|
|
|
require.NoError(t, m.Close())
|
|
|
|
|
|
|
|
// Close again for sanity
|
|
|
|
require.NoError(t, m.Close())
|
|
|
|
}
|
|
|
|
|
|
|
|
// Test that Run performs an initial sync (if local.State is already set)
|
|
|
|
// rather than waiting for a notification from the local state.
|
|
|
|
func TestManagerRun_initialSync(t *testing.T) {
|
|
|
|
t.Parallel()
|
|
|
|
|
2018-05-02 16:57:06 +00:00
|
|
|
state := local.TestState(t)
|
2018-05-03 03:11:58 +00:00
|
|
|
m, closer := testManager(t)
|
|
|
|
defer closer()
|
2018-05-01 06:35:23 +00:00
|
|
|
m.State = state
|
|
|
|
defer m.Kill()
|
|
|
|
|
|
|
|
// Add the proxy before we start the manager to verify initial sync
|
|
|
|
td, closer := testTempDir(t)
|
|
|
|
defer closer()
|
|
|
|
path := filepath.Join(td, "file")
|
2018-05-02 16:57:06 +00:00
|
|
|
testStateProxy(t, state, "web", helperProcess("restart", path))
|
2018-05-01 06:35:23 +00:00
|
|
|
|
|
|
|
// Start the manager
|
|
|
|
go m.Run()
|
|
|
|
|
|
|
|
// We should see the path appear shortly
|
|
|
|
retry.Run(t, func(r *retry.R) {
|
|
|
|
_, err := os.Stat(path)
|
|
|
|
if err == nil {
|
|
|
|
return
|
|
|
|
}
|
|
|
|
r.Fatalf("error waiting for path: %s", err)
|
|
|
|
})
|
|
|
|
}
|
|
|
|
|
2018-05-02 16:57:06 +00:00
|
|
|
func TestManagerRun_syncNew(t *testing.T) {
|
|
|
|
t.Parallel()
|
|
|
|
|
2018-05-01 06:35:23 +00:00
|
|
|
state := local.TestState(t)
|
2018-05-03 03:11:58 +00:00
|
|
|
m, closer := testManager(t)
|
|
|
|
defer closer()
|
2018-05-02 16:57:06 +00:00
|
|
|
m.State = state
|
|
|
|
defer m.Kill()
|
2018-05-01 06:35:23 +00:00
|
|
|
|
2018-05-02 16:57:06 +00:00
|
|
|
// Start the manager
|
|
|
|
go m.Run()
|
|
|
|
|
|
|
|
// Sleep a bit, this is just an attempt for Run to already be running.
|
|
|
|
// Its not a big deal if this sleep doesn't happen (slow CI).
|
|
|
|
time.Sleep(100 * time.Millisecond)
|
|
|
|
|
|
|
|
// Add the first proxy
|
|
|
|
td, closer := testTempDir(t)
|
|
|
|
defer closer()
|
|
|
|
path := filepath.Join(td, "file")
|
|
|
|
testStateProxy(t, state, "web", helperProcess("restart", path))
|
|
|
|
|
|
|
|
// We should see the path appear shortly
|
|
|
|
retry.Run(t, func(r *retry.R) {
|
|
|
|
_, err := os.Stat(path)
|
|
|
|
if err == nil {
|
|
|
|
return
|
|
|
|
}
|
|
|
|
r.Fatalf("error waiting for path: %s", err)
|
|
|
|
})
|
|
|
|
|
|
|
|
// Add another proxy
|
|
|
|
path = path + "2"
|
|
|
|
testStateProxy(t, state, "db", helperProcess("restart", path))
|
|
|
|
retry.Run(t, func(r *retry.R) {
|
|
|
|
_, err := os.Stat(path)
|
|
|
|
if err == nil {
|
|
|
|
return
|
|
|
|
}
|
|
|
|
r.Fatalf("error waiting for path: %s", err)
|
|
|
|
})
|
|
|
|
}
|
|
|
|
|
|
|
|
func TestManagerRun_syncDelete(t *testing.T) {
|
|
|
|
t.Parallel()
|
|
|
|
|
|
|
|
state := local.TestState(t)
|
2018-05-03 03:11:58 +00:00
|
|
|
m, closer := testManager(t)
|
|
|
|
defer closer()
|
2018-05-02 16:57:06 +00:00
|
|
|
m.State = state
|
|
|
|
defer m.Kill()
|
|
|
|
|
|
|
|
// Start the manager
|
|
|
|
go m.Run()
|
|
|
|
|
|
|
|
// Add the first proxy
|
|
|
|
td, closer := testTempDir(t)
|
|
|
|
defer closer()
|
|
|
|
path := filepath.Join(td, "file")
|
|
|
|
id := testStateProxy(t, state, "web", helperProcess("restart", path))
|
|
|
|
|
|
|
|
// We should see the path appear shortly
|
|
|
|
retry.Run(t, func(r *retry.R) {
|
|
|
|
_, err := os.Stat(path)
|
|
|
|
if err == nil {
|
|
|
|
return
|
|
|
|
}
|
|
|
|
r.Fatalf("error waiting for path: %s", err)
|
|
|
|
})
|
|
|
|
|
|
|
|
// Remove the proxy
|
|
|
|
_, err := state.RemoveProxy(id)
|
|
|
|
require.NoError(t, err)
|
|
|
|
|
|
|
|
// File should disappear as process is killed
|
|
|
|
retry.Run(t, func(r *retry.R) {
|
|
|
|
_, err := os.Stat(path)
|
|
|
|
if err == nil {
|
|
|
|
r.Fatalf("path exists")
|
|
|
|
}
|
|
|
|
})
|
2018-05-01 06:35:23 +00:00
|
|
|
}
|
|
|
|
|
2018-05-02 18:02:58 +00:00
|
|
|
func TestManagerRun_syncUpdate(t *testing.T) {
|
|
|
|
t.Parallel()
|
|
|
|
|
|
|
|
state := local.TestState(t)
|
2018-05-03 03:11:58 +00:00
|
|
|
m, closer := testManager(t)
|
|
|
|
defer closer()
|
2018-05-02 18:02:58 +00:00
|
|
|
m.State = state
|
|
|
|
defer m.Kill()
|
|
|
|
|
|
|
|
// Start the manager
|
|
|
|
go m.Run()
|
|
|
|
|
|
|
|
// Add the first proxy
|
|
|
|
td, closer := testTempDir(t)
|
|
|
|
defer closer()
|
|
|
|
path := filepath.Join(td, "file")
|
|
|
|
testStateProxy(t, state, "web", helperProcess("restart", path))
|
|
|
|
|
|
|
|
// We should see the path appear shortly
|
|
|
|
retry.Run(t, func(r *retry.R) {
|
|
|
|
_, err := os.Stat(path)
|
|
|
|
if err == nil {
|
|
|
|
return
|
|
|
|
}
|
|
|
|
r.Fatalf("error waiting for path: %s", err)
|
|
|
|
})
|
|
|
|
|
|
|
|
// Update the proxy with a new path
|
|
|
|
oldPath := path
|
|
|
|
path = path + "2"
|
|
|
|
testStateProxy(t, state, "web", helperProcess("restart", path))
|
|
|
|
retry.Run(t, func(r *retry.R) {
|
|
|
|
_, err := os.Stat(path)
|
|
|
|
if err == nil {
|
|
|
|
return
|
|
|
|
}
|
|
|
|
r.Fatalf("error waiting for path: %s", err)
|
|
|
|
})
|
|
|
|
|
|
|
|
// Old path should be gone
|
|
|
|
retry.Run(t, func(r *retry.R) {
|
|
|
|
_, err := os.Stat(oldPath)
|
|
|
|
if err == nil {
|
|
|
|
r.Fatalf("old path exists")
|
|
|
|
}
|
|
|
|
})
|
|
|
|
}
|
|
|
|
|
2018-05-03 03:11:58 +00:00
|
|
|
func TestManagerRun_daemonLogs(t *testing.T) {
|
|
|
|
t.Parallel()
|
|
|
|
|
|
|
|
require := require.New(t)
|
|
|
|
state := local.TestState(t)
|
|
|
|
m, closer := testManager(t)
|
|
|
|
defer closer()
|
|
|
|
m.State = state
|
|
|
|
defer m.Kill()
|
|
|
|
|
|
|
|
// Configure a log dir so that we can read the logs
|
2018-05-03 03:34:23 +00:00
|
|
|
logDir := filepath.Join(m.DataDir, "logs")
|
2018-05-03 03:11:58 +00:00
|
|
|
|
|
|
|
// Create the service and calculate the log paths
|
2018-05-03 03:34:23 +00:00
|
|
|
path := filepath.Join(m.DataDir, "notify")
|
2018-05-03 03:16:29 +00:00
|
|
|
id := testStateProxy(t, state, "web", helperProcess("output", path))
|
2018-05-03 03:34:23 +00:00
|
|
|
stdoutPath := logPath(logDir, id, "stdout")
|
|
|
|
stderrPath := logPath(logDir, id, "stderr")
|
2018-05-03 03:11:58 +00:00
|
|
|
|
|
|
|
// Start the manager
|
|
|
|
go m.Run()
|
|
|
|
|
|
|
|
// We should see the path appear shortly
|
|
|
|
retry.Run(t, func(r *retry.R) {
|
2018-05-03 03:16:29 +00:00
|
|
|
if _, err := os.Stat(path); err != nil {
|
2018-05-03 03:11:58 +00:00
|
|
|
r.Fatalf("error waiting for stdout path: %s", err)
|
|
|
|
}
|
|
|
|
})
|
|
|
|
|
|
|
|
expectedOut := "hello stdout\n"
|
|
|
|
actual, err := ioutil.ReadFile(stdoutPath)
|
|
|
|
require.NoError(err)
|
|
|
|
require.Equal([]byte(expectedOut), actual)
|
|
|
|
|
|
|
|
expectedErr := "hello stderr\n"
|
|
|
|
actual, err = ioutil.ReadFile(stderrPath)
|
|
|
|
require.NoError(err)
|
|
|
|
require.Equal([]byte(expectedErr), actual)
|
|
|
|
}
|
|
|
|
|
2018-05-03 21:09:30 +00:00
|
|
|
func TestManagerRun_daemonPid(t *testing.T) {
|
|
|
|
t.Parallel()
|
|
|
|
|
|
|
|
require := require.New(t)
|
|
|
|
state := local.TestState(t)
|
|
|
|
m, closer := testManager(t)
|
|
|
|
defer closer()
|
|
|
|
m.State = state
|
|
|
|
defer m.Kill()
|
|
|
|
|
|
|
|
// Configure a log dir so that we can read the logs
|
|
|
|
pidDir := filepath.Join(m.DataDir, "pids")
|
|
|
|
|
|
|
|
// Create the service and calculate the log paths
|
|
|
|
path := filepath.Join(m.DataDir, "notify")
|
|
|
|
id := testStateProxy(t, state, "web", helperProcess("output", path))
|
|
|
|
pidPath := pidPath(pidDir, id)
|
|
|
|
|
|
|
|
// Start the manager
|
|
|
|
go m.Run()
|
|
|
|
|
|
|
|
// We should see the path appear shortly
|
|
|
|
retry.Run(t, func(r *retry.R) {
|
|
|
|
if _, err := os.Stat(path); err != nil {
|
|
|
|
r.Fatalf("error waiting for stdout path: %s", err)
|
|
|
|
}
|
|
|
|
})
|
|
|
|
|
|
|
|
// Verify the pid file is not empty
|
|
|
|
pidRaw, err := ioutil.ReadFile(pidPath)
|
|
|
|
require.NoError(err)
|
|
|
|
require.NotEmpty(pidRaw)
|
|
|
|
}
|
|
|
|
|
2018-07-06 02:04:29 +00:00
|
|
|
// Test to check if the parent and the child processes
|
|
|
|
// have the same environmental variables
|
|
|
|
|
2018-07-09 17:18:57 +00:00
|
|
|
func TestManagerPassesEnvironment(t *testing.T) {
|
2018-07-06 02:04:29 +00:00
|
|
|
t.Parallel()
|
|
|
|
|
|
|
|
require := require.New(t)
|
|
|
|
state := local.TestState(t)
|
|
|
|
m, closer := testManager(t)
|
|
|
|
defer closer()
|
|
|
|
m.State = state
|
|
|
|
defer m.Kill()
|
|
|
|
|
2018-07-09 16:27:34 +00:00
|
|
|
// Add Proxy for the test
|
2018-07-06 02:04:29 +00:00
|
|
|
td, closer := testTempDir(t)
|
|
|
|
defer closer()
|
|
|
|
path := filepath.Join(td, "env-variables")
|
2018-07-09 16:27:34 +00:00
|
|
|
testStateProxy(t, state, "environTest", helperProcess("environ", path))
|
|
|
|
|
|
|
|
//Run the manager
|
|
|
|
go m.Run()
|
|
|
|
|
|
|
|
//Get the environmental variables from the OS
|
2018-07-09 16:46:10 +00:00
|
|
|
var fileContent []byte
|
2018-07-09 16:27:34 +00:00
|
|
|
var err error
|
2018-07-09 16:46:10 +00:00
|
|
|
var data []byte
|
2018-07-09 16:27:34 +00:00
|
|
|
envData := os.Environ()
|
|
|
|
sort.Strings(envData)
|
|
|
|
for _, envVariable := range envData {
|
2018-07-11 20:50:27 +00:00
|
|
|
if strings.HasPrefix(envVariable, "CONSUL") || strings.HasPrefix(envVariable, "CONNECT") {
|
|
|
|
continue
|
|
|
|
}
|
|
|
|
data = append(data, envVariable...)
|
|
|
|
data = append(data, "\n"...)
|
|
|
|
}
|
|
|
|
|
|
|
|
// Check if the file written to from the spawned process
|
|
|
|
// has the necessary environmental variable data
|
|
|
|
retry.Run(t, func(r *retry.R) {
|
|
|
|
if fileContent, err = ioutil.ReadFile(path); err != nil {
|
|
|
|
r.Fatalf("No file ya dummy")
|
|
|
|
}
|
|
|
|
})
|
|
|
|
|
|
|
|
require.Equal(data, fileContent)
|
|
|
|
}
|
|
|
|
|
|
|
|
// Test to check if the parent and the child processes
|
|
|
|
// have the same environmental variables
|
|
|
|
func TestManagerPassesProxyEnv(t *testing.T) {
|
|
|
|
t.Parallel()
|
|
|
|
|
|
|
|
require := require.New(t)
|
|
|
|
state := local.TestState(t)
|
|
|
|
m, closer := testManager(t)
|
|
|
|
defer closer()
|
|
|
|
m.State = state
|
|
|
|
defer m.Kill()
|
|
|
|
|
|
|
|
penv := make([]string, 0, 2)
|
|
|
|
penv = append(penv, "HTTP_ADDR=127.0.0.1:8500")
|
|
|
|
penv = append(penv, "HTTP_SSL=false")
|
|
|
|
m.ProxyEnv = penv
|
|
|
|
|
|
|
|
// Add Proxy for the test
|
|
|
|
td, closer := testTempDir(t)
|
|
|
|
defer closer()
|
|
|
|
path := filepath.Join(td, "env-variables")
|
|
|
|
testStateProxy(t, state, "environTest", helperProcess("environ", path))
|
|
|
|
|
|
|
|
//Run the manager
|
|
|
|
go m.Run()
|
|
|
|
|
|
|
|
//Get the environmental variables from the OS
|
|
|
|
var fileContent []byte
|
|
|
|
var err error
|
|
|
|
var data []byte
|
|
|
|
envData := os.Environ()
|
|
|
|
envData = append(envData, "HTTP_ADDR=127.0.0.1:8500")
|
|
|
|
envData = append(envData, "HTTP_SSL=false")
|
|
|
|
sort.Strings(envData)
|
|
|
|
for _, envVariable := range envData {
|
|
|
|
if strings.HasPrefix(envVariable, "CONSUL") || strings.HasPrefix(envVariable, "CONNECT") {
|
|
|
|
continue
|
|
|
|
}
|
2018-07-09 16:27:34 +00:00
|
|
|
data = append(data, envVariable...)
|
|
|
|
data = append(data, "\n"...)
|
2018-07-06 02:04:29 +00:00
|
|
|
}
|
2018-07-09 16:46:10 +00:00
|
|
|
|
|
|
|
// Check if the file written to from the spawned process
|
|
|
|
// has the necessary environmental variable data
|
2018-07-09 16:27:34 +00:00
|
|
|
retry.Run(t, func(r *retry.R) {
|
|
|
|
if fileContent, err = ioutil.ReadFile(path); err != nil {
|
|
|
|
r.Fatalf("No file ya dummy")
|
2018-07-06 02:04:29 +00:00
|
|
|
}
|
2018-07-09 16:27:34 +00:00
|
|
|
})
|
2018-07-06 02:04:29 +00:00
|
|
|
|
2018-07-11 20:50:27 +00:00
|
|
|
require.Equal(data, fileContent)
|
2018-07-06 02:04:29 +00:00
|
|
|
}
|
|
|
|
|
2018-05-04 00:44:54 +00:00
|
|
|
// Test the Snapshot/Restore works.
|
|
|
|
func TestManagerRun_snapshotRestore(t *testing.T) {
|
|
|
|
t.Parallel()
|
|
|
|
|
|
|
|
require := require.New(t)
|
|
|
|
state := local.TestState(t)
|
|
|
|
m, closer := testManager(t)
|
|
|
|
defer closer()
|
|
|
|
m.State = state
|
|
|
|
defer m.Kill()
|
|
|
|
|
|
|
|
// Add the proxy
|
|
|
|
td, closer := testTempDir(t)
|
|
|
|
defer closer()
|
|
|
|
path := filepath.Join(td, "file")
|
|
|
|
testStateProxy(t, state, "web", helperProcess("start-stop", path))
|
|
|
|
|
|
|
|
// Set a low snapshot period so we get a snapshot
|
|
|
|
m.SnapshotPeriod = 10 * time.Millisecond
|
|
|
|
|
|
|
|
// Start the manager
|
|
|
|
go m.Run()
|
|
|
|
|
|
|
|
// We should see the path appear shortly
|
|
|
|
retry.Run(t, func(r *retry.R) {
|
|
|
|
_, err := os.Stat(path)
|
|
|
|
if err == nil {
|
|
|
|
return
|
|
|
|
}
|
|
|
|
r.Fatalf("error waiting for path: %s", err)
|
|
|
|
})
|
|
|
|
|
|
|
|
// Wait for the snapshot
|
|
|
|
snapPath := m.SnapshotPath()
|
|
|
|
retry.Run(t, func(r *retry.R) {
|
|
|
|
raw, err := ioutil.ReadFile(snapPath)
|
|
|
|
if err != nil {
|
|
|
|
r.Fatalf("error waiting for path: %s", err)
|
|
|
|
}
|
|
|
|
if len(raw) < 30 {
|
|
|
|
r.Fatalf("snapshot too small")
|
|
|
|
}
|
|
|
|
})
|
|
|
|
|
|
|
|
// Stop the sync
|
|
|
|
require.NoError(m.Close())
|
|
|
|
|
|
|
|
// File should still exist
|
|
|
|
_, err := os.Stat(path)
|
|
|
|
require.NoError(err)
|
|
|
|
|
|
|
|
// Restore a manager from a snapshot
|
|
|
|
m2, closer := testManager(t)
|
|
|
|
m2.State = state
|
|
|
|
defer closer()
|
|
|
|
defer m2.Kill()
|
|
|
|
require.NoError(m2.Restore(snapPath))
|
|
|
|
|
|
|
|
// Start
|
|
|
|
go m2.Run()
|
|
|
|
|
|
|
|
// Add a second proxy so that we can determine when we're up
|
|
|
|
// and running.
|
2018-06-05 12:22:32 +00:00
|
|
|
path2 := filepath.Join(td, "file2")
|
2018-05-04 00:44:54 +00:00
|
|
|
testStateProxy(t, state, "db", helperProcess("start-stop", path2))
|
|
|
|
retry.Run(t, func(r *retry.R) {
|
|
|
|
_, err := os.Stat(path2)
|
|
|
|
if err == nil {
|
|
|
|
return
|
|
|
|
}
|
|
|
|
r.Fatalf("error waiting for path: %s", err)
|
|
|
|
})
|
|
|
|
|
|
|
|
// Kill m2, which should kill our main process
|
|
|
|
require.NoError(m2.Kill())
|
|
|
|
|
|
|
|
// File should no longer exist
|
|
|
|
retry.Run(t, func(r *retry.R) {
|
|
|
|
_, err := os.Stat(path)
|
|
|
|
if err != nil {
|
|
|
|
return
|
|
|
|
}
|
2018-06-05 12:22:32 +00:00
|
|
|
r.Fatalf("file still exists: %s", path)
|
2018-05-04 00:44:54 +00:00
|
|
|
})
|
|
|
|
}
|
|
|
|
|
2018-06-12 13:07:21 +00:00
|
|
|
// Manager should not run any proxies if we're running as root. Tests
|
|
|
|
// stub the value.
|
|
|
|
func TestManagerRun_rootDisallow(t *testing.T) {
|
|
|
|
// Pretend we are root
|
|
|
|
defer testSetRootValue(true)()
|
|
|
|
|
|
|
|
state := local.TestState(t)
|
|
|
|
m, closer := testManager(t)
|
|
|
|
defer closer()
|
|
|
|
m.State = state
|
|
|
|
defer m.Kill()
|
|
|
|
|
|
|
|
// Add the proxy before we start the manager to verify initial sync
|
|
|
|
td, closer := testTempDir(t)
|
|
|
|
defer closer()
|
|
|
|
path := filepath.Join(td, "file")
|
|
|
|
testStateProxy(t, state, "web", helperProcess("restart", path))
|
|
|
|
|
|
|
|
// Start the manager
|
|
|
|
go m.Run()
|
|
|
|
|
|
|
|
// Sleep a bit just to verify
|
|
|
|
time.Sleep(100 * time.Millisecond)
|
|
|
|
|
|
|
|
// We should see the path appear shortly
|
|
|
|
retry.Run(t, func(r *retry.R) {
|
|
|
|
_, err := os.Stat(path)
|
|
|
|
if err != nil {
|
|
|
|
return
|
|
|
|
}
|
|
|
|
|
|
|
|
r.Fatalf("path exists")
|
|
|
|
})
|
|
|
|
}
|
|
|
|
|
2018-05-03 03:11:58 +00:00
|
|
|
func testManager(t *testing.T) (*Manager, func()) {
|
2018-05-02 20:38:24 +00:00
|
|
|
m := NewManager()
|
|
|
|
|
2018-05-04 00:44:54 +00:00
|
|
|
// Setup a default state
|
|
|
|
m.State = local.TestState(t)
|
|
|
|
|
2018-05-02 20:38:24 +00:00
|
|
|
// Set these periods low to speed up tests
|
|
|
|
m.CoalescePeriod = 1 * time.Millisecond
|
|
|
|
m.QuiescentPeriod = 1 * time.Millisecond
|
|
|
|
|
2018-05-03 03:11:58 +00:00
|
|
|
// Setup a temporary directory for logs
|
|
|
|
td, closer := testTempDir(t)
|
2018-05-03 03:34:23 +00:00
|
|
|
m.DataDir = td
|
2018-05-03 03:11:58 +00:00
|
|
|
|
|
|
|
return m, func() { closer() }
|
2018-05-02 20:38:24 +00:00
|
|
|
}
|
|
|
|
|
2018-05-01 06:35:23 +00:00
|
|
|
// testStateProxy registers a proxy with the given local state and the command
|
|
|
|
// (expected to be from the helperProcess function call). It returns the
|
|
|
|
// ID for deregistration.
|
2018-05-02 16:57:06 +00:00
|
|
|
func testStateProxy(t *testing.T, state *local.State, service string, cmd *exec.Cmd) string {
|
2018-06-12 13:06:36 +00:00
|
|
|
// *exec.Cmd must manually set args[0] to the binary. We automatically
|
|
|
|
// set this when constructing the command for the proxy, so we must strip
|
|
|
|
// the zero index. We do this unconditionally (anytime len is > 0) because
|
|
|
|
// index zero should ALWAYS be the binary.
|
|
|
|
if len(cmd.Args) > 0 {
|
|
|
|
cmd.Args = cmd.Args[1:]
|
|
|
|
}
|
|
|
|
|
2018-06-05 11:13:28 +00:00
|
|
|
command := []string{cmd.Path}
|
|
|
|
command = append(command, cmd.Args...)
|
2018-05-01 06:35:23 +00:00
|
|
|
|
2018-05-02 16:57:06 +00:00
|
|
|
require.NoError(t, state.AddService(&structs.NodeService{
|
|
|
|
Service: service,
|
|
|
|
}, "token"))
|
|
|
|
|
2018-05-01 06:35:23 +00:00
|
|
|
p, err := state.AddProxy(&structs.ConnectManagedProxy{
|
|
|
|
ExecMode: structs.ProxyExecModeDaemon,
|
|
|
|
Command: command,
|
2018-05-02 16:57:06 +00:00
|
|
|
TargetServiceID: service,
|
2018-06-05 12:22:32 +00:00
|
|
|
}, "token", "")
|
2018-05-01 06:35:23 +00:00
|
|
|
require.NoError(t, err)
|
|
|
|
|
|
|
|
return p.Proxy.ProxyService.ID
|
|
|
|
}
|