COMCL-651: Resolve issue while creating direct debit batch #247
This file contains 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: Tests | |
on: pull_request | |
jobs: | |
run-unit-tests: | |
runs-on: ubuntu-latest | |
container: compucorp/civicrm-buildkit:1.3.1-php8.0 | |
env: | |
CIVICRM_EXTENSIONS_DIR: site/web/sites/all/modules/civicrm/tools/extensions | |
services: | |
mysql: | |
image: mysql:5.7 | |
env: | |
MYSQL_ROOT_PASSWORD: root | |
ports: | |
- 3306 | |
options: --health-cmd="mysqladmin ping" --health-interval=10s --health-timeout=5s --health-retries=3 | |
steps: | |
- name: Config mysql database as per CiviCRM requirement | |
run: echo "SET GLOBAL sql_mode=(SELECT REPLACE(@@sql_mode,'ONLY_FULL_GROUP_BY',''));" | mysql -u root --password=root --host=mysql | |
- name: Config amp | |
run : amp config:set --mysql_dsn=mysql://root:root@mysql:3306 | |
- name: Build Drupal site | |
run: civibuild create drupal-clean --civi-ver 5.75.0 --cms-ver 7.79 --web-root $GITHUB_WORKSPACE/site | |
- uses: compucorp/apply-patch@1.0.0 | |
env: | |
GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN }} | |
with: | |
repo: compucorp/civicrm-core | |
version: 5.75.0 | |
path: site/web/sites/all/modules/civicrm | |
- uses: actions/checkout@v2 | |
with: | |
path: ${{ env.CIVICRM_EXTENSIONS_DIR }}/uk.co.compucorp.manualdirectdebit | |
- name: Installing Manual Direct Debit and its dependencies | |
working-directory: ${{ env.CIVICRM_EXTENSIONS_DIR }} | |
run: | | |
git clone --depth 1 -b 6.6.0-dev https://github.com/compucorp/uk.co.compucorp.membershipextras.git | |
cv en uk.co.compucorp.membershipextras uk.co.compucorp.manualdirectdebit | |
- name: Setup Test DB | |
run: echo "CREATE DATABASE civicrm_test;" | mysql -u root --password=root --host=mysql | |
- name: Update civicrm.settings.php | |
run: | | |
FILE_PATH="$GITHUB_WORKSPACE/site/web/sites/default/civicrm.settings.php" | |
INSERT_LINE="\$GLOBALS['_CV']['TEST_DB_DSN'] = 'mysql://root:root@mysql:3306/civicrm_test?new_link=true';" | |
TMP_FILE=$(mktemp) | |
while IFS= read -r line | |
do | |
echo "$line" >> "$TMP_FILE" | |
if [ "$line" = "<?php" ]; then | |
echo "$INSERT_LINE" >> "$TMP_FILE" | |
fi | |
done < "$FILE_PATH" | |
mv "$TMP_FILE" "$FILE_PATH" | |
echo "File modified successfully." | |
- name: Run phpunit tests | |
working-directory: ${{ env.CIVICRM_EXTENSIONS_DIR }}/uk.co.compucorp.manualdirectdebit | |
run: phpunit5 |