Add group for cache tests

This commit is contained in:
Philipp Holzer 2019-09-23 14:31:13 +02:00
parent d5dd12b8f8
commit 0823f4d72d
No known key found for this signature in database
GPG Key ID: D8365C3D36B77D90
9 changed files with 32 additions and 2 deletions

View File

@ -134,13 +134,31 @@ function execute_tests {
echo "No coverage"
fi
# per default, there is no cache installed
GROUP='--exclude-group=REDIS,MEMCACHE,MEMCACHED,APCU'
if [ "$TEST_SELECTION" == "REDIS" ]; then
GROUP="--group REDIS"
fi
if [ "$TEST_SELECTION" == "MEMCACHE" ]; then
GROUP="--group MEMCACHE"
fi
if [ "$TEST_SELECTION" == "MEMCACHED" ]; then
GROUP="--group MEMCACHED"
fi
if [ "$TEST_SELECTION" == "APCU" ]; then
GROUP="--group APCU"
fi
if [ "$TEST_SELECTION" == "NODB" ]; then
GROUP="--exclude-group=DB,SLOWDB"
fi
INPUT="$BASEDIR/tests"
if [ -n "$1" ]; then
INPUT="$INPUT/$1"
fi
echo "${PHPUNIT[@]}" --configuration tests/phpunit.xml $COVER --log-junit "autotest-results.xml" "$INPUT" "$2"
"${PHPUNIT[@]}" --configuration tests/phpunit.xml $COVER --log-junit "autotest-results.xml" "$INPUT" "$2"
echo "${PHPUNIT[@]}" --configuration tests/phpunit.xml "$GROUP" "$COVER" --log-junit "autotest-results.xml" "$INPUT" "$2"
"${PHPUNIT[@]}" --configuration tests/phpunit.xml "$GROUP" "$COVER" --log-junit "autotest-results.xml" "$INPUT" "$2"
RESULT=$?
if [ -n "$DOCKER_CONTAINER_ID" ]; then

View File

@ -4,6 +4,9 @@ namespace Friendica\Test\src\Core\Cache;
use Friendica\Core\Cache\APCuCache;
/**
* @group APCU
*/
class APCuCacheTest extends MemoryCacheTest
{
protected function setUp()

View File

@ -7,6 +7,7 @@ use Friendica\Core\Config\Configuration;
/**
* @requires extension memcache
* @group MEMCACHE
*/
class MemcacheCacheTest extends MemoryCacheTest
{

View File

@ -9,6 +9,7 @@ use Psr\Log\NullLogger;
/**
* @requires extension memcached
* @group MEMCACHED
*/
class MemcachedCacheTest extends MemoryCacheTest
{

View File

@ -8,6 +8,7 @@ use Friendica\Core\Config\Configuration;
/**
* @requires extension redis
* @group REDIS
*/
class RedisCacheTest extends MemoryCacheTest
{

View File

@ -5,6 +5,9 @@ namespace Friendica\Test\src\Core\Lock;
use Friendica\Core\Cache\APCuCache;
use Friendica\Core\Lock\CacheLock;
/**
* @group APCU
*/
class APCuCacheLockTest extends LockTest
{
protected function setUp()

View File

@ -9,6 +9,7 @@ use Friendica\Core\Lock\CacheLock;
/**
* @requires extension Memcache
* @group MEMCACHE
*/
class MemcacheCacheLockTest extends LockTest
{

View File

@ -10,6 +10,7 @@ use Psr\Log\NullLogger;
/**
* @requires extension memcached
* @group MEMCACHED
*/
class MemcachedCacheLockTest extends LockTest
{

View File

@ -9,6 +9,7 @@ use Friendica\Core\Lock\CacheLock;
/**
* @requires extension redis
* @group REDIS
*/
class RedisCacheLockTest extends LockTest
{