test(integration): test app

This commit is contained in:
Rob Watson 2025-03-04 18:30:59 +01:00
parent 88c352d560
commit 5e1c53f0c9
3 changed files with 59 additions and 0 deletions

View File

@ -12,12 +12,14 @@ import (
"git.netflux.io/rob/octoplex/mediaserver" "git.netflux.io/rob/octoplex/mediaserver"
"git.netflux.io/rob/octoplex/multiplexer" "git.netflux.io/rob/octoplex/multiplexer"
"git.netflux.io/rob/octoplex/terminal" "git.netflux.io/rob/octoplex/terminal"
"github.com/gdamore/tcell/v2"
) )
// RunParams holds the parameters for running the application. // RunParams holds the parameters for running the application.
type RunParams struct { type RunParams struct {
Config config.Config Config config.Config
DockerClient container.DockerClient DockerClient container.DockerClient
Screen tcell.Screen
ClipboardAvailable bool ClipboardAvailable bool
BuildInfo domain.BuildInfo BuildInfo domain.BuildInfo
Logger *slog.Logger Logger *slog.Logger
@ -29,6 +31,7 @@ func Run(ctx context.Context, params RunParams) error {
logger := params.Logger logger := params.Logger
ui, err := terminal.StartUI(ctx, terminal.StartParams{ ui, err := terminal.StartUI(ctx, terminal.StartParams{
Screen: params.Screen,
ClipboardAvailable: params.ClipboardAvailable, ClipboardAvailable: params.ClipboardAvailable,
BuildInfo: params.BuildInfo, BuildInfo: params.BuildInfo,
Logger: logger.With("component", "ui"), Logger: logger.With("component", "ui"),

51
app/integration_test.go Normal file
View File

@ -0,0 +1,51 @@
//go:build integration
package app_test
import (
"context"
"testing"
"time"
"git.netflux.io/rob/octoplex/app"
"git.netflux.io/rob/octoplex/config"
"git.netflux.io/rob/octoplex/domain"
"git.netflux.io/rob/octoplex/testhelpers"
dockerclient "github.com/docker/docker/client"
"github.com/gdamore/tcell/v2"
"github.com/stretchr/testify/require"
)
func TestIntegration(t *testing.T) {
ctx, cancel := context.WithCancel(t.Context())
defer cancel()
logger := testhelpers.NewTestLogger()
dockerClient, err := dockerclient.NewClientWithOpts(dockerclient.FromEnv)
require.NoError(t, err)
done := make(chan struct{})
go func() {
require.NoError(t, app.Run(ctx, app.RunParams{
Config: config.Config{},
DockerClient: dockerClient,
Screen: tcell.NewSimulationScreen(""),
ClipboardAvailable: false,
BuildInfo: domain.BuildInfo{Version: "0.0.1", GoVersion: "go1.16.3"},
Logger: logger,
}))
done <- struct{}{}
}()
// For now, just launch the app and wait for a few seconds.
// This is mostly useful to verify there are no obvious data races (when
// running with -race).
// See https://github.com/rivo/tview/wiki/Concurrency.
//
// TODO: test more user journeys.
time.Sleep(time.Second * 5)
cancel()
<-done
}

View File

@ -42,6 +42,7 @@ type StartParams struct {
Logger *slog.Logger Logger *slog.Logger
ClipboardAvailable bool ClipboardAvailable bool
BuildInfo domain.BuildInfo BuildInfo domain.BuildInfo
Screen tcell.Screen
} }
const defaultChanSize = 64 const defaultChanSize = 64
@ -53,6 +54,10 @@ func StartUI(ctx context.Context, params StartParams) (*UI, error) {
app := tview.NewApplication() app := tview.NewApplication()
// Allow the tcell screen to be overridden for integration tests. If
// params.Screen is nil, the real terminal is used.
app.SetScreen(params.Screen)
sidebar := tview.NewFlex() sidebar := tview.NewFlex()
sidebar.SetDirection(tview.FlexRow) sidebar.SetDirection(tview.FlexRow)