Reduce memory consumption of simulate query feature #421
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| name: "End-to-End tests" | |
| on: | |
| push: | |
| pull_request: | |
| types: [opened, synchronize, reopened] | |
| branches: | |
| - master | |
| - QA_** | |
| permissions: | |
| contents: read | |
| env: | |
| php-version: "7.2" | |
| node-version: "12" | |
| jobs: | |
| generate-matrix: | |
| name: Generate the matrix of Selenium tests | |
| if: "!contains(github.event.head_commit.message, '[ci selenium skip]')" | |
| runs-on: ubuntu-latest | |
| outputs: | |
| tests: ${{ steps.tests-list.outputs.tests }} | |
| steps: | |
| - name: Checkout code | |
| uses: actions/checkout@v6 | |
| - id: tests-list | |
| name: Send test names to outputs | |
| run: | | |
| set -euo pipefail | |
| TEST_NAMES="[$(find $PWD/test/selenium/ -type f -name '*Test.php' -print |sed -E "s,$PWD/test/selenium/(.*)Test.php,{\"test-name\": \"\1\"}," | paste -sd ",")]" | |
| echo "tests=$(printf "$TEST_NAMES")" >> $GITHUB_OUTPUT | |
| selenium: | |
| name: "Selenium" | |
| if: "!contains(github.event.head_commit.message, '[ci selenium skip]')" | |
| needs: generate-matrix | |
| runs-on: "ubuntu-latest" | |
| services: | |
| database-server: | |
| image: "mysql:5.7" | |
| env: | |
| MYSQL_ROOT_PASSWORD: testbench | |
| ports: | |
| - "3306:3306" | |
| options: >- | |
| --health-cmd="mysqladmin ping" | |
| --health-interval=10s | |
| --health-timeout=5s | |
| --health-retries=3 | |
| selenium-server: | |
| image: selenium/standalone-chrome:4 | |
| volumes: | |
| - /dev/shm:/dev/shm | |
| options: >- | |
| --health-cmd "/opt/bin/check-grid.sh" | |
| env: | |
| SCREEN_WIDTH: 1920 | |
| SCREEN_HEIGHT: 1080 | |
| ports: | |
| - "4444:4444" | |
| docker-host-bridge: | |
| # Allow accessing localhost ports from docker containers. | |
| # See https://github.com/qoomon/docker-host | |
| image: qoomon/docker-host | |
| options: >- | |
| --name docker-host-bridge | |
| --hostname docker-host-bridge | |
| --add-host docker-host-bridge:127.0.0.1 | |
| --cap-add=NET_ADMIN | |
| --cap-add=NET_RAW | |
| --restart on-failure | |
| strategy: | |
| fail-fast: false | |
| matrix: | |
| include: ${{ fromJSON(needs.generate-matrix.outputs.tests) }} | |
| steps: | |
| - name: Checkout code | |
| uses: actions/checkout@v6 | |
| - name: Install gettext | |
| run: sudo apt-get update && sudo apt-get install -y gettext | |
| - name: Generate mo files | |
| run: ./scripts/generate-mo --quiet | |
| - name: Set up PHP ${{ env.php-version }} | |
| uses: shivammathur/setup-php@v2 | |
| with: | |
| coverage: "none" | |
| php-version: ${{ env.php-version }} | |
| extensions: :opcache, mbstring, iconv, mysqli, zip, gd, bz2 | |
| - name: Install Composer dependencies | |
| uses: ramsey/composer-install@v3 | |
| - name: Set up Node | |
| uses: actions/setup-node@v6 | |
| with: | |
| node-version: '${{ env.node-version }}' | |
| cache: 'yarn' | |
| - name: Install modules | |
| run: yarn install --non-interactive --production | |
| - name: Copy the config | |
| run: cp test/config.e2e.inc.php config.inc.php | |
| - name: Start server | |
| env: | |
| CI_MODE: selenium | |
| FPM_PATH: php-fpm${{ env.php-version }} | |
| SKIP_STANDALONE: 1 | |
| run: | | |
| sudo chown -R runner:docker /var/lib/nginx/ | |
| sudo chown -R runner:docker /var/log/nginx/ | |
| ./test/start-local-server | |
| echo "SELENIUM_TEMPDIR=$(cat /tmp/last_temp_dir_phpMyAdminTests)" >> $GITHUB_OUTPUT | |
| id: start-local-server | |
| - name: Run Selenium tests | |
| env: | |
| CI_MODE: selenium | |
| TESTSUITE_SELENIUM_BROWSER: chrome | |
| TESTSUITE_USER: root | |
| TESTSUITE_PASSWORD: testbench | |
| # Port defined in test/nginx.conf | |
| TESTSUITE_URL: http://docker-host-bridge:8000 | |
| TESTSUITE_DATABASE_PREFIX: "selenium" | |
| TESTSUITE_SELENIUM_HOST: "127.0.0.1" | |
| TESTSUITE_SELENIUM_PORT: "4444" | |
| run: ./vendor/bin/phpunit --testsuite selenium --no-logging --no-coverage --stop-on-skipped --testdox test/selenium/${{ matrix.test-name }}Test.php | |
| - name: Output logs and stop server | |
| env: | |
| CI_MODE: selenium | |
| SELENIUM_TEMPDIR: ${{ steps.start-local-server.outputs.SELENIUM_TEMPDIR }} | |
| if: ${{ success() || failure() }} | |
| run: | | |
| if [ -f "${SELENIUM_TEMPDIR}/php.log" ] ; then cat "${SELENIUM_TEMPDIR}/php.log" ; fi | |
| if [ -f "${SELENIUM_TEMPDIR}/nginx-error.log" ] ; then cat "${SELENIUM_TEMPDIR}/nginx-error.log" ; fi | |
| ./test/stop-local-server | |
| - name: Upload screenshots | |
| uses: actions/upload-artifact@v6 | |
| if: ${{ failure() }} | |
| with: | |
| name: selenium-screenshots-${{ strategy.job-index }} | |
| path: ${{ github.workspace }}/build/selenium/**/* | |
| retention-days: 3 |