Skip to content
GitLab
Explore
Sign in
Primary navigation
Search or go to…
Project
D
drupal
Manage
Activity
Members
Labels
Plan
Wiki
Custom issue tracker
Code
Merge requests
Repository
Branches
Commits
Tags
Repository graph
Compare revisions
Snippets
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
project
drupal
Commits
45e03ba9
Verified
Commit
45e03ba9
authored
7 months ago
by
Théodore Biadala
Browse files
Options
Downloads
Patches
Plain Diff
Issue
#3469583
by catch, pooja_sharma: Speed up UpdateSemverTestSecurityCoverageTest
(cherry picked from commit
04fcdb47
)
parent
1fd180cf
No related branches found
Branches containing commit
No related tags found
Tags containing commit
2 merge requests
!11185
Issue #3477324 by andypost, alexpott: Fix usage of str_getcsv() and fgetcsv() for PHP 8.4
,
!9944
Issue #3483353: Consider making the createCopy config action optionally fail...
Pipeline
#265881
passed with warnings
7 months ago
Stage: 🪄 Lint
Stage: 🗜️ Test
Pipeline: drupal
#265904
Pipeline: drupal
#265896
Pipeline: drupal
#265893
+1
Changes
1
Pipelines
1
Hide whitespace changes
Inline
Side-by-side
Showing
1 changed file
core/modules/update/tests/src/Functional/UpdateSemverCoreSecurityCoverageTest.php
+11
-5
11 additions, 5 deletions
...s/src/Functional/UpdateSemverCoreSecurityCoverageTest.php
with
11 additions
and
5 deletions
core/modules/update/tests/src/Functional/UpdateSemverCoreSecurityCoverageTest.php
+
11
−
5
View file @
45e03ba9
...
@@ -8,10 +8,18 @@
...
@@ -8,10 +8,18 @@
* Tests the security coverage messages for Drupal core versions.
* Tests the security coverage messages for Drupal core versions.
*
*
* @group update
* @group update
* @group #slow
*/
*/
class
UpdateSemverCoreSecurityCoverageTest
extends
UpdateSemverCoreTestBase
{
class
UpdateSemverCoreSecurityCoverageTest
extends
UpdateSemverCoreTestBase
{
/**
* Tests the security coverage messages for Drupal core versions.
*/
public
function
testSecurityCoverageMessage
():
void
{
foreach
(
static
::
securityCoverageMessageProvider
()
as
$case
)
{
$this
->
doTestSecurityCoverageMessage
(
$case
[
'installed_version'
],
$case
[
'fixture'
],
$case
[
'requirements_section_heading'
],
$case
[
'message'
],
$case
[
'mock_date'
]);
}
}
/**
/**
* Tests the security coverage messages for Drupal core versions.
* Tests the security coverage messages for Drupal core versions.
*
*
...
@@ -26,10 +34,8 @@ class UpdateSemverCoreSecurityCoverageTest extends UpdateSemverCoreTestBase {
...
@@ -26,10 +34,8 @@ class UpdateSemverCoreSecurityCoverageTest extends UpdateSemverCoreTestBase {
* @param string $mock_date
* @param string $mock_date
* The mock date to use if needed in the format CCYY-MM-DD. If an empty
* The mock date to use if needed in the format CCYY-MM-DD. If an empty
* string is provided, no mock date will be used.
* string is provided, no mock date will be used.
*
* @dataProvider securityCoverageMessageProvider
*/
*/
p
ublic
function
t
estSecurityCoverageMessage
(
$installed_version
,
$fixture
,
$requirements_section_heading
,
$message
,
$mock_date
):
void
{
p
rotected
function
doT
estSecurityCoverageMessage
(
$installed_version
,
$fixture
,
$requirements_section_heading
,
$message
,
$mock_date
):
void
{
\Drupal
::
state
()
->
set
(
'update_test.mock_date'
,
$mock_date
);
\Drupal
::
state
()
->
set
(
'update_test.mock_date'
,
$mock_date
);
$this
->
setProjectInstalledVersion
(
$installed_version
);
$this
->
setProjectInstalledVersion
(
$installed_version
);
$this
->
refreshUpdateStatus
([
'drupal'
=>
$fixture
]);
$this
->
refreshUpdateStatus
([
'drupal'
=>
$fixture
]);
...
@@ -76,7 +82,7 @@ public function testSecurityCoverageMessage($installed_version, $fixture, $requi
...
@@ -76,7 +82,7 @@ public function testSecurityCoverageMessage($installed_version, $fixture, $requi
* - 10.4.0
* - 10.4.0
* - 10.5.0
* - 10.5.0
*/
*/
p
ublic
static
function
securityCoverageMessageProvider
()
{
p
rotected
static
function
securityCoverageMessageProvider
()
{
$release_coverage_message
=
'Visit the release cycle overview for more information on supported releases.'
;
$release_coverage_message
=
'Visit the release cycle overview for more information on supported releases.'
;
$coverage_ended_message
=
'Coverage has ended'
;
$coverage_ended_message
=
'Coverage has ended'
;
$update_asap_message
=
'Update to a supported minor as soon as possible to continue receiving security updates.'
;
$update_asap_message
=
'Update to a supported minor as soon as possible to continue receiving security updates.'
;
...
...
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