1
0
mirror of https://github.com/invoiceninja/invoiceninja.git synced 2024-09-19 16:01:34 +02:00
invoiceninja/.travis.yml

138 lines
6.2 KiB
YAML
Raw Normal View History

2016-02-17 16:47:46 +01:00
language: php
2019-08-12 11:09:40 +02:00
services:
- mysql
2016-02-18 12:42:07 +01:00
sudo: true
2016-02-17 16:47:46 +01:00
2017-12-14 13:11:15 +01:00
# Prevent tests from taking more than 50 minutes
group: deprecated-2017Q4
2016-02-17 16:47:46 +01:00
php:
2018-02-26 20:43:51 +01:00
- 7.2
2016-02-17 16:47:46 +01:00
2016-02-18 11:20:43 +01:00
addons:
hosts:
2017-12-21 20:36:00 +01:00
- www.ninja.test
2016-02-18 11:20:43 +01:00
2016-02-17 16:47:46 +01:00
cache:
directories:
- vendor
- $HOME/.composer/cache
env:
global:
- COMPOSER_DISCARD_CHANGES=true
- COMPOSER_NO_INTERACTION=1
- COMPOSER_DISABLE_XDEBUG_WARN=1
before_install:
# set GitHub token and update composer
- if [ -n "$GH_TOKEN" ]; then composer config github-oauth.github.com ${GH_TOKEN}; fi;
- composer self-update && composer -V
2016-05-26 19:53:13 +02:00
# - export USE_ZEND_ALLOC=0
2016-08-10 22:34:32 +02:00
- rvm use 1.9.3 --install --fuzzy
2016-02-17 16:47:46 +01:00
install:
# install Composer dependencies
2016-06-07 21:12:28 +02:00
# - rm composer.lock
2016-02-17 20:34:29 +01:00
# these providers require referencing git commit's which cause Travis to fail
2016-06-07 21:12:28 +02:00
# - sed -i '/mollie/d' composer.json
# - sed -i '/2checkout/d' composer.json
2016-02-17 17:49:40 +01:00
- travis_retry composer install --prefer-dist;
2016-02-17 16:47:46 +01:00
before_script:
2016-03-02 21:51:13 +01:00
# prevent MySQL went away error
2019-08-12 11:09:40 +02:00
- mysql -u root -e 'SET @@GLOBAL.wait_timeout=28800;'
2016-02-17 16:47:46 +01:00
# copy configuration files
2017-05-02 20:55:36 +02:00
- cp .env.travis .env
2016-02-17 16:47:46 +01:00
- cp tests/_bootstrap.php.default tests/_bootstrap.php
2016-02-17 21:17:55 +01:00
- php artisan key:generate --no-interaction
2016-05-04 08:53:43 +02:00
- sed -i '$a NINJA_DEV=true' .env
2016-02-17 16:47:46 +01:00
# create the database and user
2017-05-02 20:55:36 +02:00
- mysql -u root -e "create database IF NOT EXISTS ninja0;"
2017-05-02 21:23:06 +02:00
- mysql -u root -e "create database IF NOT EXISTS ninja;"
2017-05-02 20:55:36 +02:00
- mysql -u root -e "create database IF NOT EXISTS ninja2;"
- mysql -u root -e "GRANT ALL PRIVILEGES ON ninja0.* To 'ninja'@'localhost' IDENTIFIED BY 'ninja'; FLUSH PRIVILEGES;"
2017-05-02 21:23:06 +02:00
- mysql -u root -e "GRANT ALL PRIVILEGES ON ninja.* To 'ninja'@'localhost' IDENTIFIED BY 'ninja'; FLUSH PRIVILEGES;"
2017-05-02 20:55:36 +02:00
- mysql -u root -e "GRANT ALL PRIVILEGES ON ninja2.* To 'ninja'@'localhost' IDENTIFIED BY 'ninja'; FLUSH PRIVILEGES;"
2016-02-17 16:47:46 +01:00
# migrate and seed the database
2017-05-02 20:59:22 +02:00
- php artisan migrate --database=db-ninja-0 --seed --no-interaction
- php artisan migrate --database=db-ninja-1 --seed --no-interaction
- php artisan migrate --database=db-ninja-2 --seed --no-interaction
2017-12-21 20:36:00 +01:00
# Start webserver on ninja.test:8000
- php artisan serve --host=www.ninja.test --port=8000 & # '&' allows to run in background
2016-02-17 16:47:46 +01:00
# Start PhantomJS
2016-02-18 12:36:47 +01:00
- phantomjs --webdriver=4444 & # '&' allows to run in background
2016-02-17 16:47:46 +01:00
# Give it some time to start
- sleep 5
2016-02-18 10:21:23 +01:00
# Make sure the app is up-to-date
2017-12-21 20:36:00 +01:00
- curl -L http://www.ninja.test:8000/update
2017-03-13 08:17:06 +01:00
- php artisan ninja:create-test-data 4 true
2017-03-09 17:08:12 +01:00
- php artisan db:seed --no-interaction --class=UserTableSeeder # development seed
2017-05-02 21:31:24 +02:00
- sed -i 's/DB_TYPE=db-ninja-1/DB_TYPE=db-ninja-2/g' .env
2017-05-11 16:46:07 +02:00
- sed -i 's/user@example.com/user2@example.com/g' .env
2018-06-07 13:12:33 +02:00
- sed -i 's/permissions@example.com/permissions2@example.com/g' .env
2017-05-11 16:46:07 +02:00
- php artisan db:seed --no-interaction --class=UserTableSeeder # development seed
2016-02-17 16:47:46 +01:00
script:
2018-03-11 13:40:51 +01:00
- php ./vendor/codeception/codeception/codecept run --debug acceptance APICest.php
- php ./vendor/codeception/codeception/codecept run --debug acceptance TaxRatesCest.php
- php ./vendor/codeception/codeception/codecept run --debug acceptance CheckBalanceCest.php
- php ./vendor/codeception/codeception/codecept run --debug acceptance ClientCest.php
- php ./vendor/codeception/codeception/codecept run --debug acceptance ExpenseCest.php
- php ./vendor/codeception/codeception/codecept run --debug acceptance CreditCest.php
- php ./vendor/codeception/codeception/codecept run --debug acceptance InvoiceCest.php
- php ./vendor/codeception/codeception/codecept run --debug acceptance QuoteCest.php
- php ./vendor/codeception/codeception/codecept run --debug acceptance InvoiceDesignCest.php
2019-08-12 11:09:40 +02:00
- php ./vendor/codeception/codeception/codecept run --debug acceptance OnlinePaymentCest.php
2018-03-11 13:40:51 +01:00
- php ./vendor/codeception/codeception/codecept run --debug acceptance PaymentCest.php
2018-03-11 12:10:00 +01:00
- php ./vendor/codeception/codeception/codecept run --debug acceptance TaskCest.php
2018-03-11 13:40:51 +01:00
- php ./vendor/codeception/codeception/codecept run --debug acceptance AllPagesCept.php
- php ./vendor/codeception/codeception/codecept run --debug functional PermissionsCest.php
2016-02-19 09:56:48 +01:00
2016-02-21 14:26:27 +01:00
#- sed -i 's/NINJA_DEV=true/NINJA_PROD=true/g' .env
2018-06-17 08:28:23 +02:00
#- php ./vendor/codeception/codeception/codecept run --debug run acceptance GoProCest.php
#- php ./vendor/codeception/codeception/codecept run --debug acceptance GatewayFeesCest.php
#- php ./vendor/codeception/codeception/codecept run --debug acceptance DiscountCest.php
2016-02-17 16:47:46 +01:00
2016-02-17 21:42:31 +01:00
after_script:
2017-09-13 21:20:53 +02:00
- php artisan ninja:check-data --no-interaction --database='db-ninja-1'
- php artisan ninja:check-data --no-interaction --database='db-ninja-2'
2017-05-12 10:13:57 +02:00
- php artisan ninja:init-lookup --validate=true --database='db-ninja-1'
- php artisan ninja:init-lookup --validate=true --database='db-ninja-2'
2017-12-31 15:23:18 +01:00
- cat storage/logs/laravel-error.log
- cat storage/logs/laravel-info.log
2016-02-21 11:28:41 +01:00
- cat .env
2017-05-02 20:55:36 +02:00
- mysql -u root -e 'select * from lookup_companies;' ninja0
- mysql -u root -e 'select * from lookup_accounts;' ninja0
- mysql -u root -e 'select * from lookup_contacts;' ninja0
- mysql -u root -e 'select * from lookup_invitations;' ninja0
2017-05-02 21:23:06 +02:00
- mysql -u root -e 'select * from accounts;' ninja
- mysql -u root -e 'select * from users;' ninja
2018-06-07 13:09:11 +02:00
- mysql -u root -e 'select * from lookup_users;' ninja
2017-05-02 21:23:06 +02:00
- mysql -u root -e 'select * from account_gateways;' ninja
- mysql -u root -e 'select * from clients;' ninja
- mysql -u root -e 'select * from contacts;' ninja
2018-03-29 15:58:57 +02:00
- mysql -u root -e 'select id, public_id, account_id, invoice_number, amount, balance from invoices;' ninja
2017-05-02 21:23:06 +02:00
- mysql -u root -e 'select * from invoice_items;' ninja
- mysql -u root -e 'select * from invitations;' ninja
2018-03-29 15:58:57 +02:00
- mysql -u root -e 'select id, public_id, account_id, invoice_id, amount, transaction_reference from payments;' ninja
2017-05-02 21:23:06 +02:00
- mysql -u root -e 'select * from credits;' ninja
- mysql -u root -e 'select * from expenses;' ninja
- mysql -u root -e 'select * from accounts;' ninja
2017-11-14 12:36:03 +01:00
- mysql -u root -e 'select * from fonts;' ninja
- mysql -u root -e 'select * from banks;' ninja
2018-03-10 22:19:41 +01:00
- mysql -u root -e 'select * from account_gateway_tokens;' ninja
- mysql -u root -e 'select * from payment_methods;' ninja
2017-03-13 08:30:20 +01:00
- FILES=$(find tests/_output -type f -name '*.png' | sort -nr)
2016-06-07 17:00:54 +02:00
- for i in $FILES; do echo $i; base64 "$i"; break; done
2016-02-17 21:42:31 +01:00
2017-10-31 09:51:24 +01:00
2016-02-17 16:47:46 +01:00
notifications:
email:
on_success: never
2016-05-25 20:28:41 +02:00
on_failure: change
2018-03-29 15:58:57 +02:00
slack:
2018-03-20 12:33:47 +01:00
invoiceninja: SLraaKBDvjeRuRtY9o3Yvp1b