1
0
Fork 0
mirror of synced 2024-06-02 10:54:44 +12:00

E2E Tests

This commit is contained in:
eldadfux 2019-08-26 07:56:01 +03:00
parent e4288815df
commit 17f67c0277
2 changed files with 77 additions and 5 deletions

View file

@ -1,11 +1,9 @@
language: php
php:
- '7.0'
- '7.1'
- '7.2'
- '7.3'
- hhvm # on Trusty only
- nightly
addons:
hosts:
@ -15,8 +13,17 @@ notifications:
email:
- eldad@appwrite.io
install:
services:
- docker
before_install:
- composer update --ignore-platform-reqs --optimize-autoloader --no-dev --no-plugins --no-scripts
install:
- docker-compose up -d -f tests/resources/docker-compose.yml
- sleep 60
script:
- php -v
- php -v
- ls storage
- ls tests/reosurces/storage

View file

@ -0,0 +1,65 @@
version: '3'
services:
appwrite:
build: .
restart: unless-stopped
volumes:
- ./tests/resources/storage:/storage:rw
ports:
- "80:80"
- "443:443"
environment:
- _APP_ENV=development
- _APP_OPENSSL_KEY_V1=just-a-random-key
- _APP_REDIS_HOST=redis
- _APP_REDIS_PORT=6379
- _APP_DB_HOST=mariadb
- _APP_DB_PORT=3306
- _APP_DB_SCHEMA=appwrite
- _APP_DB_USER=root
- _APP_DB_PASS=password
- _APP_INFLUXDB_HOST=influxdb
- _APP_INFLUXDB_PORT=8086
- _APP_STATSD_HOST=telegraf
- _APP_STATSD_PORT=8125
mariadb:
image: appwrite/mariadb:1.0.0
restart: unless-stopped
environment:
- MYSQL_ROOT_PASSWORD=password
#volumes:
#- ./storage/db:/var/lib/mysql:rw
ports:
- 3306:3306/tcp
smtp:
image: appwrite/smtp:1.0.0
environment:
- MAILNAME=appwrite
- RELAY_NETWORKS=:192.168.0.0/24:10.0.0.0/16
ports:
- "25:25"
clamav:
image: appwrite/clamav:1.0.4
restart: unless-stopped
volumes:
- ./tests/resources/storage:/storage:rw
redis:
image: redis:5.0
restart: unless-stopped
influxdb:
image: influxdb:1.6
volumes:
- ./tests/resources/storage/influxdb:/var/lib/influxdb
ports:
- "8086:8086"
telegraf:
image: appwrite/telegraf:1.0.0
ports:
- "8125:8125/udp"