Skip to content

Commit

Permalink
feat: run tests on different port
Browse files Browse the repository at this point in the history
This should stop tests from interferring with ftl dev

fixes #2577
  • Loading branch information
stuartwdouglas committed Sep 5, 2024
1 parent c633e59 commit afd8805
Show file tree
Hide file tree
Showing 3 changed files with 15 additions and 9 deletions.
1 change: 0 additions & 1 deletion bin/hermit.hcl
Original file line number Diff line number Diff line change
@@ -1,6 +1,5 @@
env = {
"DBMATE_MIGRATIONS_DIR": "${HERMIT_ENV}/backend/controller/sql/schema",
"FTL_ENDPOINT": "http://localhost:8892",
"FTL_INIT_GO_REPLACE": "github.com/TBD54566975/ftl=${HERMIT_ENV}",
"FTL_SOURCE": "${HERMIT_ENV}",
"OTEL_GRPC_PORT": "4317",
Expand Down
12 changes: 8 additions & 4 deletions internal/integration/actions.go
Original file line number Diff line number Diff line change
Expand Up @@ -160,7 +160,9 @@ func DebugShell() Action {
func Exec(cmd string, args ...string) Action {
return func(t testing.TB, ic TestContext) {
Infof("Executing (in %s): %s %s", ic.workDir, cmd, shellquote.Join(args...))
err := ftlexec.Command(ic, log.Debug, ic.workDir, cmd, args...).RunStderrError(ic)
command := ftlexec.Command(ic, log.Debug, ic.workDir, cmd, args...)
command.Env = append(command.Env, "FTL_ENDPOINT=http://127.0.0.1:"+TestPort)
err := command.RunStderrError(ic)
assert.NoError(t, err)
}
}
Expand All @@ -170,6 +172,7 @@ func Exec(cmd string, args ...string) Action {
func ExecWithExpectedOutput(want string, cmd string, args ...string) Action {
return func(t testing.TB, ic TestContext) {
Infof("Executing: %s %s", cmd, shellquote.Join(args...))
t.Setenv("FTL_ENDPOINT", "http://127.0.0.1:"+TestPort)
output, err := ftlexec.Capture(ic, ic.workDir, cmd, args...)
assert.NoError(t, err)
assert.Equal(t, output, []byte(want))
Expand All @@ -181,6 +184,7 @@ func ExecWithExpectedOutput(want string, cmd string, args ...string) Action {
func ExecWithExpectedError(want string, cmd string, args ...string) Action {
return func(t testing.TB, ic TestContext) {
Infof("Executing: %s %s", cmd, shellquote.Join(args...))
t.Setenv("FTL_ENDPOINT", "http://127.0.0.1:"+TestPort)
output, err := ftlexec.Capture(ic, ic.workDir, cmd, args...)
assert.Error(t, err)
assert.Contains(t, string(output), want)
Expand All @@ -193,7 +197,7 @@ func ExecWithExpectedError(want string, cmd string, args ...string) Action {
func ExecWithOutput(cmd string, args []string, capture func(output string)) Action {
return func(t testing.TB, ic TestContext) {
Infof("Executing: %s %s", cmd, shellquote.Join(args...))
output, err := ftlexec.Capture(ic, ic.workDir, cmd, args...)
output, err := ftlexec.CaptureWithEnv(ic, ic.workDir, cmd, []string{"FTL_ENDPOINT=http://127.0.0.1:" + TestPort}, args...)
assert.NoError(t, err, "%s", string(output))
capture(string(output))
}
Expand All @@ -220,7 +224,7 @@ func ExpectError(action Action, expectedErrorMsg ...string) Action {
// Deploy a module from the working directory and wait for it to become available.
func Deploy(module string) Action {
return Chain(
Exec("ftl", "deploy", module),
Exec("ftl", "deploy", "--endpoint", "http://127.0.0.1:"+TestPort, module),
Wait(module),
)
}
Expand Down Expand Up @@ -521,7 +525,7 @@ func JsonData(t testing.TB, body interface{}) []byte {
func HttpCall(method string, path string, headers map[string][]string, body []byte, onResponse func(t testing.TB, resp *HTTPResponse)) Action {
return func(t testing.TB, ic TestContext) {
Infof("HTTP %s %s", method, path)
baseURL, err := url.Parse(fmt.Sprintf("http://localhost:8891"))
baseURL, err := url.Parse(fmt.Sprintf("http://localhost:" + TestIngressPort))
assert.NoError(t, err)

u, err := baseURL.Parse(path)
Expand Down
11 changes: 7 additions & 4 deletions internal/integration/harness.go
Original file line number Diff line number Diff line change
Expand Up @@ -29,6 +29,9 @@ import (
"github.com/TBD54566975/ftl/internal/rpc"
)

const TestPort = "9892"
const TestIngressPort = "9891"

func integrationTestTimeout() time.Duration {
timeout := optional.Zero(os.Getenv("FTL_INTEGRATION_TEST_TIMEOUT")).Default("5s")
d, err := time.ParseDuration(timeout)
Expand Down Expand Up @@ -174,16 +177,16 @@ func run(t *testing.T, actionsOrOptions ...ActionOrOption) {
t.Run(language, func(t *testing.T) {
tmpDir := initWorkDir(t, cwd, opts)

verbs := rpc.Dial(ftlv1connect.NewVerbServiceClient, "http://localhost:8892", log.Debug)
verbs := rpc.Dial(ftlv1connect.NewVerbServiceClient, "http://localhost:"+TestPort, log.Debug)

var controller ftlv1connect.ControllerServiceClient
var console pbconsoleconnect.ConsoleServiceClient
if opts.startController {
controller = rpc.Dial(ftlv1connect.NewControllerServiceClient, "http://localhost:8892", log.Debug)
console = rpc.Dial(pbconsoleconnect.NewConsoleServiceClient, "http://localhost:8892", log.Debug)
controller = rpc.Dial(ftlv1connect.NewControllerServiceClient, "http://localhost:"+TestPort, log.Debug)
console = rpc.Dial(pbconsoleconnect.NewConsoleServiceClient, "http://localhost:"+TestPort, log.Debug)

Infof("Starting ftl cluster")
ctx = startProcess(ctx, t, filepath.Join(binDir, "ftl"), "serve", "--recreate")
ctx = startProcess(ctx, t, filepath.Join(binDir, "ftl"), "serve", "--recreate", "--bind", "http://127.0.0.1:"+TestIngressPort)
}

testData := filepath.Join(cwd, "testdata", language)
Expand Down

0 comments on commit afd8805

Please sign in to comment.