2022-02-08 21:00:49 +00:00
|
|
|
// Copyright 2020-2022 the Pinniped contributors. All Rights Reserved.
|
2020-12-02 21:29:54 +00:00
|
|
|
// SPDX-License-Identifier: Apache-2.0
|
|
|
|
|
|
|
|
// Package browsertest provides integration test helpers for our browser-based tests.
|
|
|
|
package browsertest
|
|
|
|
|
|
|
|
import (
|
|
|
|
"regexp"
|
2022-02-16 14:20:28 +00:00
|
|
|
"strings"
|
2020-12-02 21:29:54 +00:00
|
|
|
"testing"
|
|
|
|
"time"
|
|
|
|
|
|
|
|
"github.com/sclevine/agouti"
|
|
|
|
"github.com/stretchr/testify/require"
|
|
|
|
|
2021-06-22 15:23:19 +00:00
|
|
|
"go.pinniped.dev/test/testlib"
|
2020-12-02 21:29:54 +00:00
|
|
|
)
|
|
|
|
|
2020-12-02 23:20:24 +00:00
|
|
|
const (
|
|
|
|
operationTimeout = 10 * time.Second
|
|
|
|
operationPollingInterval = 100 * time.Millisecond
|
|
|
|
)
|
|
|
|
|
2022-02-16 14:20:28 +00:00
|
|
|
// Open a webdriver-driven browser and returns an *agouti.Page to control it. The browser will be automatically
|
2020-12-02 21:29:54 +00:00
|
|
|
// closed at the end of the current test. It is configured for test purposes with the correct HTTP proxy and
|
|
|
|
// in a mode that ignore certificate errors.
|
|
|
|
func Open(t *testing.T) *agouti.Page {
|
2022-02-16 14:20:28 +00:00
|
|
|
t.Helper()
|
|
|
|
|
|
|
|
// make it trivial to run all browser based tests via:
|
|
|
|
// go test -v -race -count 1 -timeout 0 ./test/integration -run '/_Browser'
|
|
|
|
require.Contains(t, rootTestName(t), "_Browser", "browser based tests must contain the string _Browser in their name")
|
|
|
|
|
2020-12-02 21:29:54 +00:00
|
|
|
t.Logf("opening browser driver")
|
2021-06-22 15:23:19 +00:00
|
|
|
env := testlib.IntegrationEnv(t)
|
2020-12-02 21:29:54 +00:00
|
|
|
caps := agouti.NewCapabilities()
|
2021-06-30 15:53:48 +00:00
|
|
|
|
|
|
|
// Capture console.log(), not just console.error().
|
|
|
|
caps["loggingPrefs"] = map[string]string{"browser": "INFO"}
|
|
|
|
|
2020-12-02 21:29:54 +00:00
|
|
|
if env.Proxy != "" {
|
|
|
|
t.Logf("configuring Chrome to use proxy %q", env.Proxy)
|
|
|
|
caps = caps.Proxy(agouti.ProxyConfig{
|
|
|
|
ProxyType: "manual",
|
|
|
|
HTTPProxy: env.Proxy,
|
|
|
|
SSLProxy: env.Proxy,
|
|
|
|
NoProxy: "127.0.0.1",
|
|
|
|
})
|
|
|
|
}
|
|
|
|
agoutiDriver := agouti.ChromeDriver(
|
|
|
|
agouti.Desired(caps),
|
|
|
|
agouti.ChromeOptions("args", []string{
|
|
|
|
"--no-sandbox",
|
|
|
|
"--ignore-certificate-errors",
|
|
|
|
"--headless", // Comment out this line to see the tests happen in a visible browser window.
|
|
|
|
}),
|
|
|
|
// Uncomment this to see stdout/stderr from chromedriver.
|
|
|
|
// agouti.Debug,
|
|
|
|
)
|
|
|
|
require.NoError(t, agoutiDriver.Start())
|
|
|
|
t.Cleanup(func() { require.NoError(t, agoutiDriver.Stop()) })
|
|
|
|
page, err := agoutiDriver.NewPage(agouti.Browser("chrome"))
|
|
|
|
require.NoError(t, err)
|
|
|
|
require.NoError(t, page.Reset())
|
|
|
|
return page
|
|
|
|
}
|
|
|
|
|
2022-02-16 14:20:28 +00:00
|
|
|
func rootTestName(t *testing.T) string {
|
|
|
|
switch names := strings.SplitN(t.Name(), "/", 3); len(names) {
|
|
|
|
case 0:
|
|
|
|
panic("impossible")
|
|
|
|
|
|
|
|
case 1:
|
|
|
|
return names[0]
|
|
|
|
|
|
|
|
case 2, 3:
|
|
|
|
if strings.HasPrefix(names[0], "TestIntegration") {
|
|
|
|
return names[1]
|
|
|
|
}
|
|
|
|
return names[0]
|
|
|
|
|
|
|
|
default:
|
|
|
|
panic("impossible")
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2020-12-02 21:29:54 +00:00
|
|
|
// WaitForVisibleElements expects the page to contain all the the elements specified by the selectors. It waits for this
|
|
|
|
// to occur and times out, failing the test, if they never appear.
|
|
|
|
func WaitForVisibleElements(t *testing.T, page *agouti.Page, selectors ...string) {
|
|
|
|
t.Helper()
|
2020-12-02 23:20:24 +00:00
|
|
|
|
2021-06-22 15:23:19 +00:00
|
|
|
testlib.RequireEventuallyf(t,
|
2021-06-16 22:51:23 +00:00
|
|
|
func(requireEventually *require.Assertions) {
|
2020-12-02 21:29:54 +00:00
|
|
|
for _, sel := range selectors {
|
|
|
|
vis, err := page.First(sel).Visible()
|
2021-06-16 22:51:23 +00:00
|
|
|
requireEventually.NoError(err)
|
|
|
|
requireEventually.Truef(vis, "expected element %q to be visible", sel)
|
2020-12-02 21:29:54 +00:00
|
|
|
}
|
|
|
|
},
|
2020-12-02 23:20:24 +00:00
|
|
|
operationTimeout,
|
|
|
|
operationPollingInterval,
|
|
|
|
"expected to have a page with selectors %v, but it never loaded",
|
|
|
|
selectors,
|
2020-12-02 21:29:54 +00:00
|
|
|
)
|
|
|
|
}
|
|
|
|
|
|
|
|
// WaitForURL expects the page to eventually navigate to a URL matching the specified pattern. It waits for this
|
|
|
|
// to occur and times out, failing the test, if it never does.
|
|
|
|
func WaitForURL(t *testing.T, page *agouti.Page, pat *regexp.Regexp) {
|
|
|
|
var lastURL string
|
2021-06-22 15:23:19 +00:00
|
|
|
testlib.RequireEventuallyf(t,
|
2021-06-16 22:51:23 +00:00
|
|
|
func(requireEventually *require.Assertions) {
|
2020-12-02 21:29:54 +00:00
|
|
|
url, err := page.URL()
|
|
|
|
if url != lastURL {
|
|
|
|
t.Logf("saw URL %s", url)
|
|
|
|
lastURL = url
|
|
|
|
}
|
2021-06-16 22:51:23 +00:00
|
|
|
requireEventually.NoError(err)
|
|
|
|
requireEventually.Regexp(pat, url)
|
2020-12-02 21:29:54 +00:00
|
|
|
},
|
2020-12-02 23:20:24 +00:00
|
|
|
operationTimeout,
|
|
|
|
operationPollingInterval,
|
2020-12-02 21:29:54 +00:00
|
|
|
"expected to browse to %s, but never got there",
|
|
|
|
pat,
|
|
|
|
)
|
|
|
|
}
|
|
|
|
|
|
|
|
// LoginToUpstream expects the page to be redirected to one of several known upstream IDPs.
|
|
|
|
// It knows how to enter the test username/password and submit the upstream login form.
|
2021-06-22 15:23:19 +00:00
|
|
|
func LoginToUpstream(t *testing.T, page *agouti.Page, upstream testlib.TestOIDCUpstream) {
|
2020-12-02 21:29:54 +00:00
|
|
|
t.Helper()
|
|
|
|
|
|
|
|
type config struct {
|
|
|
|
Name string
|
|
|
|
IssuerPattern *regexp.Regexp
|
|
|
|
LoginPagePattern *regexp.Regexp
|
|
|
|
UsernameSelector string
|
|
|
|
PasswordSelector string
|
|
|
|
LoginButtonSelector string
|
|
|
|
}
|
|
|
|
|
|
|
|
// Lookup the provider by matching on the issuer URL.
|
|
|
|
var cfg *config
|
|
|
|
for _, p := range []*config{
|
|
|
|
{
|
|
|
|
Name: "Okta",
|
|
|
|
IssuerPattern: regexp.MustCompile(`\Ahttps://.+\.okta\.com/.+\z`),
|
2022-02-08 21:00:49 +00:00
|
|
|
LoginPagePattern: regexp.MustCompile(`\Ahttps://.+\.okta\.com/.*\z`),
|
2020-12-02 21:29:54 +00:00
|
|
|
UsernameSelector: "input#okta-signin-username",
|
|
|
|
PasswordSelector: "input#okta-signin-password",
|
|
|
|
LoginButtonSelector: "input#okta-signin-submit",
|
|
|
|
},
|
|
|
|
{
|
|
|
|
Name: "Dex",
|
2021-04-05 22:01:17 +00:00
|
|
|
IssuerPattern: regexp.MustCompile(`\Ahttps://dex\.tools\.svc\.cluster\.local/dex.*\z`),
|
|
|
|
LoginPagePattern: regexp.MustCompile(`\Ahttps://dex\.tools\.svc\.cluster\.local/dex/auth/local.+\z`),
|
2020-12-02 21:29:54 +00:00
|
|
|
UsernameSelector: "input#login",
|
|
|
|
PasswordSelector: "input#password",
|
|
|
|
LoginButtonSelector: "button#submit-login",
|
|
|
|
},
|
|
|
|
} {
|
|
|
|
if p.IssuerPattern.MatchString(upstream.Issuer) {
|
|
|
|
cfg = p
|
|
|
|
break
|
|
|
|
}
|
|
|
|
}
|
|
|
|
if cfg == nil {
|
|
|
|
require.Failf(t, "could not find login provider for issuer %q", upstream.Issuer)
|
|
|
|
return
|
|
|
|
}
|
|
|
|
|
|
|
|
// Expect to be redirected to the login page.
|
|
|
|
t.Logf("waiting for redirect to %s login page", cfg.Name)
|
|
|
|
WaitForURL(t, page, cfg.LoginPagePattern)
|
|
|
|
|
|
|
|
// Wait for the login page to be rendered.
|
|
|
|
WaitForVisibleElements(t, page, cfg.UsernameSelector, cfg.PasswordSelector, cfg.LoginButtonSelector)
|
|
|
|
|
|
|
|
// Fill in the username and password and click "submit".
|
|
|
|
t.Logf("logging into %s", cfg.Name)
|
|
|
|
require.NoError(t, page.First(cfg.UsernameSelector).Fill(upstream.Username))
|
|
|
|
require.NoError(t, page.First(cfg.PasswordSelector).Fill(upstream.Password))
|
|
|
|
require.NoError(t, page.First(cfg.LoginButtonSelector).Click())
|
|
|
|
}
|