Skip to content
GitLab
Explore
Sign in
Primary navigation
Search or go to…
Project
D
drupal-2842405
Manage
Activity
Members
Labels
Plan
Custom issue tracker
Code
Merge requests
Repository
Branches
Commits
Tags
Repository graph
Compare revisions
Locked files
Build
Pipelines
Jobs
Pipeline schedules
Artifacts
Deploy
Model registry
Analyze
Value stream analytics
Contributor analytics
CI/CD analytics
Repository analytics
Code review 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
Issue forks
drupal-2842405
Commits
77686992
Verified
Commit
77686992
authored
7 months ago
by
Théodore Biadala
Browse files
Options
Downloads
Patches
Plain Diff
Issue
#3469576
by pooja_sharma, catch: Speed up RevisionRevertFormTest
parent
ee585649
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
core/tests/Drupal/FunctionalTests/Entity/RevisionRevertFormTest.php
+19
-9
19 additions, 9 deletions
.../Drupal/FunctionalTests/Entity/RevisionRevertFormTest.php
with
19 additions
and
9 deletions
core/tests/Drupal/FunctionalTests/Entity/RevisionRevertFormTest.php
+
19
−
9
View file @
77686992
...
...
@@ -43,6 +43,19 @@ protected function setUp(): void {
$this
->
drupalPlaceBlock
(
'page_title_block'
);
}
/**
* Test form revision revert.
*/
public
function
testFormRevisionRevert
():
void
{
foreach
(
self
::
providerPageTitle
()
as
$page_title
)
{
$this
->
testPageTitle
(
$page_title
[
0
],
$page_title
[
1
]);
}
$this
->
testAccessRevertLatestDefault
();
$this
->
testAccessRevertLatestForwardRevision
();
$this
->
testAccessRevertNonLatest
();
$this
->
testPrepareRevision
();
}
/**
* Tests title by whether entity supports revision creation dates.
*
...
...
@@ -50,11 +63,8 @@ protected function setUp(): void {
* The entity type to test.
* @param string $expectedQuestion
* The expected question/page title.
*
* @covers ::getQuestion
* @dataProvider providerPageTitle
*/
p
ublic
function
testPageTitle
(
string
$entityTypeId
,
string
$expectedQuestion
):
void
{
p
rotected
function
testPageTitle
(
string
$entityTypeId
,
string
$expectedQuestion
):
void
{
/** @var \Drupal\Core\Entity\RevisionableStorageInterface $storage */
$storage
=
\Drupal
::
entityTypeManager
()
->
getStorage
(
$entityTypeId
);
...
...
@@ -88,7 +98,7 @@ public function testPageTitle(string $entityTypeId, string $expectedQuestion): v
/**
* Data provider for testPageTitle.
*/
p
ublic
static
function
providerPageTitle
():
array
{
p
rotected
static
function
providerPageTitle
():
array
{
return
[
[
'entity_test_rev'
,
'Are you sure you want to revert the revision?'
],
[
'entity_test_revlog'
,
'Are you sure you want to revert to the revision from Sun, 11 Jan 2009 - 16:00?'
],
...
...
@@ -100,7 +110,7 @@ public static function providerPageTitle(): array {
*
* @covers \Drupal\Core\Entity\EntityAccessControlHandler::checkAccess
*/
p
ublic
function
testAccessRevertLatestDefault
():
void
{
p
rotected
function
testAccessRevertLatestDefault
():
void
{
/** @var \Drupal\entity_test\Entity\EntityTestRev $entity */
$entity
=
EntityTestRev
::
create
();
$entity
->
setName
(
'revert'
);
...
...
@@ -119,7 +129,7 @@ public function testAccessRevertLatestDefault(): void {
*
* @covers \Drupal\Core\Entity\EntityAccessControlHandler::checkAccess
*/
p
ublic
function
testAccessRevertLatestForwardRevision
():
void
{
p
rotected
function
testAccessRevertLatestForwardRevision
():
void
{
/** @var \Drupal\entity_test\Entity\EntityTestRev $entity */
$entity
=
EntityTestRevPub
::
create
();
$entity
->
setName
(
'revert'
);
...
...
@@ -143,7 +153,7 @@ public function testAccessRevertLatestForwardRevision(): void {
*
* @covers \Drupal\Core\Entity\EntityAccessControlHandler::checkAccess
*/
p
ublic
function
testAccessRevertNonLatest
():
void
{
p
rotected
function
testAccessRevertNonLatest
():
void
{
/** @var \Drupal\entity_test\Entity\EntityTestRev $entity */
$entity
=
EntityTestRev
::
create
();
$entity
->
setName
(
'revert'
);
...
...
@@ -276,7 +286,7 @@ public static function providerSubmitForm(): array {
*
* @covers ::prepareRevision
*/
p
ublic
function
testPrepareRevision
():
void
{
p
rotected
function
testPrepareRevision
():
void
{
$user
=
$this
->
createUser
();
$this
->
drupalLogin
(
$user
);
...
...
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