Yii2 framework backup
You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
 
 
 
 
 
Brandon Kelly eb956e9c6b
primary/replica in a definitely non-breaking way (#18106)
4 years ago
..
assets Simplified tests directory structure a bit 10 years ago
cubrid moved Dockerfile(s) to test folders 8 years ago
data Fix #18096: Fix InlineValidator with anonymous inline function not working well from EachValidator 4 years ago
framework primary/replica in a definitely non-breaking way (#18106) 4 years ago
js Fix #17653: Fix `TypeError: pair[1] is undefined` when query param doesn't have = sign 4 years ago
mssql Fixes #16761: Add volume to config.php for MSSQL tests 6 years ago
runtime Update, add Intro Upgrade from v1 6 years ago
.env-dist Build image in dockerized tests with BUILD_ARG (#15559) 7 years ago
.gitignore Minor cleaning of .gitignore files in tests folder (#17007) 6 years ago
.hhconfig Added empty HHVM config to fix HHVM tests (#15533) 7 years ago
IsOneOfAssert.php Fixes #13879: Added upsert support for `yii\db\QueryBuilder` and `yii\db\Command` 7 years ago
README.md Fixed typo 5 years ago
ResultPrinter.php Fixes for PHP 7.2 compatibility (#14959) 7 years ago
TestCase.php Fixes #17325: Fixed "Cannot drop view" for MySQL while `migrate/fresh` 5 years ago
bootstrap.php improved dockerized tests (#15516) 7 years ago
compatibility.php Code style fixes 7 years ago
docker-compose.caching.yml updated build 8 years ago
docker-compose.mysql.yml updated build 8 years ago
docker-compose.pgsql.yml updated build 8 years ago
docker-compose.yml Fix #17449: Ensure `CHECK` statement goes after `COMMENT` in MySQL `QueryBuilder::addCommentOnColumn()` 5 years ago
phpunit_getopt.patch Apply patch to PHPUnit which replaces the deprecated each method (#17831) 5 years ago
phpunit_mock_objects.patch Patch PHPUnit mock objects to work correctly with PHP 7.4 5 years ago
test-local.sh Build image in dockerized tests with BUILD_ARG (#15559) 7 years ago

README.md

Yii 2.0 Unit tests

DIRECTORY STRUCTURE

data/            models, config and other test data
    config.php   this file contains configuration for database and caching backends
framework/       the framework unit tests
runtime/         the application runtime dir for the yii test app

HOW TO RUN THE TESTS

Make sure you have PHPUnit installed and that you installed all composer dependencies (run composer update in the repo base directory).

Run PHPUnit in the yii repo base directory.

phpunit

You can run tests for specific groups only:

phpunit --group=mysql,base,i18n

You can get a list of available groups via phpunit --list-groups.

A single test class could be run like the following:

phpunit tests/framework/base/ObjectTest.php

TEST CONFIGURATION

PHPUnit configuration is in phpunit.xml.dist in repository root folder. You can create your own phpunit.xml to override dist config.

Database and other backend system configuration can be found in tests/data/config.php adjust them to your needs to allow testing databases and caching in your environment. You can override configuration values by creating a config.local.php file and manipulate the $config variable. For example to change MySQL username and password your config.local.php should contain the following:

<?php
$config['databases']['mysql']['username'] = 'yiitest';
$config['databases']['mysql']['password'] = 'changeme';

DOCKERIZED TESTING

Get started by going to the tests directory and copy the environment configuration.

cd tests
cp .env-dist .env

The newly created .env file defines the configuration files used by docker-compose. By default MySQL, Postgres and Caching services are enabled.

You can choose services available for testing by merging docker-compose.[...].yml files in .env. For example, if you only want to test with MySQL, you can modify the COMPOSE_FILE variable as follows

COMPOSE_FILE=docker-compose.yml:docker-compose.mysql.yml

When starting the stack now, you get containers for databases and caching servers to test with.

docker-compose up -d

After all services have been initialized and the stack is fully up and running enter the PHP container

docker-compose exec php bash

Run a group of unit tests

$ vendor/bin/phpunit -v --group base --debug

Examples for running phpunit in a separate container

docker-compose run php vendor/bin/phpunit -v --group caching,db   
docker-compose run php vendor/bin/phpunit -v --exclude base,caching,db,i18n,log,mutex,rbac,validators,web
docker-compose run php vendor/bin/phpunit -v --exclude mssql,oci,wincache,xcache,zenddata,cubrid

Note: Documentation about installing additional extensions can be found at yiisoft/yii2-docker.

Cubrid

Note: Images for testing Cubrid are based on PHP 5, due to incompatibilities with PHP 7

cd tests/cubrid
docker-compose up -d
docker-compose run php vendor/bin/phpunit -v --group cubrid

MSSQL

Note: Images for testing MSSQL are based on bylexus/apache-php7 (Ubuntu) since drivers are not available for Debian or Alpine.

experimental

  • needs 3.5 GB RAM, Docker-host with >4.5 GB is recommended for testing
  • database CLI tsgkadot/mssql-tools

Example commands

cd tests/mssql

Using a shell

docker-compose run --rm sqlcmd sqlcmd -S mssql -U sa -P Microsoft-12345

Create database with sqlcmd

$ sqlcmd -S mssql -U sa -P Microsoft-12345 -Q "CREATE DATABASE yii2test"

Create database (one-liner)

docker-compose run --rm sqlcmd sqlcmd -S mssql -U sa -P Microsoft-12345 -Q "CREATE DATABASE yii2test"

Run MSSQL tests

docker-compose run php 
$ vendor/bin/phpunit --group mssql

Build triggers

curl -X POST \
     -F token=${TOKEN} \
     -F ref=travis \
     -F "variables[DOCKER_MYSQL_IMAGE]=mysql:5.6" \
     -F "variables[DOCKER_POSTGRES_IMAGE]=postgres:9.5" \
     ${TRIGGER_URL}

Run tests locally

Via shell script

cd tests
sh test-local.sh default

Via runner

experimental

docker-compose configuration

runner:
  image: schmunk42/gitlab-runner
  entrypoint: bash
  working_dir: /project
  volumes:
    - ../:/project
    - /var/run/docker.sock:/var/run/docker.sock
  environment:
    - RUNNER_BUILDS_DIR=${PWD}/..    

Start runner bash

docker-compose -f docker-compose.runner.yml run runner

Execute jobs via shell runner (with docker-compose support)

$ gitlab-runner exec shell build
$ gitlab-runner exec shell test