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
Merge requests
!713
Add end to end testing example
Code
Review changes
Check out branch
Open in Workspace
Download
Patches
Plain diff
Expand sidebar
Merged
Add end to end testing example
integration-testing
into
development
Overview
1
Commits
1
Pipelines
0
Changes
3
Merged
Add end to end testing example
Ruben Backx
requested to merge
integration-testing
into
development
Sep 21, 2023
Overview
1
Commits
1
Pipelines
0
Changes
3
Does not run in pipeline yet
0
0
Merge request reports
Compare
development
version 1
727a128a
Sep 21, 2023
development (base)
and
latest version
latest version
7d8d608e
1 commit,
Sep 21, 2023
version 1
727a128a
1 commit,
Sep 21, 2023
3 files
+
114
−
0
Inline
Compare changes
Side-by-side
Inline
Show whitespace changes
Show one file at a time
Files
3
src/test/java/e2e/EndToEndTest.java
0 → 100644
+
54
−
0
View file @ 7d8d608e
Edit in single-file editor
Open in Web IDE
/*
* 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
();
}
}
Loading