storj/testsuite/ui/satellite/onboarding_wizard_browser_test.go
Vitalii Shpital 9da3de1a89 web/satellite, testsuite/satellite/ui: removed onb CLI flow's Generate AG step and updated tests
Removed Generate access grant step.
Updated according test and added Back button click test logic.

Change-Id: I736eb4ecb4c3a2437c78af3f42da160b0f147d26
2021-09-24 13:21:40 +00:00

65 lines
2.6 KiB
Go

// Copyright (C) 2021 Storj Labs, Inc.
// See LICENSE for copying information.
package satellite
import (
"testing"
"github.com/go-rod/rod"
"github.com/go-rod/rod/lib/input"
"github.com/stretchr/testify/require"
"storj.io/common/testcontext"
"storj.io/storj/private/testplanet"
"storj.io/storj/testsuite/ui/uitest"
)
func TestOnboardingWizardBrowser(t *testing.T) {
uitest.Run(t, func(t *testing.T, ctx *testcontext.Context, planet *testplanet.Planet, browser *rod.Browser) {
signupPageURL := planet.Satellites[0].ConsoleURL() + "/signup"
fullName := "John Doe"
emailAddress := "test@email.com"
password := "qazwsx123"
page := browser.MustPage(signupPageURL)
page.MustSetViewport(1350, 600, 1, false)
// first time User signup
page.MustElement("[aria-roledescription=name]").MustInput(fullName)
page.MustElement("[aria-roledescription=email]").MustInput(emailAddress)
page.MustElement("[aria-roledescription=password]").MustInput(password)
page.MustElement("[aria-roledescription=retype-password]").MustInput(password)
page.MustElement(".checkmark").MustClick()
page.Keyboard.MustPress(input.Enter)
confirmAccountEmailMessage := page.MustElement("[aria-roledescription=title]").MustText()
require.Contains(t, confirmAccountEmailMessage, "You're almost there!")
// first time user log in
page.MustElement("[href=\"/login\"]").MustClick()
page.MustElement("[aria-roledescription=email]").MustInput(emailAddress)
page.MustElement("[aria-roledescription=password]").MustInput(password)
page.Keyboard.MustPress(input.Enter)
// testing onboarding workflow browser
page.MustElementX("(//span[text()=\"Continue in web\"])").MustClick()
objectBrowserWarning := page.MustElement("[aria-roledescription=sub-title]").MustText()
require.Contains(t, objectBrowserWarning, "The object browser uses server side encryption.")
page.MustElementX("(//span[text()=\"Continue\"])").MustClick()
encryptionPassphraseWarningTitle := page.MustElement("[aria-roledescription=warning-title]").MustText()
require.Contains(t, encryptionPassphraseWarningTitle, "The object browser uses server side encryption.")
customPassphrase := page.MustElement("[aria-roledescription=enter-passphrase-label]")
customPassphraseLabel := customPassphrase.MustText()
require.Contains(t, customPassphraseLabel, "Enter Your Own Passphrase")
customPassphrase.MustClick()
page.MustElement("[aria-roledescription=passphrase]").MustInput("password123")
page.MustElementX("(//span[text()=\"Next >\"])").MustClick()
// Buckets Page
bucketsTitle := page.MustElement("[aria-roledescription=title]").MustText()
require.Contains(t, bucketsTitle, "Buckets")
})
}