mirror of
https://gitlab.com/flectra-community/bank-payment.git
synced 2024-11-22 13:42:07 +00:00
415 lines
20 KiB
YAML
415 lines
20 KiB
YAML
|
image: ubuntu:xenial
|
||
|
|
||
|
stages:
|
||
|
- testall
|
||
|
- testsingle
|
||
|
|
||
|
variables:
|
||
|
POSTGRES_DB: postgres
|
||
|
POSTGRES_USER: flectra
|
||
|
POSTGRES_PASSWORD: flectra
|
||
|
POSTGRES_HOST: postgres
|
||
|
POSTGRES_PORT: "5432"
|
||
|
|
||
|
services:
|
||
|
- name: postgres:10-alpine
|
||
|
alias: psql
|
||
|
|
||
|
|
||
|
test_all_modules:
|
||
|
stage: testall
|
||
|
image:
|
||
|
name: registry.gitlab.com/jamotion/flectra/ubuntudev:1-latest
|
||
|
entrypoint: ["/bin/sh", "-c"]
|
||
|
script:
|
||
|
- apt-get install -y p7zip-full
|
||
|
- apt-get install -y expect-dev
|
||
|
- su - flectra -c "mkdir ~/others"
|
||
|
- sed -i -e 's/# en_US.UTF-8 UTF-8/en_US.UTF-8 UTF-8/' /etc/locale.gen && dpkg-reconfigure --frontend=noninteractive locales && update-locale LANG=en_US.UTF-8
|
||
|
- mkdir ${CI_PROJECT_DIR}/ci_data
|
||
|
- wget -O ${CI_PROJECT_DIR}/ci_data/test_base.zip https://gitlab.com/flectra-community/devops/oca2fc/raw/master/ci_data/test_base.zip
|
||
|
- 7z x -o ${CI_PROJECT_DIR}/ci_data/ ${CI_PROJECT_DIR}/ci_data/test_base.zip
|
||
|
- export PGPASSWORD="flectra"
|
||
|
- createdb -h psql -U flectra -O flectra -T template1 test_all
|
||
|
- psql -h psql -U flectra -d test_all -f ${CI_PROJECT_DIR}/ci_data/dump.sql
|
||
|
- su - flectra -c "mkdir -p ~/.local/share/filestore"
|
||
|
- mv ${CI_PROJECT_DIR}/ci_data/filestore /opt/flectra/.local/share/filestore/test_all
|
||
|
- chown -R flectra.flectra /opt/flectra/.local/share/filestore/test_all
|
||
|
- su - flectra -c "/opt/flectra/flectra-bin
|
||
|
--addons-path ${CI_PROJECT_DIR}
|
||
|
--db_host psql
|
||
|
--db_port 5432
|
||
|
--db_user flectra
|
||
|
--db_password flectra
|
||
|
--database test_all
|
||
|
--test-enable
|
||
|
--init account_payment_order_return,account_payment_partner,account_payment_order,account_payment_purchase,account_payment_mode,account_banking_sepa_direct_debit,account_banking_sepa_credit_transfer,account_banking_mandate_sale,account_banking_pain_base,account_payment_sale,account_banking_mandate
|
||
|
--stop-after-init
|
||
|
--log-level error
|
||
|
--log-handler flectra.addons.account_payment_order_return:TEST
|
||
|
--log-handler flectra.addons.account_payment_partner:TEST
|
||
|
--log-handler flectra.addons.account_payment_order:TEST
|
||
|
--log-handler flectra.addons.account_payment_purchase:TEST
|
||
|
--log-handler flectra.addons.account_payment_mode:TEST
|
||
|
--log-handler flectra.addons.account_banking_sepa_direct_debit:TEST
|
||
|
--log-handler flectra.addons.account_banking_sepa_credit_transfer:TEST
|
||
|
--log-handler flectra.addons.account_banking_mandate_sale:TEST
|
||
|
--log-handler flectra.addons.account_banking_pain_base:TEST
|
||
|
--log-handler flectra.addons.account_payment_sale:TEST
|
||
|
--log-handler flectra.addons.account_banking_mandate:TEST
|
||
|
"
|
||
|
|
||
|
|
||
|
test_module_account_payment_order_return:
|
||
|
stage: testsingle
|
||
|
when: on_failure
|
||
|
image:
|
||
|
name: registry.gitlab.com/jamotion/flectra/ubuntudev:2-latest
|
||
|
entrypoint: ["/bin/sh", "-c"]
|
||
|
script:
|
||
|
- apt-get install -y p7zip-full
|
||
|
- apt install -y expect-dev
|
||
|
- su - flectra -c "mkdir ~/others"
|
||
|
- sed -i -e 's/# en_US.UTF-8 UTF-8/en_US.UTF-8 UTF-8/' /etc/locale.gen && dpkg-reconfigure --frontend=noninteractive locales && update-locale LANG=en_US.UTF-8
|
||
|
- mkdir ${CI_PROJECT_DIR}/ci_data
|
||
|
- wget -O ${CI_PROJECT_DIR}/ci_data/test_base.zip https://gitlab.com/flectra-community/devops/oca2fc/raw/master/ci_data/test_base.zip
|
||
|
- 7z x -o ${CI_PROJECT_DIR}/ci_data/ ${CI_PROJECT_DIR}/ci_data/test_base.zip
|
||
|
- export PGPASSWORD="flectra"
|
||
|
- createdb -h psql -U flectra -O flectra -T template1 test_account_payment_order_return
|
||
|
- psql -h psql -U flectra -d test_account_payment_order_return -f ${CI_PROJECT_DIR}/ci_data/dump.sql
|
||
|
- su - flectra -c "mkdir -p ~/.local/share/filestore"
|
||
|
- mv ${CI_PROJECT_DIR}/ci_data/filestore /opt/flectra/.local/share/filestore/test_account_payment_order_return
|
||
|
- chown -R flectra.flectra /opt/flectra/.local/share/filestore/test_account_payment_order_return
|
||
|
- su - flectra -c "/opt/flectra/flectra-bin
|
||
|
--addons-path ${CI_PROJECT_DIR}
|
||
|
--db_host psql
|
||
|
--db_port 5432
|
||
|
--db_user flectra
|
||
|
--db_password flectra
|
||
|
--database test_account_payment_order_return
|
||
|
--test-enable -i account_payment_order_return
|
||
|
--stop-after-init
|
||
|
--log-level error
|
||
|
--log-handler flectra.addons.account_payment_order_return:TEST"
|
||
|
|
||
|
test_module_account_payment_partner:
|
||
|
stage: testsingle
|
||
|
when: on_failure
|
||
|
image:
|
||
|
name: registry.gitlab.com/jamotion/flectra/ubuntudev:2-latest
|
||
|
entrypoint: ["/bin/sh", "-c"]
|
||
|
script:
|
||
|
- apt-get install -y p7zip-full
|
||
|
- apt install -y expect-dev
|
||
|
- su - flectra -c "mkdir ~/others"
|
||
|
- sed -i -e 's/# en_US.UTF-8 UTF-8/en_US.UTF-8 UTF-8/' /etc/locale.gen && dpkg-reconfigure --frontend=noninteractive locales && update-locale LANG=en_US.UTF-8
|
||
|
- mkdir ${CI_PROJECT_DIR}/ci_data
|
||
|
- wget -O ${CI_PROJECT_DIR}/ci_data/test_base.zip https://gitlab.com/flectra-community/devops/oca2fc/raw/master/ci_data/test_base.zip
|
||
|
- 7z x -o ${CI_PROJECT_DIR}/ci_data/ ${CI_PROJECT_DIR}/ci_data/test_base.zip
|
||
|
- export PGPASSWORD="flectra"
|
||
|
- createdb -h psql -U flectra -O flectra -T template1 test_account_payment_partner
|
||
|
- psql -h psql -U flectra -d test_account_payment_partner -f ${CI_PROJECT_DIR}/ci_data/dump.sql
|
||
|
- su - flectra -c "mkdir -p ~/.local/share/filestore"
|
||
|
- mv ${CI_PROJECT_DIR}/ci_data/filestore /opt/flectra/.local/share/filestore/test_account_payment_partner
|
||
|
- chown -R flectra.flectra /opt/flectra/.local/share/filestore/test_account_payment_partner
|
||
|
- su - flectra -c "/opt/flectra/flectra-bin
|
||
|
--addons-path ${CI_PROJECT_DIR}
|
||
|
--db_host psql
|
||
|
--db_port 5432
|
||
|
--db_user flectra
|
||
|
--db_password flectra
|
||
|
--database test_account_payment_partner
|
||
|
--test-enable -i account_payment_partner
|
||
|
--stop-after-init
|
||
|
--log-level error
|
||
|
--log-handler flectra.addons.account_payment_partner:TEST"
|
||
|
|
||
|
test_module_account_payment_order:
|
||
|
stage: testsingle
|
||
|
when: on_failure
|
||
|
image:
|
||
|
name: registry.gitlab.com/jamotion/flectra/ubuntudev:2-latest
|
||
|
entrypoint: ["/bin/sh", "-c"]
|
||
|
script:
|
||
|
- apt-get install -y p7zip-full
|
||
|
- apt install -y expect-dev
|
||
|
- su - flectra -c "mkdir ~/others"
|
||
|
- sed -i -e 's/# en_US.UTF-8 UTF-8/en_US.UTF-8 UTF-8/' /etc/locale.gen && dpkg-reconfigure --frontend=noninteractive locales && update-locale LANG=en_US.UTF-8
|
||
|
- mkdir ${CI_PROJECT_DIR}/ci_data
|
||
|
- wget -O ${CI_PROJECT_DIR}/ci_data/test_base.zip https://gitlab.com/flectra-community/devops/oca2fc/raw/master/ci_data/test_base.zip
|
||
|
- 7z x -o ${CI_PROJECT_DIR}/ci_data/ ${CI_PROJECT_DIR}/ci_data/test_base.zip
|
||
|
- export PGPASSWORD="flectra"
|
||
|
- createdb -h psql -U flectra -O flectra -T template1 test_account_payment_order
|
||
|
- psql -h psql -U flectra -d test_account_payment_order -f ${CI_PROJECT_DIR}/ci_data/dump.sql
|
||
|
- su - flectra -c "mkdir -p ~/.local/share/filestore"
|
||
|
- mv ${CI_PROJECT_DIR}/ci_data/filestore /opt/flectra/.local/share/filestore/test_account_payment_order
|
||
|
- chown -R flectra.flectra /opt/flectra/.local/share/filestore/test_account_payment_order
|
||
|
- su - flectra -c "/opt/flectra/flectra-bin
|
||
|
--addons-path ${CI_PROJECT_DIR}
|
||
|
--db_host psql
|
||
|
--db_port 5432
|
||
|
--db_user flectra
|
||
|
--db_password flectra
|
||
|
--database test_account_payment_order
|
||
|
--test-enable -i account_payment_order
|
||
|
--stop-after-init
|
||
|
--log-level error
|
||
|
--log-handler flectra.addons.account_payment_order:TEST"
|
||
|
|
||
|
test_module_account_payment_purchase:
|
||
|
stage: testsingle
|
||
|
when: on_failure
|
||
|
image:
|
||
|
name: registry.gitlab.com/jamotion/flectra/ubuntudev:2-latest
|
||
|
entrypoint: ["/bin/sh", "-c"]
|
||
|
script:
|
||
|
- apt-get install -y p7zip-full
|
||
|
- apt install -y expect-dev
|
||
|
- su - flectra -c "mkdir ~/others"
|
||
|
- sed -i -e 's/# en_US.UTF-8 UTF-8/en_US.UTF-8 UTF-8/' /etc/locale.gen && dpkg-reconfigure --frontend=noninteractive locales && update-locale LANG=en_US.UTF-8
|
||
|
- mkdir ${CI_PROJECT_DIR}/ci_data
|
||
|
- wget -O ${CI_PROJECT_DIR}/ci_data/test_base.zip https://gitlab.com/flectra-community/devops/oca2fc/raw/master/ci_data/test_base.zip
|
||
|
- 7z x -o ${CI_PROJECT_DIR}/ci_data/ ${CI_PROJECT_DIR}/ci_data/test_base.zip
|
||
|
- export PGPASSWORD="flectra"
|
||
|
- createdb -h psql -U flectra -O flectra -T template1 test_account_payment_purchase
|
||
|
- psql -h psql -U flectra -d test_account_payment_purchase -f ${CI_PROJECT_DIR}/ci_data/dump.sql
|
||
|
- su - flectra -c "mkdir -p ~/.local/share/filestore"
|
||
|
- mv ${CI_PROJECT_DIR}/ci_data/filestore /opt/flectra/.local/share/filestore/test_account_payment_purchase
|
||
|
- chown -R flectra.flectra /opt/flectra/.local/share/filestore/test_account_payment_purchase
|
||
|
- su - flectra -c "/opt/flectra/flectra-bin
|
||
|
--addons-path ${CI_PROJECT_DIR}
|
||
|
--db_host psql
|
||
|
--db_port 5432
|
||
|
--db_user flectra
|
||
|
--db_password flectra
|
||
|
--database test_account_payment_purchase
|
||
|
--test-enable -i account_payment_purchase
|
||
|
--stop-after-init
|
||
|
--log-level error
|
||
|
--log-handler flectra.addons.account_payment_purchase:TEST"
|
||
|
|
||
|
test_module_account_payment_mode:
|
||
|
stage: testsingle
|
||
|
when: on_failure
|
||
|
image:
|
||
|
name: registry.gitlab.com/jamotion/flectra/ubuntudev:2-latest
|
||
|
entrypoint: ["/bin/sh", "-c"]
|
||
|
script:
|
||
|
- apt-get install -y p7zip-full
|
||
|
- apt install -y expect-dev
|
||
|
- su - flectra -c "mkdir ~/others"
|
||
|
- sed -i -e 's/# en_US.UTF-8 UTF-8/en_US.UTF-8 UTF-8/' /etc/locale.gen && dpkg-reconfigure --frontend=noninteractive locales && update-locale LANG=en_US.UTF-8
|
||
|
- mkdir ${CI_PROJECT_DIR}/ci_data
|
||
|
- wget -O ${CI_PROJECT_DIR}/ci_data/test_base.zip https://gitlab.com/flectra-community/devops/oca2fc/raw/master/ci_data/test_base.zip
|
||
|
- 7z x -o ${CI_PROJECT_DIR}/ci_data/ ${CI_PROJECT_DIR}/ci_data/test_base.zip
|
||
|
- export PGPASSWORD="flectra"
|
||
|
- createdb -h psql -U flectra -O flectra -T template1 test_account_payment_mode
|
||
|
- psql -h psql -U flectra -d test_account_payment_mode -f ${CI_PROJECT_DIR}/ci_data/dump.sql
|
||
|
- su - flectra -c "mkdir -p ~/.local/share/filestore"
|
||
|
- mv ${CI_PROJECT_DIR}/ci_data/filestore /opt/flectra/.local/share/filestore/test_account_payment_mode
|
||
|
- chown -R flectra.flectra /opt/flectra/.local/share/filestore/test_account_payment_mode
|
||
|
- su - flectra -c "/opt/flectra/flectra-bin
|
||
|
--addons-path ${CI_PROJECT_DIR}
|
||
|
--db_host psql
|
||
|
--db_port 5432
|
||
|
--db_user flectra
|
||
|
--db_password flectra
|
||
|
--database test_account_payment_mode
|
||
|
--test-enable -i account_payment_mode
|
||
|
--stop-after-init
|
||
|
--log-level error
|
||
|
--log-handler flectra.addons.account_payment_mode:TEST"
|
||
|
|
||
|
test_module_account_banking_sepa_direct_debit:
|
||
|
stage: testsingle
|
||
|
when: on_failure
|
||
|
image:
|
||
|
name: registry.gitlab.com/jamotion/flectra/ubuntudev:2-latest
|
||
|
entrypoint: ["/bin/sh", "-c"]
|
||
|
script:
|
||
|
- apt-get install -y p7zip-full
|
||
|
- apt install -y expect-dev
|
||
|
- su - flectra -c "mkdir ~/others"
|
||
|
- sed -i -e 's/# en_US.UTF-8 UTF-8/en_US.UTF-8 UTF-8/' /etc/locale.gen && dpkg-reconfigure --frontend=noninteractive locales && update-locale LANG=en_US.UTF-8
|
||
|
- mkdir ${CI_PROJECT_DIR}/ci_data
|
||
|
- wget -O ${CI_PROJECT_DIR}/ci_data/test_base.zip https://gitlab.com/flectra-community/devops/oca2fc/raw/master/ci_data/test_base.zip
|
||
|
- 7z x -o ${CI_PROJECT_DIR}/ci_data/ ${CI_PROJECT_DIR}/ci_data/test_base.zip
|
||
|
- export PGPASSWORD="flectra"
|
||
|
- createdb -h psql -U flectra -O flectra -T template1 test_account_banking_sepa_direct_debit
|
||
|
- psql -h psql -U flectra -d test_account_banking_sepa_direct_debit -f ${CI_PROJECT_DIR}/ci_data/dump.sql
|
||
|
- su - flectra -c "mkdir -p ~/.local/share/filestore"
|
||
|
- mv ${CI_PROJECT_DIR}/ci_data/filestore /opt/flectra/.local/share/filestore/test_account_banking_sepa_direct_debit
|
||
|
- chown -R flectra.flectra /opt/flectra/.local/share/filestore/test_account_banking_sepa_direct_debit
|
||
|
- su - flectra -c "/opt/flectra/flectra-bin
|
||
|
--addons-path ${CI_PROJECT_DIR}
|
||
|
--db_host psql
|
||
|
--db_port 5432
|
||
|
--db_user flectra
|
||
|
--db_password flectra
|
||
|
--database test_account_banking_sepa_direct_debit
|
||
|
--test-enable -i account_banking_sepa_direct_debit
|
||
|
--stop-after-init
|
||
|
--log-level error
|
||
|
--log-handler flectra.addons.account_banking_sepa_direct_debit:TEST"
|
||
|
|
||
|
test_module_account_banking_sepa_credit_transfer:
|
||
|
stage: testsingle
|
||
|
when: on_failure
|
||
|
image:
|
||
|
name: registry.gitlab.com/jamotion/flectra/ubuntudev:2-latest
|
||
|
entrypoint: ["/bin/sh", "-c"]
|
||
|
script:
|
||
|
- apt-get install -y p7zip-full
|
||
|
- apt install -y expect-dev
|
||
|
- su - flectra -c "mkdir ~/others"
|
||
|
- sed -i -e 's/# en_US.UTF-8 UTF-8/en_US.UTF-8 UTF-8/' /etc/locale.gen && dpkg-reconfigure --frontend=noninteractive locales && update-locale LANG=en_US.UTF-8
|
||
|
- mkdir ${CI_PROJECT_DIR}/ci_data
|
||
|
- wget -O ${CI_PROJECT_DIR}/ci_data/test_base.zip https://gitlab.com/flectra-community/devops/oca2fc/raw/master/ci_data/test_base.zip
|
||
|
- 7z x -o ${CI_PROJECT_DIR}/ci_data/ ${CI_PROJECT_DIR}/ci_data/test_base.zip
|
||
|
- export PGPASSWORD="flectra"
|
||
|
- createdb -h psql -U flectra -O flectra -T template1 test_account_banking_sepa_credit_transfer
|
||
|
- psql -h psql -U flectra -d test_account_banking_sepa_credit_transfer -f ${CI_PROJECT_DIR}/ci_data/dump.sql
|
||
|
- su - flectra -c "mkdir -p ~/.local/share/filestore"
|
||
|
- mv ${CI_PROJECT_DIR}/ci_data/filestore /opt/flectra/.local/share/filestore/test_account_banking_sepa_credit_transfer
|
||
|
- chown -R flectra.flectra /opt/flectra/.local/share/filestore/test_account_banking_sepa_credit_transfer
|
||
|
- su - flectra -c "/opt/flectra/flectra-bin
|
||
|
--addons-path ${CI_PROJECT_DIR}
|
||
|
--db_host psql
|
||
|
--db_port 5432
|
||
|
--db_user flectra
|
||
|
--db_password flectra
|
||
|
--database test_account_banking_sepa_credit_transfer
|
||
|
--test-enable -i account_banking_sepa_credit_transfer
|
||
|
--stop-after-init
|
||
|
--log-level error
|
||
|
--log-handler flectra.addons.account_banking_sepa_credit_transfer:TEST"
|
||
|
|
||
|
test_module_account_banking_mandate_sale:
|
||
|
stage: testsingle
|
||
|
when: on_failure
|
||
|
image:
|
||
|
name: registry.gitlab.com/jamotion/flectra/ubuntudev:2-latest
|
||
|
entrypoint: ["/bin/sh", "-c"]
|
||
|
script:
|
||
|
- apt-get install -y p7zip-full
|
||
|
- apt install -y expect-dev
|
||
|
- su - flectra -c "mkdir ~/others"
|
||
|
- sed -i -e 's/# en_US.UTF-8 UTF-8/en_US.UTF-8 UTF-8/' /etc/locale.gen && dpkg-reconfigure --frontend=noninteractive locales && update-locale LANG=en_US.UTF-8
|
||
|
- mkdir ${CI_PROJECT_DIR}/ci_data
|
||
|
- wget -O ${CI_PROJECT_DIR}/ci_data/test_base.zip https://gitlab.com/flectra-community/devops/oca2fc/raw/master/ci_data/test_base.zip
|
||
|
- 7z x -o ${CI_PROJECT_DIR}/ci_data/ ${CI_PROJECT_DIR}/ci_data/test_base.zip
|
||
|
- export PGPASSWORD="flectra"
|
||
|
- createdb -h psql -U flectra -O flectra -T template1 test_account_banking_mandate_sale
|
||
|
- psql -h psql -U flectra -d test_account_banking_mandate_sale -f ${CI_PROJECT_DIR}/ci_data/dump.sql
|
||
|
- su - flectra -c "mkdir -p ~/.local/share/filestore"
|
||
|
- mv ${CI_PROJECT_DIR}/ci_data/filestore /opt/flectra/.local/share/filestore/test_account_banking_mandate_sale
|
||
|
- chown -R flectra.flectra /opt/flectra/.local/share/filestore/test_account_banking_mandate_sale
|
||
|
- su - flectra -c "/opt/flectra/flectra-bin
|
||
|
--addons-path ${CI_PROJECT_DIR}
|
||
|
--db_host psql
|
||
|
--db_port 5432
|
||
|
--db_user flectra
|
||
|
--db_password flectra
|
||
|
--database test_account_banking_mandate_sale
|
||
|
--test-enable -i account_banking_mandate_sale
|
||
|
--stop-after-init
|
||
|
--log-level error
|
||
|
--log-handler flectra.addons.account_banking_mandate_sale:TEST"
|
||
|
|
||
|
test_module_account_banking_pain_base:
|
||
|
stage: testsingle
|
||
|
when: on_failure
|
||
|
image:
|
||
|
name: registry.gitlab.com/jamotion/flectra/ubuntudev:2-latest
|
||
|
entrypoint: ["/bin/sh", "-c"]
|
||
|
script:
|
||
|
- apt-get install -y p7zip-full
|
||
|
- apt install -y expect-dev
|
||
|
- su - flectra -c "mkdir ~/others"
|
||
|
- sed -i -e 's/# en_US.UTF-8 UTF-8/en_US.UTF-8 UTF-8/' /etc/locale.gen && dpkg-reconfigure --frontend=noninteractive locales && update-locale LANG=en_US.UTF-8
|
||
|
- mkdir ${CI_PROJECT_DIR}/ci_data
|
||
|
- wget -O ${CI_PROJECT_DIR}/ci_data/test_base.zip https://gitlab.com/flectra-community/devops/oca2fc/raw/master/ci_data/test_base.zip
|
||
|
- 7z x -o ${CI_PROJECT_DIR}/ci_data/ ${CI_PROJECT_DIR}/ci_data/test_base.zip
|
||
|
- export PGPASSWORD="flectra"
|
||
|
- createdb -h psql -U flectra -O flectra -T template1 test_account_banking_pain_base
|
||
|
- psql -h psql -U flectra -d test_account_banking_pain_base -f ${CI_PROJECT_DIR}/ci_data/dump.sql
|
||
|
- su - flectra -c "mkdir -p ~/.local/share/filestore"
|
||
|
- mv ${CI_PROJECT_DIR}/ci_data/filestore /opt/flectra/.local/share/filestore/test_account_banking_pain_base
|
||
|
- chown -R flectra.flectra /opt/flectra/.local/share/filestore/test_account_banking_pain_base
|
||
|
- su - flectra -c "/opt/flectra/flectra-bin
|
||
|
--addons-path ${CI_PROJECT_DIR}
|
||
|
--db_host psql
|
||
|
--db_port 5432
|
||
|
--db_user flectra
|
||
|
--db_password flectra
|
||
|
--database test_account_banking_pain_base
|
||
|
--test-enable -i account_banking_pain_base
|
||
|
--stop-after-init
|
||
|
--log-level error
|
||
|
--log-handler flectra.addons.account_banking_pain_base:TEST"
|
||
|
|
||
|
test_module_account_payment_sale:
|
||
|
stage: testsingle
|
||
|
when: on_failure
|
||
|
image:
|
||
|
name: registry.gitlab.com/jamotion/flectra/ubuntudev:2-latest
|
||
|
entrypoint: ["/bin/sh", "-c"]
|
||
|
script:
|
||
|
- apt-get install -y p7zip-full
|
||
|
- apt install -y expect-dev
|
||
|
- su - flectra -c "mkdir ~/others"
|
||
|
- sed -i -e 's/# en_US.UTF-8 UTF-8/en_US.UTF-8 UTF-8/' /etc/locale.gen && dpkg-reconfigure --frontend=noninteractive locales && update-locale LANG=en_US.UTF-8
|
||
|
- mkdir ${CI_PROJECT_DIR}/ci_data
|
||
|
- wget -O ${CI_PROJECT_DIR}/ci_data/test_base.zip https://gitlab.com/flectra-community/devops/oca2fc/raw/master/ci_data/test_base.zip
|
||
|
- 7z x -o ${CI_PROJECT_DIR}/ci_data/ ${CI_PROJECT_DIR}/ci_data/test_base.zip
|
||
|
- export PGPASSWORD="flectra"
|
||
|
- createdb -h psql -U flectra -O flectra -T template1 test_account_payment_sale
|
||
|
- psql -h psql -U flectra -d test_account_payment_sale -f ${CI_PROJECT_DIR}/ci_data/dump.sql
|
||
|
- su - flectra -c "mkdir -p ~/.local/share/filestore"
|
||
|
- mv ${CI_PROJECT_DIR}/ci_data/filestore /opt/flectra/.local/share/filestore/test_account_payment_sale
|
||
|
- chown -R flectra.flectra /opt/flectra/.local/share/filestore/test_account_payment_sale
|
||
|
- su - flectra -c "/opt/flectra/flectra-bin
|
||
|
--addons-path ${CI_PROJECT_DIR}
|
||
|
--db_host psql
|
||
|
--db_port 5432
|
||
|
--db_user flectra
|
||
|
--db_password flectra
|
||
|
--database test_account_payment_sale
|
||
|
--test-enable -i account_payment_sale
|
||
|
--stop-after-init
|
||
|
--log-level error
|
||
|
--log-handler flectra.addons.account_payment_sale:TEST"
|
||
|
|
||
|
test_module_account_banking_mandate:
|
||
|
stage: testsingle
|
||
|
when: on_failure
|
||
|
image:
|
||
|
name: registry.gitlab.com/jamotion/flectra/ubuntudev:2-latest
|
||
|
entrypoint: ["/bin/sh", "-c"]
|
||
|
script:
|
||
|
- apt-get install -y p7zip-full
|
||
|
- apt install -y expect-dev
|
||
|
- su - flectra -c "mkdir ~/others"
|
||
|
- sed -i -e 's/# en_US.UTF-8 UTF-8/en_US.UTF-8 UTF-8/' /etc/locale.gen && dpkg-reconfigure --frontend=noninteractive locales && update-locale LANG=en_US.UTF-8
|
||
|
- mkdir ${CI_PROJECT_DIR}/ci_data
|
||
|
- wget -O ${CI_PROJECT_DIR}/ci_data/test_base.zip https://gitlab.com/flectra-community/devops/oca2fc/raw/master/ci_data/test_base.zip
|
||
|
- 7z x -o ${CI_PROJECT_DIR}/ci_data/ ${CI_PROJECT_DIR}/ci_data/test_base.zip
|
||
|
- export PGPASSWORD="flectra"
|
||
|
- createdb -h psql -U flectra -O flectra -T template1 test_account_banking_mandate
|
||
|
- psql -h psql -U flectra -d test_account_banking_mandate -f ${CI_PROJECT_DIR}/ci_data/dump.sql
|
||
|
- su - flectra -c "mkdir -p ~/.local/share/filestore"
|
||
|
- mv ${CI_PROJECT_DIR}/ci_data/filestore /opt/flectra/.local/share/filestore/test_account_banking_mandate
|
||
|
- chown -R flectra.flectra /opt/flectra/.local/share/filestore/test_account_banking_mandate
|
||
|
- su - flectra -c "/opt/flectra/flectra-bin
|
||
|
--addons-path ${CI_PROJECT_DIR}
|
||
|
--db_host psql
|
||
|
--db_port 5432
|
||
|
--db_user flectra
|
||
|
--db_password flectra
|
||
|
--database test_account_banking_mandate
|
||
|
--test-enable -i account_banking_mandate
|
||
|
--stop-after-init
|
||
|
--log-level error
|
||
|
--log-handler flectra.addons.account_banking_mandate:TEST"
|
||
|
|