forked from mirror/prosody
80216c5fdc
* Add environment variables for Database configuration. * Install postgres and mysql dependencies. * Test refactoring * Run tests for prosody with postgres and also for prosody with sqlite. * Add tests that check if postgres or sqlite is used.
71 lines
1.9 KiB
Bash
Executable file
71 lines
1.9 KiB
Bash
Executable file
#!/bin/bash
|
|
|
|
set -e
|
|
|
|
# generate certs for testing
|
|
|
|
generateCert() {
|
|
DOMAIN="$1"
|
|
if [[ ! -d certs/"$DOMAIN" ]] ; then
|
|
mkdir -p certs/"$DOMAIN"
|
|
cd certs/"$DOMAIN"
|
|
openssl req -x509 -newkey rsa:4096 -keyout privkey.pem -out fullchain.pem -days 365 -subj "/CN=$DOMAIN" -nodes
|
|
chmod 777 *.pem
|
|
cd ../../
|
|
fi
|
|
}
|
|
|
|
registerTestUser() {
|
|
local userName="$1"
|
|
local containerName="$2"
|
|
sudo docker exec "$containerName" /bin/bash -c "/entrypoint.bash register $userName localhost 12345678"
|
|
}
|
|
|
|
registerTestUsers() {
|
|
local containerName="$1"
|
|
registerTestUser admin "$containerName"
|
|
registerTestUser user1 "$containerName"
|
|
registerTestUser user2 "$containerName"
|
|
registerTestUser user3 "$containerName"
|
|
}
|
|
|
|
runTests() {
|
|
local containerName="$1"
|
|
python --version \
|
|
&& python3 --version \
|
|
&& python3 -m venv venv \
|
|
&& source venv/bin/activate \
|
|
&& python --version \
|
|
&& pip --version \
|
|
&& pip install -r requirements.txt \
|
|
&& pytest \
|
|
&& deactivate \
|
|
&& sleep 5 \
|
|
&& sudo docker-compose logs "$containerName" \
|
|
&& export batsContainerName="$containerName" \
|
|
&& ./bats/bats-core/bin/bats tests.bats \
|
|
&& ./bats/bats-core/bin/bats tests-"$containerName".bats
|
|
}
|
|
|
|
generateCert "localhost"
|
|
generateCert "conference.localhost"
|
|
generateCert "proxy.localhost"
|
|
generateCert "pubsub.localhost"
|
|
generateCert "upload.localhost"
|
|
|
|
# Run tests for first container with postgres
|
|
# Start postgres first and wait for 10 seconds before starting prosody.
|
|
sudo docker-compose down \
|
|
&& sudo docker-compose up -d postgres \
|
|
&& sleep 10 \
|
|
&& sudo docker-compose up -d prosody_postgres
|
|
|
|
registerTestUsers tests_prosody_postgres_1
|
|
runTests prosody_postgres
|
|
sudo docker-compose down
|
|
|
|
# Run tests for second container with SQLite
|
|
sudo docker-compose up -d prosody
|
|
registerTestUsers tests_prosody_1
|
|
runTests prosody
|
|
sudo docker-compose down
|