MadelineProto/tests/makephar.sh

221 lines
5.6 KiB
Bash
Raw Normal View History

2019-12-26 22:02:36 +01:00
#!/bin/bash -e
2019-06-18 12:31:44 +02:00
# Configure
PHP_MAJOR_VERSION=$(php -r 'echo PHP_MAJOR_VERSION;')
PHP_MINOR_VERSION=$(php -r 'echo PHP_MINOR_VERSION;')
2019-09-21 20:43:01 +02:00
2019-12-27 14:47:20 +01:00
[ "$(git rev-list --tags --max-count=1)" == "$TRAVIS_COMMIT" ] && IS_RELEASE=y || IS_RELEASE=n
echo "Is release: $IS_RELEASE"
2020-02-05 19:01:48 +01:00
skip=n
[ $PHP_MAJOR_VERSION -eq 7 ] && [ $PHP_MINOR_VERSION -ge 4 ] && {
composer update
composer test || {
cat tests/MadelineProto.log
exit 1
}
cat tests/MadelineProto.log
} || {
skip=y
echo "Skip"
}
2019-06-18 12:31:44 +02:00
# Clean up
2018-02-21 12:55:42 +01:00
rm -rf phar7 phar5 MadelineProtoPhar
madelinePath=$PWD
cd
rm -rf phar7 phar5 MadelineProtoPhar
2018-02-21 12:55:42 +01:00
mkdir phar7
cd phar7
2019-06-18 12:31:44 +02:00
2020-01-19 14:29:53 +01:00
[ "$IS_RELEASE" == "y" ] && composer=$TRAVIS_BRANCH || composer="dev-$TRAVIS_BRANCH"
2019-06-18 12:31:44 +02:00
# Install
2018-02-21 12:55:42 +01:00
echo '{
"name": "danog/madelineprototests",
"minimum-stability":"dev",
"require": {
2020-01-19 14:29:53 +01:00
"danog/madelineproto": "'$composer'",
2020-01-19 13:46:49 +01:00
"amphp/websocket-client": "dev-master as 1.0.0-rc2",
2019-12-27 14:47:20 +01:00
"amphp/dns": "dev-master#eb0b0a2 as v1"
},
"repositories": [
{
"type": "path",
"url": "'$madelinePath'",
"options": {
"symlink": false
}
}
],
"authors": [
{
"name": "Daniil Gentili",
"email": "daniil@daniil.it"
}
]
}' > composer.json
2019-06-18 14:39:31 +02:00
composer config platform.php "7.4"
composer clearcache
2018-02-21 12:55:42 +01:00
composer update
composer require amphp/mysql
2020-02-28 16:02:19 +01:00
[ $PHP_MAJOR_VERSION -eq 5 ] && {
composer require dstuecken/php7ify
composer require symfony/polyfill-php70
composer require symfony/polyfill-php71
composer require symfony/polyfill-php72
composer require symfony/polyfill-php73
}
2020-02-28 15:19:11 +01:00
[ $PHP_MAJOR_VERSION -eq 7 ] && [ $PHP_MINOR_VERSION -eq 0 ] && {
composer require symfony/polyfill-php71
composer require symfony/polyfill-php72
composer require symfony/polyfill-php73
}
2019-12-26 19:17:31 +01:00
composer dumpautoload --optimize
2019-12-26 22:43:09 +01:00
cp -a $madelinePath/src vendor/danog/madelineproto
2018-02-21 12:55:42 +01:00
cd ..
[ $PHP_MAJOR_VERSION -eq 5 ] && {
sudo add-apt-repository ppa:ondrej/php -y
sudo apt-get update -q
sudo apt-get install php7.3-cli php7.3-json php7.3-mbstring php7.3-curl php7.3-xml php7.3-json -y
2019-12-25 19:38:44 +01:00
2019-12-26 19:17:31 +01:00
composer global require danog/7to5
2019-06-19 14:59:32 +02:00
[ -f $HOME/.composer/vendor/bin/php7to5 ] && php7to5=$HOME/.composer/vendor/bin/php7to5
[ -f $HOME/.config/composer/vendor/bin/php7to5 ] && php7to5=$HOME/.config/composer/vendor/bin/php7to5
2019-12-26 00:20:15 +01:00
2019-12-26 19:47:24 +01:00
cd phar7
2019-12-26 20:35:49 +01:00
ls
2019-12-26 20:05:06 +01:00
$madelinePath/tests/conversion/prepare-5.sh
2019-12-26 19:47:24 +01:00
cd ..
2019-12-26 19:17:31 +01:00
2019-12-26 21:00:48 +01:00
php7.3 $php7to5 convert --copy-all phar7 phar5
2019-12-26 19:17:31 +01:00
2019-12-26 19:47:24 +01:00
cd phar5
2019-12-26 20:35:49 +01:00
ls
2019-12-26 19:47:24 +01:00
$madelinePath/tests/conversion/after-5.sh
cd ..
2019-12-26 19:17:31 +01:00
2019-06-18 15:04:13 +02:00
php -v
php=5
}
[ $PHP_MAJOR_VERSION -eq 7 ] && {
[ $PHP_MINOR_VERSION -eq 0 ] && {
2019-06-19 14:59:32 +02:00
composer global require danog/7to70
[ -f $HOME/.composer/vendor/bin/php7to70 ] && php7to70=$HOME/.composer/vendor/bin/php7to70
[ -f $HOME/.config/composer/vendor/bin/php7to70 ] && php7to70=$HOME/.config/composer/vendor/bin/php7to70
2019-12-26 00:20:15 +01:00
2019-12-26 19:47:24 +01:00
cd phar7
2019-12-26 20:35:49 +01:00
ls
2019-12-26 20:05:06 +01:00
$madelinePath/tests/conversion/prepare-70.sh
2019-12-26 19:47:24 +01:00
cd ..
2019-12-26 19:17:31 +01:00
2019-12-26 21:00:48 +01:00
$php7to70 convert --copy-all phar7 phar5
2019-12-26 00:08:20 +01:00
2019-12-26 19:47:24 +01:00
cd phar5
2019-12-26 20:35:49 +01:00
ls
2019-12-26 19:47:24 +01:00
$madelinePath/tests/conversion/after-70.sh
cd ..
php=70
} || {
cp -a phar7 phar5
}
}
2018-06-22 13:28:33 +02:00
find phar5 -type f -exec sed 's/\w* \.\.\./.../' -i {} +
2018-02-21 12:55:42 +01:00
2019-06-19 11:18:51 +02:00
# Make sure conversion worked
2019-12-26 20:35:49 +01:00
# Not needed anymore, tests/testing.php preloads all classes
#for f in $(find phar5 -type f -name '*.php'); do php -l $f;done
2019-06-19 11:18:51 +02:00
branch="-$TRAVIS_BRANCH"
cd $madelinePath
2019-09-21 17:11:37 +02:00
2019-06-16 21:20:29 +02:00
export TEST_SECRET_CHAT=test
export TEST_USERNAME=danogentili
2019-06-17 12:19:46 +02:00
export TEST_DESTINATION_GROUPS='["@danogentili"]'
2019-09-04 18:33:27 +02:00
export MTPROTO_SETTINGS='{"logger":{"logger_level":5}}'
2019-06-16 21:20:29 +02:00
2020-02-04 17:34:02 +01:00
runTestSimple()
{
tests/testing.php
}
runTest()
{
tests/testing.php <<EOF
2019-06-17 12:19:46 +02:00
m
$API_ID
$API_HASH
b
$BOT_TOKEN
n
n
n
EOF
2020-02-04 17:34:02 +01:00
}
echo "Testing with previous version..."
cp tests/testing.php tests/testingBackup.php
runTest
echo "Testing with new version (upgrade)..."
php tools/makephar.php $HOME/phar5 "madeline$php$branch.phar" $TRAVIS_COMMIT
export TRAVIS_PHAR="madeline$php$branch.phar"
runTestSimple
echo "Testing with new version (restart)"
cp tests/testingBackup.php tests/testing.php
rm testing.madeline
runTest
echo "Testing with new version (reload)"
2019-12-29 14:44:03 +01:00
cp tests/testingBackup.php tests/testing.php
2020-02-04 17:34:02 +01:00
runTestSimple
2019-06-16 21:20:29 +02:00
2018-02-21 13:05:35 +01:00
eval "$(ssh-agent -s)"
echo -e "$private_key" > madeline_rsa
chmod 600 madeline_rsa
2018-02-21 13:05:35 +01:00
ssh-add madeline_rsa
2018-02-21 12:55:42 +01:00
git clone git@github.com:danog/MadelineProtoPhar
cd MadelineProtoPhar
2019-09-04 22:16:35 +02:00
[ "$php" == "70" ] && {
2019-12-27 15:57:15 +01:00
while [ "$(cat release$branch)" != "$TRAVIS_COMMIT"- ]; do sleep 1; git pull; done
2019-09-04 22:16:35 +02:00
}
[ "$php" == "5" ] && {
2019-12-27 15:57:15 +01:00
while [ "$(cat release70$branch)" != "$TRAVIS_COMMIT"-70 ]; do sleep 1; git pull; done
2019-09-04 22:16:35 +02:00
}
cp "../madeline$php$branch.phar" .
2019-10-28 22:39:23 +01:00
cp ../tools/phar.php ../examples/mtproxyd .
2019-12-27 15:50:00 +01:00
echo -n "$TRAVIS_COMMIT-$php" > release$php$branch
2019-06-21 21:20:44 +02:00
2019-09-21 20:43:01 +02:00
[ "$IS_RELEASE" == "y" ] && {
2019-06-21 21:20:44 +02:00
cp release$php$branch release$php
cp madeline$php$branch.phar madeline$php.phar
}
git add -A
git commit -am "Release $TRAVIS_BRANCH - $TRAVIS_COMMIT_MESSAGE"
2019-09-04 22:16:35 +02:00
git push origin master
2019-09-04 19:17:16 +02:00
2018-02-21 12:55:42 +01:00
cd ..
echo "$TRAVIS_COMMIT_MESSAGE" | grep "Apply fixes from StyleCI" && exit
2018-02-20 13:15:32 +01:00
[ -d JSON.sh ] || git clone https://github.com/dominictarr/JSON.sh
for chat_id in $destinations;do
2019-12-25 19:38:44 +01:00
ID=$(curl -s https://api.telegram.org/bot$BOT_TOKEN/sendMessage -F disable_web_page_preview=1 -F text=" <b>Recent Commits to MadelineProto:$TRAVIS_BRANCH</b>
<a href=\"https://github.com/danog/MadelineProto/commit/$TRAVIS_COMMIT\">$TRAVIS_COMMIT_MESSAGE (PHP $PHP_MAJOR_VERSION.$PHP_MINOR_VERSION)</a>
$TRAVIS_COMMIT_MESSAGE" -F parse_mode="HTML" -F chat_id=$chat_id | JSON.sh/JSON.sh -s | egrep '\["result","message_id"\]' | cut -f 2 | cut -d '"' -f 2)
2018-02-20 13:15:32 +01:00
done