mirror of
https://github.com/Part-DB/Part-DB-server.git
synced 2025-06-20 17:15:51 +02:00
139 lines
4.4 KiB
YAML
139 lines
4.4 KiB
YAML
name: PHPUnit Tests
|
|
|
|
on:
|
|
push:
|
|
branches:
|
|
- '*'
|
|
- "!l10n_*" # Dont test localization branches
|
|
pull_request:
|
|
branches:
|
|
- '*'
|
|
- "!l10n_*"
|
|
|
|
jobs:
|
|
phpunit:
|
|
name: PHPUnit and coverage Test (PHP ${{ matrix.php-versions }}, ${{ matrix.db-type }})
|
|
# Ubuntu 20.04 ships MySQL 8.0 which causes problems with login, so we just use ubuntu 18.04 for now...
|
|
runs-on: ubuntu-22.04
|
|
|
|
strategy:
|
|
matrix:
|
|
php-versions: [ '7.4', '8.0', '8.1', '8.2' ]
|
|
db-type: [ 'mysql', 'sqlite' ]
|
|
|
|
env:
|
|
# Note that we set DATABASE URL later based on our db-type matrix value
|
|
APP_ENV: test
|
|
SYMFONY_DEPRECATIONS_HELPER: disabled
|
|
PHP_VERSION: ${{ matrix.php-versions }}
|
|
DB_TYPE: ${{ matrix.db-type }}
|
|
|
|
steps:
|
|
- name: Set Database env for MySQL
|
|
run: echo "DATABASE_URL=mysql://root:root@127.0.0.1:3306/test" >> $GITHUB_ENV
|
|
if: matrix.db-type == 'mysql'
|
|
|
|
- name: Set Database env for SQLite
|
|
run: echo "DATABASE_URL="sqlite:///%kernel.project_dir%/var/app_test.db"" >> $GITHUB_ENV
|
|
if: matrix.db-type == 'sqlite'
|
|
|
|
- name: Checkout
|
|
uses: actions/checkout@v3
|
|
|
|
- name: Setup PHP
|
|
uses: shivammathur/setup-php@v2
|
|
with:
|
|
php-version: ${{ matrix.php-versions }}
|
|
coverage: pcov
|
|
extensions: mbstring, intl, gd, xsl, gmp, bcmath
|
|
|
|
- name: Start MySQL
|
|
run: sudo systemctl start mysql.service
|
|
|
|
#- name: Setup MySQL
|
|
# uses: mirromutth/mysql-action@v1.1
|
|
# with:
|
|
# mysql version: 5.7
|
|
# mysql database: 'part-db'
|
|
# mysql root password: '1234'
|
|
|
|
## Setup caches
|
|
|
|
- name: Get Composer Cache Directory
|
|
id: composer-cache
|
|
run: |
|
|
echo "::set-output name=dir::$(composer config cache-files-dir)"
|
|
- uses: actions/cache@v3
|
|
with:
|
|
path: ${{ steps.composer-cache.outputs.dir }}
|
|
key: ${{ runner.os }}-composer-${{ hashFiles('**/composer.lock') }}
|
|
restore-keys: |
|
|
${{ runner.os }}-composer-
|
|
|
|
- name: Get yarn cache directory path
|
|
id: yarn-cache-dir-path
|
|
run: echo "::set-output name=dir::$(yarn cache dir)"
|
|
|
|
- uses: actions/cache@v3
|
|
id: yarn-cache # use this to check for `cache-hit` (`steps.yarn-cache.outputs.cache-hit != 'true'`)
|
|
with:
|
|
path: ${{ steps.yarn-cache-dir-path.outputs.dir }}
|
|
key: ${{ runner.os }}-yarn-${{ hashFiles('**/yarn.lock') }}
|
|
restore-keys: |
|
|
${{ runner.os }}-yarn-
|
|
|
|
- name: Install composer dependencies
|
|
run: composer install --prefer-dist --no-progress
|
|
|
|
- name: Setup node
|
|
uses: actions/setup-node@v3
|
|
with:
|
|
node-version: '18'
|
|
|
|
- name: Install yarn dependencies
|
|
run: yarn install
|
|
|
|
- name: Build frontend
|
|
run: yarn build
|
|
|
|
- name: Create DB
|
|
run: php bin/console --env test doctrine:database:create --if-not-exists -n
|
|
if: matrix.db-type == 'mysql'
|
|
|
|
# Checkinf for existance is not supported for sqlite, so do it without it
|
|
- name: Create DB
|
|
run: php bin/console --env test doctrine:database:create -n
|
|
if: matrix.db-type == 'sqlite'
|
|
|
|
- name: Do migrations
|
|
run: php bin/console --env test doctrine:migrations:migrate -n
|
|
|
|
- name: Load fixtures
|
|
run: php bin/console --env test doctrine:fixtures:load -n --purger reset_autoincrement_purger
|
|
|
|
- name: Run PHPunit and generate coverage
|
|
run: ./bin/phpunit --coverage-clover=coverage.xml
|
|
|
|
- name: Upload coverage
|
|
uses: codecov/codecov-action@v3
|
|
with:
|
|
env_vars: PHP_VERSION,DB_TYPE
|
|
|
|
- name: Test app:clean-attachments
|
|
run: php bin/console partdb:attachments:clean-unused -n
|
|
|
|
- name: Test app:convert-bbcode
|
|
run: php bin/console app:convert-bbcode -n
|
|
|
|
- name: Test app:show-logs
|
|
run: php bin/console app:show-logs -n
|
|
|
|
- name: Test check-requirements command
|
|
run: php bin/console partdb:check-requirements -n
|
|
|
|
- name: Test legacy Part-DB import
|
|
run: echo "DATABASE_URL=mysql://root:root@127.0.0.1:3306/legacy_db" >> $GITHUB_ENV && bash .github/assets/legacy_import/test_legacy_import.sh
|
|
if: matrix.db-type == 'mysql' && matrix.php-versions == '8.2'
|
|
|
|
|
|
|