storj/testsuite/ui/uitest/browser.go
Egon Elbre dfd2977a01 testsuite/ui: fixes to setup
* Remove "enable-logging", because it ends up spawning consoles on
  Windows.
* Remove "disable-gpu", if we have a GPU, then let's use it.
* Create custom client, so we can attach logging to CDP.
* Ignore potential context.Canceled.
* Fix onboarding wizard test for new objects browser.
* Return an error on a context cancellation.
* Wire all loggers to planet.

Change-Id: I67eb138ba31252f55ac5b383679d033bcf71f1b2
2021-11-15 15:56:35 +02:00

167 lines
4.1 KiB
Go

// Copyright (C) 2021 Storj Labs, Inc.
// See LICENSE for copying information.
package uitest
import (
"context"
"fmt"
"net"
"os"
"testing"
"time"
"github.com/go-rod/rod"
"github.com/go-rod/rod/lib/cdp"
"github.com/go-rod/rod/lib/defaults"
"github.com/go-rod/rod/lib/launcher"
"github.com/go-rod/rod/lib/launcher/flags"
"github.com/go-rod/rod/lib/utils"
"github.com/stretchr/testify/require"
"storj.io/common/errs2"
"storj.io/common/testcontext"
"storj.io/storj/private/testplanet"
)
// Our testing suite heavily uses randomly selected ports, which may collide
// with the launcher lock port. We'll disable the lock port entirely for
// the time being.
func init() { defaults.LockPort = 0 }
// Browser starts a browser for testing using environment variables for configuration.
func Browser(t *testing.T, ctx *testcontext.Context, planet *testplanet.Planet, fn func(*rod.Browser)) {
showBrowser := os.Getenv("STORJ_TEST_SHOW_BROWSER") != ""
slowBrowser := os.Getenv("STORJ_TEST_SHOW_BROWSER") == "slow"
logLauncher := planet.Log().Named("launcher")
browserLoaded := browserTimeoutDetector(10 * time.Second)
defer browserLoaded()
launch := launcher.New().
Headless(!showBrowser).
Leakless(false).
Devtools(false).
NoSandbox(true).
UserDataDir(ctx.Dir("browser")).
Logger(zapWriter{Logger: logLauncher}).
Set("disable-web-security") // TODO: ensure we have proper CORS for testing.
if browserHost := os.Getenv("STORJ_TEST_BROWER_HOSTPORT"); browserHost != "" {
host, port, err := net.SplitHostPort(browserHost)
require.NoError(t, err)
launch = launch.Set("remote-debugging-address", host).Set(flags.RemoteDebuggingPort, port)
}
if browserBin := os.Getenv("STORJ_TEST_BROWSER"); browserBin != "" {
launch = launch.Bin(browserBin)
}
defer func() {
launch.Kill()
avoidStall(3*time.Second, launch.Cleanup)
}()
url, err := launch.Launch()
require.NoError(t, err)
logBrowser := planet.Log().Named("rod")
logBrowserCDP := logBrowser.Named("cdp")
client := cdp.New(url).Logger(utils.Log(func(msg ...interface{}) {
logBrowserCDP.Debug(fmt.Sprintln(msg...))
}))
browser := rod.New().
Timeout(time.Minute).
Sleeper(MaxDuration(5 * time.Second)).
Client(client).
Logger(utils.Log(func(msg ...interface{}) {
logBrowser.Info(fmt.Sprintln(msg...))
})).
Context(ctx).
WithPanic(func(v interface{}) { require.Fail(t, "check failed", v) })
if slowBrowser {
browser = browser.SlowMotion(300 * time.Millisecond).Trace(true)
}
defer ctx.Check(func() error {
// browser.Close may sometimes return context.Canceled.
return errs2.IgnoreCanceled(browser.Close())
})
require.NoError(t, browser.Connect())
browserLoaded()
fn(browser)
}
func browserTimeoutDetector(duration time.Duration) context.CancelFunc {
ctx, cancel := context.WithCancel(context.Background())
go func() {
t := time.NewTimer(duration)
defer t.Stop()
select {
case <-t.C:
panic("timeout for starting browser exceeded")
case <-ctx.Done():
return
}
}()
return cancel
}
// MaxDuration returns a sleeper constructor with the max duration.
func MaxDuration(max time.Duration) func() utils.Sleeper {
return func() utils.Sleeper {
singleSleep := 100 * time.Millisecond
totalSlept := time.Duration(0)
return func(ctx context.Context) error {
if totalSlept > max {
return errMaxSleepDuration(max)
}
if singleSleep > 500*time.Millisecond {
singleSleep = 500 * time.Millisecond
}
totalSlept += singleSleep
t := time.NewTimer(singleSleep)
defer t.Stop()
select {
case <-t.C:
case <-ctx.Done():
return ctx.Err()
}
return nil
}
}
}
// errMaxSleepDuration is error for exceeding sleep duration.
type errMaxSleepDuration time.Duration
// Error implements error interface.
func (e errMaxSleepDuration) Error() string {
return fmt.Sprintf("max sleep %v exceeded", time.Duration(e))
}
func avoidStall(maxDuration time.Duration, fn func()) {
done := make(chan struct{})
go func() {
fn()
close(done)
}()
timeout := time.NewTicker(maxDuration)
defer timeout.Stop()
select {
case <-done:
case <-timeout.C:
fmt.Printf("go-rod did not shutdown within %v\n", maxDuration)
}
}