Skip to content

Commit 6409652

Browse files
authored
Merge pull request #346 from marinaglancy/behatscssdeprecations
Support PHP 8.4; Add option --scss-deprecations for behat
2 parents f31fea1 + 73bb7d7 commit 6409652

13 files changed

+63
-28
lines changed

.github/workflows/test.yml

+5-4
Original file line numberDiff line numberDiff line change
@@ -75,7 +75,7 @@ jobs:
7575
fail-fast: false
7676
matrix:
7777
include:
78-
- php: '8.3'
78+
- php: '8.4'
7979
moodle-branch: 'main'
8080
moodle-app: 'true'
8181
- php: '8.3'
@@ -152,7 +152,7 @@ jobs:
152152
moodle-plugin-ci phpdoc
153153
moodle-plugin-ci phpunit --verbose --coverage-text --fail-on-warning
154154
moodle-plugin-ci behat --profile default
155-
moodle-plugin-ci behat --profile chrome
155+
moodle-plugin-ci behat --profile chrome --scss-deprecations
156156
moodle-plugin-ci behat --profile firefox --tags="@local_ci&&~@app"
157157
158158
buildphar:
@@ -202,7 +202,7 @@ jobs:
202202
matrix:
203203
include:
204204
# Each supported PHP version once. That's enough.
205-
- php: '8.3'
205+
- php: '8.4'
206206
moodle-branch: 'main'
207207
moodle-app: 'true'
208208
- php: '8.3'
@@ -279,7 +279,7 @@ jobs:
279279
php build/moodle-plugin-ci.phar phpdoc
280280
php build/moodle-plugin-ci.phar phpunit --verbose --coverage-text --fail-on-warning
281281
php build/moodle-plugin-ci.phar behat --profile default
282-
php build/moodle-plugin-ci.phar behat --profile chrome
282+
php build/moodle-plugin-ci.phar behat --profile chrome --scss-deprecations
283283
php build/moodle-plugin-ci.phar behat --profile firefox --tags="@local_ci&&~@app"
284284
285285
selfupdatetest:
@@ -294,6 +294,7 @@ jobs:
294294
matrix:
295295
include:
296296
# Each supported PHP version once. That's enough.
297+
- php: '8.4'
297298
- php: '8.3'
298299
- php: '8.2'
299300
- php: '8.1'

.travis.dist.yml

+6-6
Original file line numberDiff line numberDiff line change
@@ -3,11 +3,11 @@ language: php
33
dist: focal
44

55
addons:
6-
postgresql: "13"
6+
postgresql: "14"
77
apt:
88
packages:
9-
- postgresql-13
10-
- postgresql-client-13
9+
- postgresql-14
10+
- postgresql-client-14
1111
- libonig5
1212

1313
services:
@@ -21,13 +21,13 @@ cache:
2121

2222
php:
2323
- 7.4
24-
- 8.0
2524
- 8.1
25+
- 8.3
2626

2727
env:
2828
global:
29-
- PGVER=13
30-
- MOODLE_BRANCH=MOODLE_402_STABLE
29+
- PGVER=14
30+
- MOODLE_BRANCH=MOODLE_405_STABLE
3131
# Uncomment this to run Behat tests using the Moodle App.
3232
# - MOODLE_APP=true
3333
matrix:

.travis.yml

+4-4
Original file line numberDiff line numberDiff line change
@@ -3,11 +3,11 @@ language: php
33
dist: focal
44

55
addons:
6-
postgresql: "13"
6+
postgresql: "14"
77
apt:
88
packages:
9-
- postgresql-13
10-
- postgresql-client-13
9+
- postgresql-14
10+
- postgresql-client-14
1111
- libonig5
1212

1313
services:
@@ -21,7 +21,7 @@ cache:
2121

2222
env:
2323
global:
24-
- PGVER=13
24+
- PGVER=14
2525
- IGNORE_PATHS=ignore
2626
- IGNORE_NAMES=ignore_name.php
2727
- MUSTACHE_IGNORE_NAMES=broken.mustache

