Skip to content

Commit

Permalink
Update App config defaults
Browse files Browse the repository at this point in the history
  • Loading branch information
NoelDeMartin committed Jul 1, 2024
1 parent 30f6347 commit 0f5aebe
Show file tree
Hide file tree
Showing 6 changed files with 31 additions and 10 deletions.
14 changes: 12 additions & 2 deletions .github/workflows/test.yml
Original file line number Diff line number Diff line change
Expand Up @@ -77,14 +77,19 @@ jobs:
include:
- php: '8.3'
moodle-branch: 'main'
moodle-app: 'true'
- php: '8.3'
moodle-branch: 'MOODLE_404_STABLE'
moodle-app: 'true'
- php: '8.2'
moodle-branch: 'MOODLE_403_STABLE'
moodle-app: 'true'
- php: '8.2'
moodle-branch: 'MOODLE_402_STABLE'
moodle-app: 'true'
- php: '8.1'
moodle-branch: 'MOODLE_401_STABLE'
moodle-app: 'true'
- php: '8.0'
moodle-branch: 'MOODLE_400_STABLE'
- php: '8.0'
Expand Down Expand Up @@ -126,7 +131,7 @@ jobs:
IGNORE_PATHS: 'ignore'
IGNORE_NAMES: 'ignore_name.php'
MUSTACHE_IGNORE_NAMES: 'broken.mustache'
MOODLE_APP: 'true'
MOODLE_APP: ${{ matrix.moodle-app }}

- name: Run Integration tests
env:
Expand Down Expand Up @@ -196,14 +201,19 @@ jobs:
# Each supported PHP version once. That's enough.
- php: '8.3'
moodle-branch: 'main'
moodle-app: 'true'
- php: '8.3'
moodle-branch: 'MOODLE_404_STABLE'
moodle-app: 'true'
- php: '8.2'
moodle-branch: 'MOODLE_403_STABLE'
moodle-app: 'true'
- php: '8.1'
moodle-branch: 'MOODLE_402_STABLE'
moodle-app: 'true'
- php: '8.0'
moodle-branch: 'MOODLE_401_STABLE'
moodle-app: 'true'
- php: '7.4'
moodle-branch: 'MOODLE_400_STABLE'

Expand Down Expand Up @@ -245,7 +255,7 @@ jobs:
IGNORE_PATHS: 'ignore'
IGNORE_NAMES: 'ignore_name.php'
MUSTACHE_IGNORE_NAMES: 'broken.mustache'
MOODLE_APP: 'true'
MOODLE_APP: ${{ matrix.moodle-app }}

- name: Run Integration tests (PHAR)
env:
Expand Down
10 changes: 7 additions & 3 deletions .travis.yml
Original file line number Diff line number Diff line change
Expand Up @@ -46,7 +46,7 @@ before_install:
fi
install:
- MOODLE_APP=true moodle-plugin-ci install -vvv
- moodle-plugin-ci install -vvv

script:
# This is basically "integration" testing.
Expand Down Expand Up @@ -91,10 +91,14 @@ jobs:
if: env(MOODLE_BRANCH) IS present
# Only main with highest supported PHP version.
- php: 8.3
env: MOODLE_BRANCH=main
env:
- MOODLE_BRANCH=main
- MOODLE_APP=true
# Last stable with highest supported PHP version.
- php: 8.3
env: MOODLE_BRANCH=MOODLE_404_STABLE
env:
- MOODLE_BRANCH=MOODLE_404_STABLE
- MOODLE_APP=true
# And older stable supported (with lowest supported PHP version).
- php: 7.4
env: MOODLE_BRANCH=MOODLE_39_STABLE
4 changes: 3 additions & 1 deletion docs/MoodleApp.md
Original file line number Diff line number Diff line change
Expand Up @@ -11,7 +11,9 @@ In practice, you only need to set the `MOODLE_APP` env variable to `true`, and a
- `MOODLE_APP_BEHAT_PLUGIN_PROJECT`: Project in github to use for installing the plugin with Behat steps specific to the Moodle App. The default value is `moodlehq/moodle-local_moodleappbehat`. This variable will be ignored if `MOODLE_APP_BEHAT_PLUGIN_REPOSITORY` is set.
- `MOODLE_APP_BEHAT_PLUGIN_REPOSITORY`: Repository url to use for installing the plugin with Behat steps specific to the Moodle App. By default, the github repository defined in `MOODLE_APP_BEHAT_PLUGIN_PROJECT` will be used.
- `MOODLE_APP_BEHAT_PLUGIN_BRANCH`: Branch of the repository to use for installing the plugin with Behat steps specific to the Moodle App. The default value is `latest`.
- `MOODLE_BEHAT_IONIC_WWWROOT`: Value to use in `$CFG->behat_ionic_wwwroot`. The default value is `http://localhost:8100`. This value should only be used if `MOODLE_APP` is not set, and the Moodle App dependencies are configured manually.
- `MOODLE_APP_PORT`: Port to listen in the Docker image. The default value is `443`, but you may need to set it to `80` for older versions of the app.
- `MOODLE_APP_PROTOCOL`: Protocol to use when interaction with the app. The default value is `https`, but you may need to set it to `http` for older versions of the app.
- `MOODLE_BEHAT_IONIC_WWWROOT`: Value to use in `$CFG->behat_ionic_wwwroot`. The default value is `https://localhost:8100` (or `http://localhost:8100` if `MOODLE_APP_PROTOCOL` is set to `http`). This value should only be used if `MOODLE_APP` is not set, and the Moodle App dependencies are configured manually.

