mirror of
https://github.com/archtechx/tenancy.git
synced 2025-12-12 16:24:04 +00:00
* Run cache tests on all supported drivers * update ci healthcheck for memcached * remove memcached healthcheck * fix typos in test comments, expand internal.md [ci skip] * add empty line [ci skip] * switch to using $store->setPrefix() * add dynamodb * refactor try-finally to try-catch * remove unnecessary clearResolvedInstances() call * add dual Cache:: and cache() assertions * add apc * Flush APCu cache in test setup * Revert "add dual Cache:: and cache() assertions" This reverts commit a0bab162fbe2dd0d25e7056ceca4fb7ce54efc77. * phpstan fix * Add logic for scoping 'file' disks to FilesystemTenancyBootstrapper * minor changes, add todos * refactor how the session.connection is used in the DB session bootstrapper * add session forgery prevention logic to the db session bootstrapper * only use the fs bootstrapper for file disk in 'cache data is separated' dataset * minor session scoping test changes * Add session scoping logic to FilesystemTenancyBootstrapper, correctly update disk roots even with storage_path_tenancy disabled * Fix code style (php-cs-fixer) * update docblock * make not-null check more explicit * separate bootstrapper tests, fix swapped test names for two tests * refactor cache bootstrapper tests * resolve global cache todo * expand tests: session separation tests, more filesystem separation assertions; change prefix_base-type config keys to templates/formats * add apc session scoping test, various session separation bugfixes * phpstan + minor logic fixes * prefix_format -> prefix * fix database session separation test * revert composer.json changes, update laravel dependencies to expected next release * only run session scoping logic in cache bootstrapper for redis, memcached, dynamodb, apc; update gitattributes * tenancy.central_domains -> tenancy.identification.central_domains * db session separation test: add datasets --------- Co-authored-by: PHP CS Fixer <phpcsfixer@example.com>
107 lines
3.3 KiB
YAML
107 lines
3.3 KiB
YAML
version: '2.4'
|
|
services:
|
|
test:
|
|
build:
|
|
context: .
|
|
args:
|
|
PHP_VERSION: ${PHP_VERSION:-8.2}
|
|
depends_on:
|
|
mysql:
|
|
condition: service_healthy
|
|
mysql2:
|
|
condition: service_healthy
|
|
postgres:
|
|
condition: service_healthy
|
|
redis:
|
|
condition: service_healthy
|
|
mssql:
|
|
condition: service_healthy
|
|
memcached:
|
|
condition: service_healthy
|
|
dynamodb:
|
|
condition: service_healthy
|
|
volumes:
|
|
- .:/var/www/html:delegated
|
|
environment:
|
|
DOCKER: 1
|
|
DB_PASSWORD: password
|
|
DB_USERNAME: root
|
|
DB_DATABASE: main
|
|
TENANCY_TEST_REDIS_HOST: redis
|
|
TENANCY_TEST_MYSQL_HOST: mysql
|
|
TENANCY_TEST_PGSQL_HOST: postgres
|
|
TENANCY_TEST_SQLSRV_HOST: mssql
|
|
TENANCY_TEST_SQLSRV_USERNAME: sa
|
|
TENANCY_TEST_SQLSRV_PASSWORD: P@ssword
|
|
stdin_open: true
|
|
tty: true
|
|
mysql:
|
|
image: mysql:5.7
|
|
environment:
|
|
MYSQL_ROOT_PASSWORD: password
|
|
MYSQL_DATABASE: main
|
|
MYSQL_USER: user # redundant
|
|
MYSQL_PASSWORD: password
|
|
healthcheck:
|
|
test: ["CMD", "mysqladmin" ,"ping", "-h", "localhost"]
|
|
timeout: 10s
|
|
retries: 10
|
|
tmpfs:
|
|
- /var/lib/mysql
|
|
mysql2:
|
|
image: mysql:5.7
|
|
environment:
|
|
MYSQL_ROOT_PASSWORD: password
|
|
MYSQL_DATABASE: main
|
|
MYSQL_USER: user # redundant
|
|
MYSQL_PASSWORD: password
|
|
healthcheck:
|
|
test: ["CMD", "mysqladmin" ,"ping", "-h", "localhost"]
|
|
timeout: 10s
|
|
retries: 10
|
|
tmpfs:
|
|
- /var/lib/mysql
|
|
postgres:
|
|
image: postgres:11
|
|
environment:
|
|
POSTGRES_PASSWORD: password
|
|
POSTGRES_USER: root # superuser name
|
|
POSTGRES_DB: main
|
|
healthcheck:
|
|
test: ["CMD-SHELL", "pg_isready -U postgres"]
|
|
interval: 10s
|
|
timeout: 5s
|
|
retries: 5
|
|
tmpfs:
|
|
- /var/lib/postgresql/data
|
|
mssql:
|
|
image: mcr.microsoft.com/mssql/server:2019-latest
|
|
environment:
|
|
- ACCEPT_EULA=Y
|
|
- SA_PASSWORD=P@ssword # todo reuse env from above
|
|
healthcheck: # https://github.com/Microsoft/mssql-docker/issues/133#issuecomment-1995615432
|
|
test: timeout 1 bash -c 'cat < /dev/null > /dev/tcp/127.0.0.1/1433'
|
|
interval: 10s
|
|
timeout: 10s
|
|
retries: 10
|
|
redis:
|
|
image: redis:alpine
|
|
healthcheck:
|
|
test: ["CMD", "redis-cli", "ping"]
|
|
interval: 1s
|
|
timeout: 3s
|
|
retries: 20
|
|
memcached:
|
|
image: memcached:alpine
|
|
healthcheck:
|
|
test: ["CMD-SHELL", "echo version | nc localhost 11211 | grep -q VERSION"]
|
|
interval: 1s
|
|
timeout: 3s
|
|
retries: 20
|
|
dynamodb:
|
|
image: amazon/dynamodb-local:latest
|
|
healthcheck:
|
|
test: ["CMD-SHELL", "cat < /dev/null > /dev/tcp/127.0.0.1/8000"]
|
|
interval: 1s
|
|
timeout: 3s
|
|
retries: 20
|