Skip to content
GitLab
Explore
Sign in
Primary navigation
Search or go to…
Project
M
Metabase
Manage
Activity
Members
Labels
Plan
Issues
Issue boards
Milestones
Iterations
Wiki
Requirements
Code
Merge requests
Repository
Branches
Commits
Tags
Repository graph
Compare revisions
Snippets
Locked files
Build
Pipelines
Jobs
Pipeline schedules
Test cases
Artifacts
Deploy
Releases
Package registry
Container Registry
Model registry
Operate
Environments
Terraform modules
Monitor
Incidents
Service Desk
Analyze
Value stream analytics
Contributor analytics
CI/CD analytics
Repository analytics
Code review analytics
Issue analytics
Insights
Model experiments
Help
Help
Support
GitLab documentation
Compare GitLab plans
Community forum
Contribute to GitLab
Provide feedback
Terms and privacy
Keyboard shortcuts
?
Snippets
Groups
Projects
Show more breadcrumbs
Engineering Digital Service
Metabase
Commits
718f6083
Commit
718f6083
authored
7 years ago
by
Atte Keinänen
Browse files
Options
Downloads
Patches
Plain Diff
Remove the old E2E signup test
parent
003a15d6
No related branches found
Branches containing commit
No related tags found
Tags containing commit
No related merge requests found
Changes
1
Hide whitespace changes
Inline
Side-by-side
Showing
1 changed file
frontend/test/legacy-selenium/setup/signup.spec.js
+0
-70
0 additions, 70 deletions
frontend/test/legacy-selenium/setup/signup.spec.js
with
0 additions
and
70 deletions
frontend/test/legacy-selenium/setup/signup.spec.js
deleted
100644 → 0
+
0
−
70
View file @
003a15d6
import
path
from
"
path
"
;
import
{
waitForElement
,
findElement
,
waitForElementAndClick
,
waitForElementAndSendKeys
,
waitForUrl
,
screenshot
,
describeE2E
}
from
"
../support/utils
"
;
jasmine
.
DEFAULT_TIMEOUT_INTERVAL
=
60000
;
describeE2E
(
"
setup/signup
"
,
{
dbKey
:
""
},
()
=>
{
describe
(
"
onboarding
"
,
()
=>
{
it
(
"
should take you to the welcome page
"
,
async
()
=>
{
await
driver
.
get
(
`
${
server
.
host
}
/`
);
await
waitForUrl
(
driver
,
`
${
server
.
host
}
/setup`
);
const
welcomeText
=
await
findElement
(
driver
,
"
h1.text-brand
"
).
getText
();
expect
(
welcomeText
).
toEqual
(
'
Welcome to Metabase
'
);
await
screenshot
(
driver
,
"
screenshots/setup-welcome.png
"
);
});
it
(
"
should allow you to sign up and add db
"
,
async
()
=>
{
await
driver
.
get
(
`
${
server
.
host
}
/`
);
await
waitForUrl
(
driver
,
`
${
server
.
host
}
/setup`
);
await
waitForElementAndClick
(
driver
,
"
.Button.Button--primary
"
);
// fill in sign up form
await
waitForElement
(
driver
,
"
[name=firstName]
"
);
await
screenshot
(
driver
,
"
screenshots/setup-signup-user.png
"
);
const
nextButton
=
findElement
(
driver
,
"
.Button[disabled]
"
);
await
waitForElementAndSendKeys
(
driver
,
"
[name=firstName]
"
,
'
Testy
'
);
await
waitForElementAndSendKeys
(
driver
,
"
[name=lastName]
"
,
'
McTestface
'
);
await
waitForElementAndSendKeys
(
driver
,
"
[name=email]
"
,
'
testy@metabase.com
'
);
await
waitForElementAndSendKeys
(
driver
,
"
[name=password]
"
,
'
12341234
'
);
await
waitForElementAndSendKeys
(
driver
,
"
[name=passwordConfirm]
"
,
'
12341234
'
);
await
waitForElementAndSendKeys
(
driver
,
"
[name=siteName]
"
,
'
1234
'
);
expect
(
await
nextButton
.
isEnabled
()).
toBe
(
true
);
await
nextButton
.
click
();
// add h2 database
await
waitForElement
(
driver
,
"
option[value=h2]
"
);
await
screenshot
(
driver
,
"
screenshots/setup-signup-db.png
"
);
const
h2Option
=
findElement
(
driver
,
"
option[value=h2]
"
);
await
h2Option
.
click
();
await
waitForElementAndSendKeys
(
driver
,
"
[name=name]
"
,
'
Metabase H2
'
);
const
dbPath
=
path
.
resolve
(
__dirname
,
'
../support/fixtures/metabase.db
'
);
await
waitForElementAndSendKeys
(
driver
,
"
[name=db]
"
,
`file:
${
dbPath
}
`
);
await
waitForElementAndClick
(
driver
,
"
.Button.Button--primary
"
);
await
waitForElement
(
driver
,
"
.SetupStep.rounded.full.relative.SetupStep--active:last-of-type
"
);
await
waitForElementAndClick
(
driver
,
"
.Button.Button--primary
"
);
await
waitForElement
(
driver
,
"
a[href='/?new']
"
);
await
screenshot
(
driver
,
"
screenshots/setup-signup-complete.png
"
);
await
waitForElementAndClick
(
driver
,
"
.Button.Button--primary
"
);
await
waitForUrl
(
driver
,
`
${
server
.
host
}
/?new`
);
await
waitForElement
(
driver
,
"
.Modal h2:first-child
"
);
const
onboardingModalHeading
=
await
findElement
(
driver
,
"
.Modal h2:first-child
"
);
expect
(
await
onboardingModalHeading
.
getText
()).
toBe
(
'
Testy, welcome to Metabase!
'
);
await
screenshot
(
driver
,
"
screenshots/setup-tutorial-main.png
"
);
});
});
});
This diff is collapsed.
Click to expand it.
Preview
0%
Loading
Try again
or
attach a new file
.
Cancel
You are about to add
0
people
to the discussion. Proceed with caution.
Finish editing this message first!
Save comment
Cancel
Please
register
or
sign in
to comment