Skip to content
GitLab
Explore
Sign in
Primary navigation
Search or go to…
Project
Queue
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
Deploy
Releases
Package registry
Container registry
Model registry
Operate
Terraform modules
Monitor
Incidents
Analyze
Value stream analytics
Contributor analytics
Repository analytics
Code review analytics
Issue analytics
Insights
Model experiments
Help
Help
Support
GitLab documentation
Compare GitLab plans
GitLab community forum
Contribute to GitLab
Provide feedback
Keyboard shortcuts
?
Snippets
Groups
Projects
Show more breadcrumbs
EIP
Labrador
Queue
Commits
7d8d608e
Commit
7d8d608e
authored
Sep 20, 2023
by
Ruben Backx
Browse files
Options
Downloads
Patches
Plain Diff
Add end to end testing example
parent
13f3dad2
Branches
Branches containing commit
Tags
Tags containing commit
2 merge requests
!720
Version 2.2.2
,
!713
Add end to end testing example
Changes
3
Show whitespace changes
Inline
Side-by-side
Showing
3 changed files
build.gradle.kts
+12
-0
12 additions, 0 deletions
build.gradle.kts
src/test/java/e2e/EndToEndTest.java
+54
-0
54 additions, 0 deletions
src/test/java/e2e/EndToEndTest.java
src/test/java/e2e/ExampleEndToEndTest.java
+48
-0
48 additions, 0 deletions
src/test/java/e2e/ExampleEndToEndTest.java
with
114 additions
and
0 deletions
build.gradle.kts
+
12
−
0
View file @
7d8d608e
...
...
@@ -280,6 +280,16 @@ tasks.withType<Test>().configureEach {
showStandardStreams
=
false
}
}
tasks
.
getByName
<
Test
>(
"test"
)
{
filter
{
excludeTestsMatching
(
"e2e.*"
)
}
}
tasks
.
register
<
Test
>(
"e2eTest"
)
{
filter
{
includeTestsMatching
(
"e2e.*"
)
}
}
dependencies
{
/////// Spring dependencies ///////
...
...
@@ -406,6 +416,8 @@ dependencies {
testImplementation
(
"org.springframework.boot:spring-boot-starter-test"
)
testImplementation
(
"org.springframework.security:spring-security-test"
)
testImplementation
(
"com.microsoft.playwright:playwright:1.38.0"
)
/////// Annotation processing dependencies ///////
annotationProcessor
(
"javax.annotation:javax.annotation-api"
)
...
...
This diff is collapsed.
Click to expand it.
src/test/java/e2e/EndToEndTest.java
0 → 100644
+
54
−
0
View file @
7d8d608e
/*
* Queue - A Queueing system that can be used to handle labs in higher education
* Copyright (C) 2016-2021 Delft University of Technology
*
* This program is free software: you can redistribute it and/or modify
* it under the terms of the GNU Affero General Public License as
* published by the Free Software Foundation, either version 3 of the
* License, or (at your option) any later version.
*
* This program is distributed in the hope that it will be useful,
* but WITHOUT ANY WARRANTY; without even the implied warranty of
* MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
* GNU Affero General Public License for more details.
*
* You should have received a copy of the GNU Affero General Public License
* along with this program. If not, see <https://www.gnu.org/licenses/>.
*/
package
e2e
;
import
org.junit.jupiter.api.AfterAll
;
import
org.junit.jupiter.api.BeforeEach
;
import
org.junit.jupiter.api.TestInstance
;
import
com.microsoft.playwright.Browser
;
import
com.microsoft.playwright.BrowserContext
;
import
com.microsoft.playwright.Page
;
import
com.microsoft.playwright.Playwright
;
@TestInstance
(
TestInstance
.
Lifecycle
.
PER_CLASS
)
public
abstract
class
EndToEndTest
{
protected
Playwright
playwright
;
protected
Browser
browser
;
protected
BrowserContext
context
;
protected
Page
page
;
public
EndToEndTest
()
{
this
.
playwright
=
Playwright
.
create
();
this
.
browser
=
playwright
.
webkit
().
launch
();
}
@BeforeEach
void
createContext
()
{
context
=
browser
.
newContext
();
page
=
browser
.
newPage
();
}
@AfterAll
void
close
()
{
playwright
.
close
();
}
}
This diff is collapsed.
Click to expand it.
src/test/java/e2e/ExampleEndToEndTest.java
0 → 100644
+
48
−
0
View file @
7d8d608e
/*
* Queue - A Queueing system that can be used to handle labs in higher education
* Copyright (C) 2016-2021 Delft University of Technology
*
* This program is free software: you can redistribute it and/or modify
* it under the terms of the GNU Affero General Public License as
* published by the Free Software Foundation, either version 3 of the
* License, or (at your option) any later version.
*
* This program is distributed in the hope that it will be useful,
* but WITHOUT ANY WARRANTY; without even the implied warranty of
* MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
* GNU Affero General Public License for more details.
*
* You should have received a copy of the GNU Affero General Public License
* along with this program. If not, see <https://www.gnu.org/licenses/>.
*/
package
e2e
;
import
java.nio.file.Paths
;
import
org.junit.jupiter.api.Test
;
import
org.junit.jupiter.api.TestInstance
;
import
com.microsoft.playwright.Page
;
import
com.microsoft.playwright.options.AriaRole
;
@TestInstance
(
TestInstance
.
Lifecycle
.
PER_CLASS
)
public
class
ExampleEndToEndTest
extends
EndToEndTest
{
@Test
void
takeScreenShot
()
{
page
.
navigate
(
"localhost:8081"
);
page
.
screenshot
(
new
Page
.
ScreenshotOptions
().
setPath
(
Paths
.
get
(
"build/screenshots/test.png"
)));
}
@Test
void
login
()
{
page
.
navigate
(
"http://localhost:8081/"
);
page
.
getByRole
(
AriaRole
.
LINK
,
new
Page
.
GetByRoleOptions
().
setName
(
"Click here to log in"
)).
click
();
page
.
getByLabel
(
"Username"
).
click
();
page
.
getByLabel
(
"Username"
).
fill
(
"cseteacher1"
);
page
.
getByLabel
(
"Username"
).
press
(
"Tab"
);
page
.
getByLabel
(
"Password"
).
fill
(
"cseteacher1"
);
page
.
getByLabel
(
"Password"
).
press
(
"Enter"
);
}
}
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
sign in
to comment