|
| 1 | +name: Tests |
| 2 | +on: |
| 3 | + push: |
| 4 | + pull_request: |
| 5 | + branches: [ 1.x ] |
| 6 | +env: |
| 7 | + SIMPLETEST_DB: "mysql://drupal:drupal@mariadb:3306/drupal" |
| 8 | + SIMPLETEST_BASE_URL: "http://127.0.0.1:8080" |
| 9 | + DRUPAL_MODULE_NAME: "iiif_media_source" |
| 10 | +jobs: |
| 11 | + |
| 12 | + test: |
| 13 | + runs-on: ubuntu-latest |
| 14 | + strategy: |
| 15 | + fail-fast: false |
| 16 | + matrix: |
| 17 | + drupal-core: ['10.1.x', '10.2.x'] |
| 18 | + php-version: ['8.1', '8.2', '8.3'] |
| 19 | + mariadb-version: ['10.4', '10.6'] |
| 20 | + exclude: |
| 21 | + - |
| 22 | + drupal-core: '10.1.x' |
| 23 | + php-version: '8.0' |
| 24 | + mariadb-version: '10.4' |
| 25 | + - |
| 26 | + drupal-core: '10.1.x' |
| 27 | + php-version: '8.0' |
| 28 | + mariadb-version: '10.6' |
| 29 | + - |
| 30 | + drupal-core: '10.2.x' |
| 31 | + php-version: '8.0' |
| 32 | + mariadb-version: '10.4' |
| 33 | + - |
| 34 | + drupal-core: '10.2.x' |
| 35 | + php-version: '8.0' |
| 36 | + mariadb-version: '10.6' |
| 37 | + |
| 38 | + container: |
| 39 | + # See https://github.com/tuutti/docker-images/tree/main/drupal/ci |
| 40 | + # to see how this image is built. |
| 41 | + image: ghcr.io/tuutti/drupal-php-docker:${{ matrix.php-version }} |
| 42 | + services: |
| 43 | + mariadb: |
| 44 | + image: mariadb:${{ matrix.mariadb-version }} |
| 45 | + env: |
| 46 | + MYSQL_USER: drupal |
| 47 | + MYSQL_PASSWORD: drupal |
| 48 | + MYSQL_DATABASE: drupal |
| 49 | + MYSQL_ROOT_PASSWORD: drupal |
| 50 | + ports: |
| 51 | + - 3306:3306 |
| 52 | + |
| 53 | + steps: |
| 54 | + - uses: actions/checkout@v3 |
| 55 | + with: |
| 56 | + fetch-depth: 1 |
| 57 | + |
| 58 | + # The next two steps exposes $DRUPAL_ROOT and $MODULE_FOLDER environment |
| 59 | + # variables. |
| 60 | + # |
| 61 | + # They have to be set in separate steps because $DRUPAL_ROOT variable |
| 62 | + # won't be accessible in currently active step. |
| 63 | + # You can access them either with $DRUPAL_ROOT and $MODULE_FOLDER or |
| 64 | + # ${{ env.DRUPAL_ROOT }} and ${{ env.MODULE_FOLDER }}. |
| 65 | + - name: Define DRUPAL_ROOT env variable |
| 66 | + run: echo "DRUPAL_ROOT=$HOME/drupal" >> $GITHUB_ENV |
| 67 | + |
| 68 | + # Change the module folder according to your needs, it's probably either |
| 69 | + # modules/contrib/$DRUPAL_MODULE_NAME or modules/custom/$DRUPAL_MODULE_NAME. |
| 70 | + - name: Set module folder |
| 71 | + run: | |
| 72 | + echo "MODULE_FOLDER=$DRUPAL_ROOT/modules/contrib/$DRUPAL_MODULE_NAME" \ |
| 73 | + >> $GITHUB_ENV |
| 74 | +
|
| 75 | + # Clone Drupal core into $DRUPAL_ROOT folder. |
| 76 | + # Core version can be set by changing $DRUPAL_CORE_VERSION. |
| 77 | + - name: Clone drupal |
| 78 | + run: | |
| 79 | + git clone --depth 1 --branch "${{ matrix.drupal-core }}" \ |
| 80 | + http://git.drupal.org/project/drupal.git/ $DRUPAL_ROOT |
| 81 | +
|
| 82 | + # Override the platform.php config with currently active PHP version. |
| 83 | + # As of writing this, the composer.json shipped with core sets |
| 84 | + # platform.php version to 7.3.0, meaning we possibly get dependencies |
| 85 | + # that won't work with php 8+. |
| 86 | + - name: Override the platform.php version |
| 87 | + working-directory: ${{ env.DRUPAL_ROOT }} |
| 88 | + run: composer config platform.php ${{ matrix.php-version }} |
| 89 | + |
| 90 | + # Set the module folder as a composer repository, so the latest code |
| 91 | + # is symlinked from $GITHUB_WORKSPACE to modules/ folder. |
| 92 | + - name: Install the module |
| 93 | + working-directory: ${{ env.DRUPAL_ROOT }} |
| 94 | + run: | |
| 95 | + composer config --no-plugins allow-plugins.oomphinc/composer-installers-extender true |
| 96 | + composer config repositories.$DRUPAL_MODULE_NAME '{"type": "path", "url": "$GITHUB_WORKSPACE", "options": {"symlink": true}}' |
| 97 | + composer config extra.installer-paths |
| 98 | + composer require mglaman/drupal-check --dev |
| 99 | + composer require drupal/devel |
| 100 | + composer require pingevt/$DRUPAL_MODULE_NAME |
| 101 | +
|
| 102 | + # PHP 8+ requires newer phpunit, use core's composer script |
| 103 | + # to upgrade it. |
| 104 | + - name: Upgrade phpunit |
| 105 | + working-directory: ${{ env.DRUPAL_ROOT }} |
| 106 | + run: composer run-script drupal-phpunit-upgrade |
| 107 | + |
| 108 | + # We use drush's build-in webserver to run tests. Make sure |
| 109 | + # Drush is installed. |
| 110 | + - name: Install drush |
| 111 | + working-directory: ${{ env.DRUPAL_ROOT }} |
| 112 | + run: composer require "drush/drush ^11.0 || ^12" |
| 113 | + |
| 114 | + - name: Install PHPCS |
| 115 | + working-directory: ${{ env.DRUPAL_ROOT }} |
| 116 | + run: | |
| 117 | + composer config --no-plugins allow-plugins.dealerdirect/phpcodesniffer-composer-installer true |
| 118 | + composer require --dev "drupal/coder" |
| 119 | +
|
| 120 | + # Install Drupal using minimal installation profile and enable the module. |
| 121 | + - name: Install Drupal |
| 122 | + working-directory: ${{ env.DRUPAL_ROOT }} |
| 123 | + run: | |
| 124 | + php -d sendmail_path=$(which true); vendor/bin/drush --yes -v \ |
| 125 | + site-install minimal --db-url="$SIMPLETEST_DB" |
| 126 | + vendor/bin/drush en $DRUPAL_MODULE_NAME -y |
| 127 | +
|
| 128 | + - name: Run PHPCS |
| 129 | + working-directory: ${{ env.DRUPAL_ROOT }} |
| 130 | + continue-on-error: true |
| 131 | + run: | |
| 132 | + vendor/bin/phpcs --config-set ignore_warnings_on_exit 1 |
| 133 | + vendor/bin/phpcs --config-set ignore_errors_on_exit 1 |
| 134 | + vendor/bin/phpcs -s --standard=Drupal --extensions=php,module,inc,install,test,profile,theme,css,info,txt --ignore=node_modules,bower_components,vendor,dist --exclude=Drupal.InfoFiles.AutoAddedKeys --colors $MODULE_FOLDER |
| 135 | + vendor/bin/phpcs -s --standard=DrupalPractice --extensions=php,module,inc,install,test,profile,theme,css,info,txt --ignore=node_modules,bower_components,vendor,dist --exclude=Drupal.InfoFiles.AutoAddedKeys --colors $MODULE_FOLDER |
| 136 | +
|
| 137 | + - name: Run Drupal-Check |
| 138 | + working-directory: ${{ env.DRUPAL_ROOT }} |
| 139 | + continue-on-error: true |
| 140 | + run: | |
| 141 | + php vendor/bin/drupal-check $MODULE_FOLDER --drupal-root ${{ env.DRUPAL_ROOT }} |
| 142 | +
|
| 143 | + - name: Start Drush webserver and chromedriver |
| 144 | + working-directory: ${{ env.DRUPAL_ROOT }} |
| 145 | + run: | |
| 146 | + vendor/bin/drush runserver $SIMPLETEST_BASE_URL > /dev/null 2>&1 & |
| 147 | + chromedriver --port=4444 > /dev/null 2>&1 & |
| 148 | + # Wait for drush server to start. |
| 149 | + for i in {1..5}; do \ |
| 150 | + RESPONSE_CODE=$(curl -s -o /dev/null \ |
| 151 | + -w "%{http_code}" "$SIMPLETEST_BASE_URL" || true); \ |
| 152 | + if [ "$RESPONSE_CODE" -gt "301" ] || [ "$RESPONSE_CODE" -lt "200" ]; \ |
| 153 | + then sleep 2; fi; done |
| 154 | +
|
| 155 | + # Chromium browser is required to run functional javascript tests. |
| 156 | + # You can remove or uncomment this step if you don't have any functional |
| 157 | + # js tests. |
| 158 | + - name: Start chromium-browser |
| 159 | + working-directory: ${{ env.DRUPAL_ROOT }} |
| 160 | + run: | |
| 161 | + chromium-browser --headless --disable-gpu \ |
| 162 | + --no-sandbox \ |
| 163 | + --remote-debugging-port=9222 & |
| 164 | +
|
| 165 | + # Run tests using core's run-tests.sh script. See the example below |
| 166 | + # to run tests using phpunit. |
| 167 | + # - name: Run tests |
| 168 | + # working-directory: ${{ env.DRUPAL_ROOT }} |
| 169 | + # run: | |
| 170 | + # php ./core/scripts/run-tests.sh --dburl $SIMPLETEST_DB \ |
| 171 | + # --php /usr/local/bin/php --color --verbose \ |
| 172 | + # --sqlite /tmp/test.sqlite \ |
| 173 | + # --url $SIMPLETEST_BASE_URL $DRUPAL_MODULE_NAME |
| 174 | + |
| 175 | + # Uncomment this step to run tests using phpunit. Your module is expected |
| 176 | + # to ship with 'phpunit.xml' file. See the repository for an example |
| 177 | + # phpunit.xml file. |
| 178 | + - name: Run tests |
| 179 | + working-directory: ${{ env.DRUPAL_ROOT }} |
| 180 | + continue-on-error: true |
| 181 | + run: | |
| 182 | + touch drupal_debug.txt |
| 183 | + vendor/bin/phpunit --bootstrap $DRUPAL_ROOT/core/tests/bootstrap.php -c $MODULE_FOLDER/phpunit.xml $MODULE_FOLDER |
| 184 | +
|
| 185 | + - name: Print debug file |
| 186 | + working-directory: ${{ env.DRUPAL_ROOT }} |
| 187 | + continue-on-error: true |
| 188 | + run: | |
| 189 | + ls -sla |
| 190 | + cat drupal_debug.txt |
0 commit comments