1
0
mirror of https://github.com/danog/MadelineProto.git synced 2024-11-26 22:54:39 +01:00
MadelineProto/tests/makephar.sh
2024-04-07 03:21:02 +02:00

222 lines
4.7 KiB
Bash
Executable File

#!/bin/bash -e
# Configure
echo >> /usr/local/etc/php/php.ini
echo 'phar.readonly = 0' >> /usr/local/etc/php/php.ini
php -r "copy('https://getcomposer.org/installer', 'composer-setup.php');"
php composer-setup.php
php -r "unlink('composer-setup.php');"
mv composer.phar /usr/local/bin/composer
apk add procps git unzip github-cli openssh
echo "$CI_COMMIT_TAG" | grep -q '\.9999' && exit 0 || true
echo "$CI_COMMIT_TAG" | grep -q '\.9998' && exit 0 || true
PHP_MAJOR_VERSION=$(php -r 'echo PHP_MAJOR_VERSION;')
PHP_MINOR_VERSION=$(php -r 'echo PHP_MINOR_VERSION;')
php=$PHP_MAJOR_VERSION$PHP_MINOR_VERSION
COMMIT="$(git log -1 --pretty=%H)"
BRANCH=$(git rev-parse --abbrev-ref HEAD)
COMMIT_MESSAGE="$(git log -1 --pretty=%B HEAD)"
git config --global user.email "41898282+github-actions[bot]@users.noreply.github.com"
git config --global user.name "Github Actions"
if [ "$CI_COMMIT_TAG" == "" ]; then
export CI_COMMIT_TAG=7777
git tag "$CI_COMMIT_TAG"
git checkout "$CI_COMMIT_TAG"
fi
if [ "$CI_COMMIT_TAG" != "7777" ]; then
grep -q "const RELEASE = '$CI_COMMIT_TAG'" src/API.php || {
echo "The RELEASE constant is not up to date!"
exit 1
}
fi
export TEST_SECRET_CHAT=test
export TEST_USERNAME=danogentili
export TEST_DESTINATION_GROUPS='["@danogentili"]'
export MTPROTO_SETTINGS='{"logger":{"logger_level":5}}'
echo "PHP: $php"
echo "Branch: $BRANCH"
echo "Commit: $COMMIT"
echo "Latest tag: $CI_COMMIT_TAG"
# Clean up
madelinePath=$PWD
dd if=/dev/random of=tests/60 bs=1M count=60
k()
{
while :; do pkill -f "MadelineProto worker $(pwd)/tests/../testing.madeline" || break && sleep 1; done
}
k
rm -rf madeline.phar testing.madeline*
composer update
#composer test
#vendor/bin/phpunit tests/danog/MadelineProto/EntitiesTest.php
COMPOSER_TAG="$CI_COMMIT_TAG"
rm -rf vendor*
git reset --hard
git checkout "$COMPOSER_TAG"
cd ..
rm -rf phar
mkdir phar
cd phar
# Install
mkdir -p ~/.composer
echo '{"github-oauth": {"github.com": "'$GITHUB_TOKEN'"}}' > ~/.composer/auth.json
echo '{
"name": "danog/madelineprotophar",
"require": {
"danog/madelineproto": "'$COMPOSER_TAG'"
},
"authors": [
{
"name": "Daniil Gentili",
"email": "daniil@daniil.it"
}
],
"config": {
"allow-plugins": {
"symfony/thanks": true
}
},
"repositories": [
{
"type": "path",
"url": "'$madelinePath'",
"options": {"symlink": false}
}
]
}' > composer.json
php $(which composer) update --no-cache
php $(which composer) dumpautoload --optimize
rm -rf vendor/danog/madelineproto/docs vendor/danog/madelineproto/vendor-bin
mkdir -p vendor/danog/madelineproto/src/danog/MadelineProto/Ipc/Runner
cp vendor/danog/madelineproto/src/Ipc/Runner/entry.php vendor/danog/madelineproto/src/danog/MadelineProto/Ipc/Runner
branch="-$BRANCH"
cd $madelinePath
db()
{
php tests/db.php $1 $2
}
cycledb()
{
for f in serialize igbinary; do
db memory $f
db mysql $f
db postgres $f
db redis $f
db memory $f
done
}
runTestSimple()
{
{
echo "n
n
n
"; } | tests/testing.php
}
runTest()
{
{
echo "$BOT_TOKEN
n
n
n
"; } | $p tests/testing.php
}
runTestOld()
{
{
echo "b
$BOT_TOKEN
n
n
n
"; } | $p tests/testing.php
}
k
rm -f madeline.phar testing.madeline*
tail -F MadelineProto.log &
tail -F tests/MadelineProto.log &
echo "Testing with previous version..."
export ACTIONS_FORCE_PREVIOUS=1
cp tools/phar.php madeline.php
runTest
db mysql serialize
k
echo "Testing with new version (upgrade)..."
rm -f madeline-*phar madeline.version
php tools/makephar.php $madelinePath/../phar "madeline$php$branch.phar" "$COMMIT-81"
cp "madeline$php$branch.phar" "madeline-TESTING.phar"
echo -n "TESTING" > "madeline.version"
echo 0.0.0.0 phar.madelineproto.xyz > /etc/hosts
cp tools/phar.php madeline.php
export ACTIONS_PHAR=1
runTestSimple
#runTest
cycledb
k
echo "Testing with new version (restart)"
rm -rf testing.madeline || echo
runTest
echo "Testing with new version (reload)"
runTestSimple
k
echo "Testing with new version (kill+reload)"
runTestSimple
k
echo "Checking syntax of madeline.php"
php -l ./tools/phar.php
input=$PWD
cd "$madelinePath"
if [ "$CI_COMMIT_TAG" == "7777" ]; then exit 0; fi
cp "$input/madeline$php$branch.phar" "madeline81.phar"
git remote add hub https://github.com/danog/MadelineProto
echo -n "$CI_COMMIT_TAG" > release
cp tools/phar.php madeline.php
gh release upload "$CI_COMMIT_TAG" "madeline81.phar"
gh release upload "$CI_COMMIT_TAG" "release"
gh release upload "$CI_COMMIT_TAG" "madeline.php"
gh release edit --prerelease=false "$CI_COMMIT_TAG"
gh release edit --latest=true "$CI_COMMIT_TAG"