docs/CHANGELOG.md

+6
Original file line numberDiff line numberDiff line change
@@ -8,6 +8,12 @@ This project adheres to [Semantic Versioning](https://semver.org/).
88

99
The format of this change log follows the advice given at [Keep a CHANGELOG](https://keepachangelog.com).
1010

11+
## [Unreleased]
12+
### Added
13+
- Allow to run with PHP 8.4 (supported in Moodle 5.0)
14+
- New `--scss-deprecations` option added to the `behat` command
15+
- Updated travis.yml and the recommendations to run travis with Postgres 14
16+
1117
## [4.5.6] - 2025-01-31
1218
### Fixed
1319
- Removed the PHPUnit --verbose option to comply with Moodle 5.0

docs/CLI.md

+10
Original file line numberDiff line numberDiff line change
@@ -347,6 +347,16 @@ Print contents of Behat failure HTML files
347347
* Is negatable: no
348348
* Default: `false`
349349

350+
#### `--scss-deprecations`
351+
352+
Enable SCSS deprecation checks
353+
354+
* Accept value: no
355+
* Is value required: no
356+
* Is multiple: no
357+
* Is negatable: no
358+
* Default: `false`
359+
350360
#### `--help|-h`
351361

352362
Display help for the given command. When no command is given display help for the list command

docs/TravisFileExplained.md

+9-9
Original file line numberDiff line numberDiff line change
@@ -16,11 +16,11 @@ dist: focal
1616

1717
# Installs the updated version of PostgreSQL and extra APT packages.
1818
addons:
19-
postgresql: "13"
19+
postgresql: "14"
2020
apt:
2121
packages:
22-
- postgresql-13
23-
- postgresql-client-13
22+
- postgresql-14
23+
- postgresql-client-14
2424
- libonig5
2525

2626
# Ensure DB and docker services are running.
@@ -40,7 +40,7 @@ cache:
4040
php:
4141
- 7.4
4242
- 8.0
43-
- 8.1
43+
- 8.3
4444

4545
# This section sets up the environment variables for the build.
4646
env:
@@ -49,9 +49,9 @@ env:
4949
# used, because, for PG 11 and up, both the user and the port were
5050
# changed by Travis. With that variable, the tool will switch to
5151
# socketed connections instead of localhost ones.
52-
- PGVER=13
52+
- PGVER=14
5353
# This line determines which version branch of Moodle to test against.
54-
- MOODLE_BRANCH=MOODLE_402_STABLE
54+
- MOODLE_BRANCH=MOODLE_405_STABLE
5555
# Uncomment this to run Behat tests using the Moodle App.
5656
# - MOODLE_APP=true
5757

@@ -78,9 +78,9 @@ env:
7878
#
7979
# jobs:
8080
# include:
81-
# - php: 8.0
82-
# env: MOODLE_BRANCH=MOODLE_401_STABLE DB=pgsql
83-
# - php: 8.0
81+
# - php: 8.3
82+
# env: MOODLE_BRANCH=MOODLE_405_STABLE DB=pgsql
83+
# - php: 8.1
8484
# env: MOODLE_BRANCH=MOODLE_400_STABLE DB=pgsql
8585
# - php: 7.4
8686
# env: MOODLE_BRANCH=MOODLE_311_STABLE DB=mysqli

gha.dist.yml

+1-1
Original file line numberDiff line numberDiff line change
@@ -106,7 +106,7 @@ jobs:
106106
- name: Behat features
107107
id: behat
108108
if: ${{ !cancelled() }}
109-
run: moodle-plugin-ci behat --profile chrome
109+
run: moodle-plugin-ci behat --profile chrome --scss-deprecations
110110

111111
- name: Upload Behat Faildump
112112
if: ${{ failure() && steps.behat.outcome == 'failure' }}

res/template/config.php.txt

+1-1
Original file line numberDiff line numberDiff line change
@@ -22,7 +22,7 @@ $CFG->admin = 'admin';
2222
$CFG->directorypermissions = 02777;
2323

2424
// Show debugging messages.
25-
$CFG->debug = (E_ALL | E_STRICT);
25+
$CFG->debug = PHP_VERSION_ID >= 80000 ? E_ALL : E_ALL | E_STRICT;
2626
$CFG->debugdisplay = 1;
2727

2828
// No emails.

src/Command/BehatCommand.php

+11
Original file line numberDiff line numberDiff line change
@@ -48,6 +48,7 @@ protected function configure(): void
4848
->addOption('auto-rerun', null, InputOption::VALUE_REQUIRED, 'Number of times to rerun failures', 2)
4949
->addOption('selenium', null, InputOption::VALUE_REQUIRED, 'Selenium Docker image')
5050
->addOption('dump', null, InputOption::VALUE_NONE, 'Print contents of Behat failure HTML files')
51+
->addOption('scss-deprecations', null, InputOption::VALUE_NONE, 'Enable SCSS deprecation checks')
5152
->setDescription('Run Behat on a plugin');
5253
}
5354

@@ -72,6 +73,16 @@ protected function execute(InputInterface $input, OutputInterface $output): int
7273

7374
$servers && $this->startServerProcesses($input);
7475

76+
if ($input->getOption('scss-deprecations')) {
77+
$enableprocess = new Process([
78+
'php', 'admin/tool/behat/cli/util_single_run.php',
79+
'--enable',
80+
'--add-core-features-to-theme',
81+
'--scss-deprecations',
82+
], $this->moodle->directory, null, null, null);
83+
$this->execute->passThroughProcess($enableprocess);
84+
}
85+
7586
$cmd = [
7687
'php', 'admin/tool/behat/cli/run.php',
7788
'--profile=' . $input->getOption('profile'),

tests/Command/BehatCommandTest.php

+7
Original file line numberDiff line numberDiff line change
@@ -127,6 +127,13 @@ public function testExecuteWithName()
127127
$this->assertMatchesRegularExpression("/{$expectedName}/", $this->lastCmd);
128128
}
129129

130+
public function testExecuteWithScssDeprecations()
131+
{
132+
$commandTester = $this->executeCommand(null, null, ['--scss-deprecations' => true]);
133+
$this->assertSame(0, $commandTester->getStatusCode());
134+
$this->assertMatchesRegularExpression('/--scss-deprecations/', $this->allCmds[0]);
135+
}
136+
130137
public function testExecuteNoFeatures()
131138
{
132139
$this->fs->remove($this->pluginDir . '/tests/behat');

tests/Fixture/example-config-with-chrome-capabilities.php

+1-1
Original file line numberDiff line numberDiff line change
@@ -22,7 +22,7 @@
2222
$CFG->directorypermissions = 02777;
2323

2424
// Show debugging messages.
25-
$CFG->debug = (E_ALL | E_STRICT);
25+
$CFG->debug = PHP_VERSION_ID >= 80000 ? E_ALL : E_ALL | E_STRICT;
2626
$CFG->debugdisplay = 1;
2727

2828
// No emails.

tests/Fixture/example-config-with-firefox-capabilities.php

+1-1
Original file line numberDiff line numberDiff line change
@@ -22,7 +22,7 @@
2222
$CFG->directorypermissions = 02777;
2323

2424
// Show debugging messages.
25-
$CFG->debug = (E_ALL | E_STRICT);
25+
$CFG->debug = PHP_VERSION_ID >= 80000 ? E_ALL : E_ALL | E_STRICT;
2626
$CFG->debugdisplay = 1;
2727

2828
// No emails.

tests/Fixture/example-config.php

+1-1
Original file line numberDiff line numberDiff line change
@@ -22,7 +22,7 @@
2222
$CFG->directorypermissions = 02777;
2323

2424
// Show debugging messages.
25-
$CFG->debug = (E_ALL | E_STRICT);
25+
$CFG->debug = PHP_VERSION_ID >= 80000 ? E_ALL : E_ALL | E_STRICT;
2626
$CFG->debugdisplay = 1;
2727

2828
// No emails.

0 commit comments

Comments
 (0)