Finally, keep in mind that mobile tests only run on Chrome, so make sure that you're using the correct browser. If you're setting the `MOODLE_APP` variable, the default browser should already be Chrome; but you can set it explicitly using the `--profile` flag otherwise.

Expand Down
8 changes: 6 additions & 2 deletions src/Bridge/MoodleConfig.php
Original file line number Diff line number Diff line change
Expand Up @@ -32,10 +32,14 @@ class MoodleConfig
*/
public function createContents(AbstractDatabase $database, string $dataDir): string
{
$chromeinsecureargs = "['--ignore-certificate-errors', '--allow-running-insecure-content']";
$chromeinsecurecapabilities = "['extra_capabilities' => ['chromeOptions' => ['args' => $chromeinsecureargs]]]";

$template = file_get_contents(__DIR__ . '/../../res/template/config.php.txt');
$behatdefaultbrowser = getenv('MOODLE_BEHAT_DEFAULT_BROWSER') ?: (getenv('MOODLE_APP') ? 'chrome' : 'firefox');
$behatchromecapabilities = getenv('MOODLE_BEHAT_CHROME_CAPABILITIES') ?: '[]';
$behatchromecapabilities = getenv('MOODLE_BEHAT_CHROME_CAPABILITIES') ?: (getenv('MOODLE_APP') ? $chromeinsecurecapabilities : '[]');
$behatfirefoxcapabilities = getenv('MOODLE_BEHAT_FIREFOX_CAPABILITIES') ?: '[]';
$appprotocol = getenv('MOODLE_APP_PROTOCOL') ?: 'https';
$variables = [
'{{DBTYPE}}' => $database->type,
'{{DBLIBRARY}}' => $database->library,
Expand All @@ -52,7 +56,7 @@ public function createContents(AbstractDatabase $database, string $dataDir): str
'{{BEHATWWWROOT}}' => getenv('MOODLE_BEHAT_WWWROOT') ?: 'http://localhost:8000',
'{{BEHATWDHOST}}' => getenv('MOODLE_BEHAT_WDHOST') ?: 'http://localhost:4444/wd/hub',
'{{BEHATDEFAULTBROWSER}}' => $behatdefaultbrowser,
'{{BEHATIONICWWWROOT}}' => getenv('MOODLE_APP') ? 'http://localhost:8100' : (getenv('MOODLE_BEHAT_IONIC_WWWROOT') ?: ''),
'{{BEHATIONICWWWROOT}}' => getenv('MOODLE_APP') ? "$appprotocol://localhost:8100" : (getenv('MOODLE_BEHAT_IONIC_WWWROOT') ?: ''),
'{{BEHATDEFAULTCAPABILITIES}}' => $behatdefaultbrowser === 'chrome' ? $behatchromecapabilities : $behatfirefoxcapabilities,
'{{BEHATCHROMECAPABILITIES}}' => $behatchromecapabilities,
'{{BEHATFIREFOXCAPABILITIES}}' => $behatfirefoxcapabilities,
Expand Down
2 changes: 1 addition & 1 deletion src/Command/BehatCommand.php
Original file line number Diff line number Diff line change
Expand Up @@ -212,7 +212,7 @@ private function getSeleniumImage(InputInterface $input, string $profile): strin
}

if ($profile === 'chrome') {
return 'selenium/standalone-chrome:3';
return getenv('MOODLE_APP') ? 'selenium/standalone-chrome:120.0' : 'selenium/standalone-chrome:3';
}

if ($this->usesLegacyPhpWebdriver()) {
Expand Down
3 changes: 2 additions & 1 deletion src/Installer/MoodleAppInstaller.php
Original file line number Diff line number Diff line change
Expand Up @@ -39,6 +39,7 @@ public function install(): void
$this->getOutput()->step('Launch Moodle App docker image');

$image = getenv('MOODLE_APP_DOCKER_IMAGE') ?: 'moodlehq/moodleapp:latest-test';
$port = getenv('MOODLE_APP_PORT') ?: '443';

$this->execute->mustRun([
'docker',
Expand All @@ -47,7 +48,7 @@ public function install(): void
'--rm',
'--name=moodleapp',
'-p',
'8100:80',
"8100:$port",
$image,
]);

Expand Down

0 comments on commit 0f5aebe

Please sign in to comment.