mirror of
https://gitlab.com/Chill-Projet/chill-bundles.git
synced 2025-06-12 13:24:25 +00:00
update export & aggregator & filter to new api + add tests
This commit is contained in:
parent
a7dfc5e1bd
commit
2997614a04
1
.gitignore
vendored
1
.gitignore
vendored
@ -4,3 +4,4 @@ Tests/Fixtures/App/app/DoctrineMigrations/*
|
|||||||
Test/Fixtures/App/app/DoctrineMigrations/*
|
Test/Fixtures/App/app/DoctrineMigrations/*
|
||||||
Test/Fixtures/App/app/cache/*
|
Test/Fixtures/App/app/cache/*
|
||||||
Test/Fixtures/App/app/config/parameters.yml
|
Test/Fixtures/App/app/config/parameters.yml
|
||||||
|
/nbproject/private/
|
@ -24,6 +24,8 @@ use Doctrine\ORM\QueryBuilder;
|
|||||||
use Chill\MainBundle\Export\AggregatorInterface;
|
use Chill\MainBundle\Export\AggregatorInterface;
|
||||||
use Symfony\Component\Security\Core\Role\Role;
|
use Symfony\Component\Security\Core\Role\Role;
|
||||||
use Chill\ActivityBundle\Security\Authorization\ActivityVoter;
|
use Chill\ActivityBundle\Security\Authorization\ActivityVoter;
|
||||||
|
use Doctrine\ORM\EntityRepository;
|
||||||
|
use Chill\MainBundle\Templating\TranslatableStringHelper;
|
||||||
|
|
||||||
/**
|
/**
|
||||||
*
|
*
|
||||||
@ -32,26 +34,65 @@ use Chill\ActivityBundle\Security\Authorization\ActivityVoter;
|
|||||||
*/
|
*/
|
||||||
class ReasonAggregator implements AggregatorInterface
|
class ReasonAggregator implements AggregatorInterface
|
||||||
{
|
{
|
||||||
|
/**
|
||||||
|
*
|
||||||
|
* @var EntityRepository
|
||||||
|
*/
|
||||||
|
protected $categoryRepository;
|
||||||
|
|
||||||
|
/**
|
||||||
|
*
|
||||||
|
* @var EntityRepository
|
||||||
|
*/
|
||||||
|
protected $reasonRepository;
|
||||||
|
|
||||||
|
/**
|
||||||
|
*
|
||||||
|
* @var TranslatableStringHelper
|
||||||
|
*/
|
||||||
|
protected $stringHelper;
|
||||||
|
|
||||||
|
public function __construct(
|
||||||
|
EntityRepository $categoryRepository,
|
||||||
|
EntityRepository $reasonRepository,
|
||||||
|
TranslatableStringHelper $stringHelper
|
||||||
|
) {
|
||||||
|
$this->categoryRepository = $categoryRepository;
|
||||||
|
$this->reasonRepository = $reasonRepository;
|
||||||
|
$this->stringHelper = $stringHelper;
|
||||||
|
}
|
||||||
|
|
||||||
public function alterQuery(QueryBuilder $qb, $data)
|
public function alterQuery(QueryBuilder $qb, $data)
|
||||||
{
|
{
|
||||||
// add select element
|
// add select element
|
||||||
if ($data['level'] === 'reason') {
|
if ($data['level'] === 'reasons') {
|
||||||
$elem = 'reason.id';
|
$elem = 'reasons.id';
|
||||||
$alias = 'activity_reason_id';
|
$alias = 'activity_reasons_id';
|
||||||
} elseif ($data['level'] === 'category') {
|
} elseif ($data['level'] === 'categories') {
|
||||||
$elem = 'category.id';
|
$elem = 'category.id';
|
||||||
$alias = 'activity_category_id';
|
$alias = 'activity_categories_id';
|
||||||
} else {
|
} else {
|
||||||
throw new \RuntimeException('the data provided are not recognised');
|
throw new \RuntimeException('the data provided are not recognized');
|
||||||
}
|
}
|
||||||
|
|
||||||
$qb->addSelect($elem.' as '.$alias);
|
$qb->addSelect($elem.' as '.$alias);
|
||||||
|
// make a jointure only if needed
|
||||||
|
// add a join to reasons only if needed
|
||||||
|
if (array_key_exists('activity', $qb->getDQLPart('join'))) {
|
||||||
|
// we want to avoid multiple join on same object
|
||||||
|
if (!$this->checkJoinAlreadyDefined($qb->getDQLPart('join')['activity'], 'reasons')) {
|
||||||
|
$qb->add('join', new Join(Join::INNER_JOIN, 'activity.reasons', 'reasons'));
|
||||||
|
}
|
||||||
|
} else {
|
||||||
|
$qb->join('activity.reasons', 'reasons');
|
||||||
|
}
|
||||||
|
|
||||||
// make a jointure
|
|
||||||
$qb->join('activity.reason', 'reason');
|
|
||||||
// join category if necessary
|
// join category if necessary
|
||||||
if ($alias === 'activity_category_id') {
|
if ($alias === 'activity_categories_id') {
|
||||||
$qb->join('reason.category', 'category');
|
// add join only if needed
|
||||||
|
if (!$this->checkJoinAlreadyDefined($qb->getDQLPart('join')['activity'], 'category')) {
|
||||||
|
$qb->join('reasons.category', 'category');
|
||||||
|
}
|
||||||
}
|
}
|
||||||
|
|
||||||
// add the "group by" part
|
// add the "group by" part
|
||||||
@ -63,6 +104,24 @@ class ReasonAggregator implements AggregatorInterface
|
|||||||
$qb->groupBy($alias);
|
$qb->groupBy($alias);
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
|
||||||
|
/**
|
||||||
|
* Check if a join between Activity and another alias
|
||||||
|
*
|
||||||
|
* @param Join[] $joins
|
||||||
|
* @param string $alias the alias to search for
|
||||||
|
* @return boolean
|
||||||
|
*/
|
||||||
|
private function checkJoinAlreadyDefined(array $joins, $alias)
|
||||||
|
{
|
||||||
|
foreach ($joins as $join) {
|
||||||
|
if ($join->getAlias() === $alias) {
|
||||||
|
return true;
|
||||||
|
}
|
||||||
|
}
|
||||||
|
|
||||||
|
return false;
|
||||||
|
}
|
||||||
|
|
||||||
public function applyOn()
|
public function applyOn()
|
||||||
{
|
{
|
||||||
@ -73,12 +132,13 @@ class ReasonAggregator implements AggregatorInterface
|
|||||||
{
|
{
|
||||||
$builder->add('level', 'choice', array(
|
$builder->add('level', 'choice', array(
|
||||||
'choices' => array(
|
'choices' => array(
|
||||||
'By reason' => 'reason',
|
'By reason' => 'reasons',
|
||||||
'By category of reason' => 'category'
|
'By category of reason' => 'categories'
|
||||||
),
|
),
|
||||||
'choices_as_values' => true,
|
'choices_as_values' => true,
|
||||||
'multiple' => false,
|
'multiple' => false,
|
||||||
'expanded' => true
|
'expanded' => true,
|
||||||
|
'label' => 'Reason\'s level'
|
||||||
));
|
));
|
||||||
}
|
}
|
||||||
|
|
||||||
@ -94,17 +154,54 @@ class ReasonAggregator implements AggregatorInterface
|
|||||||
|
|
||||||
public function getLabels($key, array $values, $data)
|
public function getLabels($key, array $values, $data)
|
||||||
{
|
{
|
||||||
return array_combine($values, $values);
|
// for performance reason, we load data from db only once
|
||||||
|
switch ($data['level']) {
|
||||||
|
case 'reasons':
|
||||||
|
$this->reasonRepository->findBy(array('id' => $values));
|
||||||
|
break;
|
||||||
|
case 'categories':
|
||||||
|
$this->categoryRepository->findBy(array('id' => $values));
|
||||||
|
break;
|
||||||
|
default:
|
||||||
|
throw new \RuntimeException(sprintf("the level data '%s' is invalid",
|
||||||
|
$data['level']));
|
||||||
|
}
|
||||||
|
|
||||||
|
return function($value) use ($data) {
|
||||||
|
if ($value === '_header') {
|
||||||
|
return $data['level'] === 'reasons' ?
|
||||||
|
'Group by reasons'
|
||||||
|
:
|
||||||
|
'Group by categories of reason'
|
||||||
|
;
|
||||||
|
}
|
||||||
|
|
||||||
|
switch ($data['level']) {
|
||||||
|
case 'reasons':
|
||||||
|
$n = $this->reasonRepository->find($value)
|
||||||
|
->getName()
|
||||||
|
;
|
||||||
|
break;
|
||||||
|
case 'categories':
|
||||||
|
$n = $this->categoryRepository->find($value)
|
||||||
|
->getName()
|
||||||
|
;
|
||||||
|
break;
|
||||||
|
// no need for a default : the default was already set above
|
||||||
|
}
|
||||||
|
|
||||||
|
return $this->stringHelper->localize($n);
|
||||||
|
};
|
||||||
|
|
||||||
}
|
}
|
||||||
|
|
||||||
public function getQueryKeys($data)
|
public function getQueryKeys($data)
|
||||||
{
|
{
|
||||||
// add select element
|
// add select element
|
||||||
if ($data['level'] === 'reason') {
|
if ($data['level'] === 'reasons') {
|
||||||
return array('activity_reason_id');
|
return array('activity_reasons_id');
|
||||||
} elseif ($data['level'] === 'category') {
|
} elseif ($data['level'] === 'categories') {
|
||||||
return array ('activity_category_id');
|
return array ('activity_categories_id');
|
||||||
} else {
|
} else {
|
||||||
throw new \RuntimeException('the data provided are not recognised');
|
throw new \RuntimeException('the data provided are not recognised');
|
||||||
}
|
}
|
||||||
|
@ -102,10 +102,13 @@ class CountActivity implements ExportInterface
|
|||||||
throw new \LogicException("the key $key is not used by this export");
|
throw new \LogicException("the key $key is not used by this export");
|
||||||
}
|
}
|
||||||
|
|
||||||
$labels = array_combine($values, $values);
|
return function($value) {
|
||||||
$labels['_header'] = 'Number of activities';
|
return $value === '_header' ?
|
||||||
|
'Number of activities'
|
||||||
return $labels;
|
:
|
||||||
|
$value
|
||||||
|
;
|
||||||
|
};
|
||||||
}
|
}
|
||||||
|
|
||||||
public function getQueryKeys($data)
|
public function getQueryKeys($data)
|
||||||
|
@ -28,6 +28,8 @@ use Chill\MainBundle\Templating\TranslatableStringHelper;
|
|||||||
use Doctrine\ORM\Query\Expr;
|
use Doctrine\ORM\Query\Expr;
|
||||||
use Symfony\Component\Security\Core\Role\Role;
|
use Symfony\Component\Security\Core\Role\Role;
|
||||||
use Chill\ActivityBundle\Security\Authorization\ActivityVoter;
|
use Chill\ActivityBundle\Security\Authorization\ActivityVoter;
|
||||||
|
use Doctrine\ORM\EntityRepository;
|
||||||
|
use Doctrine\ORM\Query\Expr\Join;
|
||||||
|
|
||||||
/**
|
/**
|
||||||
*
|
*
|
||||||
@ -40,18 +42,38 @@ class ActivityReasonFilter implements FilterInterface
|
|||||||
*
|
*
|
||||||
* @var TranslatableStringHelper
|
* @var TranslatableStringHelper
|
||||||
*/
|
*/
|
||||||
public $translatableStringHelper;
|
protected $translatableStringHelper;
|
||||||
|
|
||||||
public function __construct(TranslatableStringHelper $helper)
|
/**
|
||||||
{
|
* The repository for activity reasons
|
||||||
|
*
|
||||||
|
* @var EntityRepository
|
||||||
|
*/
|
||||||
|
protected $reasonRepository;
|
||||||
|
|
||||||
|
public function __construct(
|
||||||
|
TranslatableStringHelper $helper,
|
||||||
|
EntityRepository $reasonRepository
|
||||||
|
) {
|
||||||
$this->translatableStringHelper = $helper;
|
$this->translatableStringHelper = $helper;
|
||||||
|
$this->reasonRepository = $reasonRepository;
|
||||||
}
|
}
|
||||||
|
|
||||||
|
|
||||||
public function alterQuery(QueryBuilder $qb, $data)
|
public function alterQuery(QueryBuilder $qb, $data)
|
||||||
{
|
{
|
||||||
$where = $qb->getDQLPart('where');
|
$where = $qb->getDQLPart('where');
|
||||||
$clause = $qb->expr()->in('activity.reason', ':selected_activity_reasons');
|
$join = $qb->getDQLPart('join');
|
||||||
|
$clause = $qb->expr()->in('reasons', ':selected_activity_reasons');
|
||||||
|
// add a join to reasons only if needed
|
||||||
|
if (array_key_exists('activity', $join)) {
|
||||||
|
// we want to avoid multiple join on same object
|
||||||
|
if (!$this->checkJoinAlreadyDefined($join['activity'])) {
|
||||||
|
$qb->add('join', new Join(Join::INNER_JOIN, 'activity.reasons', 'reasons'));
|
||||||
|
}
|
||||||
|
} else {
|
||||||
|
$qb->join('activity.reasons', 'reasons');
|
||||||
|
}
|
||||||
|
|
||||||
if ($where instanceof Expr\Andx) {
|
if ($where instanceof Expr\Andx) {
|
||||||
$where->add($clause);
|
$where->add($clause);
|
||||||
@ -62,6 +84,23 @@ class ActivityReasonFilter implements FilterInterface
|
|||||||
$qb->add('where', $where);
|
$qb->add('where', $where);
|
||||||
$qb->setParameter('selected_activity_reasons', $data['reasons']);
|
$qb->setParameter('selected_activity_reasons', $data['reasons']);
|
||||||
}
|
}
|
||||||
|
|
||||||
|
/**
|
||||||
|
* Check if a join between Activity and Reason is already defined
|
||||||
|
*
|
||||||
|
* @param Join[] $joins
|
||||||
|
* @return boolean
|
||||||
|
*/
|
||||||
|
private function checkJoinAlreadyDefined(array $joins)
|
||||||
|
{
|
||||||
|
foreach ($joins as $join) {
|
||||||
|
if ($join->getAlias() === 'reasons') {
|
||||||
|
return true;
|
||||||
|
}
|
||||||
|
}
|
||||||
|
|
||||||
|
return false;
|
||||||
|
}
|
||||||
|
|
||||||
public function applyOn()
|
public function applyOn()
|
||||||
{
|
{
|
||||||
@ -95,4 +134,18 @@ class ActivityReasonFilter implements FilterInterface
|
|||||||
{
|
{
|
||||||
return new Role(ActivityVoter::SEE);
|
return new Role(ActivityVoter::SEE);
|
||||||
}
|
}
|
||||||
|
|
||||||
|
public function describeAction($data, $format = 'string')
|
||||||
|
{
|
||||||
|
// collect all the reasons'name used in this filter in one array
|
||||||
|
$reasonsNames = array_map(
|
||||||
|
function(ActivityReason $r) {
|
||||||
|
return "\"".$this->translatableStringHelper->localize($r->getName())."\"";
|
||||||
|
},
|
||||||
|
$this->reasonRepository->findBy(array('id' => $data['reasons']->toArray()))
|
||||||
|
);
|
||||||
|
|
||||||
|
return array("Filtered by reasons: only %list%",
|
||||||
|
["%list%" => implode(", ", $reasonsNames)]);
|
||||||
|
}
|
||||||
}
|
}
|
||||||
|
@ -10,10 +10,15 @@ services:
|
|||||||
class: Chill\ActivityBundle\Export\Filter\ActivityReasonFilter
|
class: Chill\ActivityBundle\Export\Filter\ActivityReasonFilter
|
||||||
arguments:
|
arguments:
|
||||||
- "@chill.main.helper.translatable_string"
|
- "@chill.main.helper.translatable_string"
|
||||||
|
- "@chill_activity.repository.reason"
|
||||||
tags:
|
tags:
|
||||||
- { name: chill.export_filter, alias: 'activity_reason_filter' }
|
- { name: chill.export_filter, alias: 'activity_reason_filter' }
|
||||||
|
|
||||||
chill.activity.export.reason_aggregator:
|
chill.activity.export.reason_aggregator:
|
||||||
class: Chill\ActivityBundle\Export\Aggregator\ReasonAggregator
|
class: Chill\ActivityBundle\Export\Aggregator\ReasonAggregator
|
||||||
|
arguments:
|
||||||
|
- "@chill_activity.repository.reason_category"
|
||||||
|
- "@chill_activity.repository.reason"
|
||||||
|
- "@chill.main.helper.translatable_string"
|
||||||
tags:
|
tags:
|
||||||
- { name: chill.export_aggregator, alias: activity_reason }
|
- { name: chill.export_aggregator, alias: activity_reason }
|
||||||
|
@ -4,3 +4,15 @@ services:
|
|||||||
factory: ['@doctrine.orm.entity_manager', getRepository]
|
factory: ['@doctrine.orm.entity_manager', getRepository]
|
||||||
arguments:
|
arguments:
|
||||||
- 'Chill\ActivityBundle\Entity\ActivityType'
|
- 'Chill\ActivityBundle\Entity\ActivityType'
|
||||||
|
|
||||||
|
chill_activity.repository.reason:
|
||||||
|
class: Doctrine\ORM\EntityRepository
|
||||||
|
factory: ['@doctrine.orm.entity_manager', getRepository]
|
||||||
|
arguments:
|
||||||
|
- 'Chill\ActivityBundle\Entity\ActivityReason'
|
||||||
|
|
||||||
|
chill_activity.repository.reason_category:
|
||||||
|
class: Doctrine\ORM\EntityRepository
|
||||||
|
factory: ['@doctrine.orm.entity_manager', getRepository]
|
||||||
|
arguments:
|
||||||
|
- 'Chill\ActivityBundle\Entity\ActivityReasonCategory'
|
||||||
|
@ -98,3 +98,13 @@ The activity has been successfully removed.: L'activité a été supprimée.
|
|||||||
# exports
|
# exports
|
||||||
Count activities: Nombre d'activités
|
Count activities: Nombre d'activités
|
||||||
Count activities by various parameters.: Compte le nombre d'activités enregistrées en fonction de différents paramètres.
|
Count activities by various parameters.: Compte le nombre d'activités enregistrées en fonction de différents paramètres.
|
||||||
|
|
||||||
|
#filters
|
||||||
|
Filter by reason: Filtrer par sujet d'activité
|
||||||
|
'Filtered by reasons: only %list%': 'Filtré par sujet: seulement %list%'
|
||||||
|
|
||||||
|
#aggregators
|
||||||
|
Aggregate by activity reason: Aggréger par sujet de l'activité
|
||||||
|
By reason: Par sujet
|
||||||
|
By category of reason: Par catégorie de sujet
|
||||||
|
Reason's level: Niveau du sujet
|
||||||
|
93
Tests/Export/Aggregator/ReasonAggregatorTest.php
Normal file
93
Tests/Export/Aggregator/ReasonAggregatorTest.php
Normal file
@ -0,0 +1,93 @@
|
|||||||
|
<?php
|
||||||
|
|
||||||
|
/*
|
||||||
|
* Copyright (C) 2017 Champs-Libres <info@champs-libres.coop>
|
||||||
|
*
|
||||||
|
* This program is free software: you can redistribute it and/or modify
|
||||||
|
* it under the terms of the GNU Affero General Public License as published by
|
||||||
|
* the Free Software Foundation, either version 3 of the License, or
|
||||||
|
* (at your option) any later version.
|
||||||
|
*
|
||||||
|
* This program is distributed in the hope that it will be useful,
|
||||||
|
* but WITHOUT ANY WARRANTY; without even the implied warranty of
|
||||||
|
* MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
|
||||||
|
* GNU Affero General Public License for more details.
|
||||||
|
*
|
||||||
|
* You should have received a copy of the GNU Affero General Public License
|
||||||
|
* along with this program. If not, see <http://www.gnu.org/licenses/>.
|
||||||
|
*/
|
||||||
|
|
||||||
|
namespace Chill\ActivityBundle\Tests\Aggregator;
|
||||||
|
|
||||||
|
use Chill\MainBundle\Test\Export\AbstractAggregatorTest;
|
||||||
|
|
||||||
|
/**
|
||||||
|
*
|
||||||
|
*
|
||||||
|
* @author Julien Fastré <julien.fastre@champs-libres.coop>
|
||||||
|
*/
|
||||||
|
class ReasonAggregatorTest extends AbstractAggregatorTest
|
||||||
|
{
|
||||||
|
/**
|
||||||
|
*
|
||||||
|
* @var \Chill\ActivityBundle\Export\Aggregator\ReasonAggregator
|
||||||
|
*/
|
||||||
|
private $aggregator;
|
||||||
|
|
||||||
|
public function setUp()
|
||||||
|
{
|
||||||
|
static::bootKernel();
|
||||||
|
|
||||||
|
$container = static::$kernel->getContainer();
|
||||||
|
|
||||||
|
$this->aggregator = $container->get('chill.activity.export.reason_aggregator');
|
||||||
|
|
||||||
|
// add a fake request with a default locale (used in translatable string)
|
||||||
|
$prophet = new \Prophecy\Prophet;
|
||||||
|
$request = $prophet->prophesize();
|
||||||
|
$request->willExtend(\Symfony\Component\HttpFoundation\Request::class);
|
||||||
|
$request->getLocale()->willReturn('fr');
|
||||||
|
|
||||||
|
$container->get('request_stack')
|
||||||
|
->push($request->reveal());
|
||||||
|
}
|
||||||
|
|
||||||
|
public function getAggregator()
|
||||||
|
{
|
||||||
|
return $this->aggregator;
|
||||||
|
}
|
||||||
|
|
||||||
|
public function getFormData()
|
||||||
|
{
|
||||||
|
return array(
|
||||||
|
array('level' => 'reasons'),
|
||||||
|
array('level' => 'categories')
|
||||||
|
);
|
||||||
|
}
|
||||||
|
|
||||||
|
public function getQueryBuilders()
|
||||||
|
{
|
||||||
|
if (static::$kernel === null) {
|
||||||
|
static::bootKernel();
|
||||||
|
}
|
||||||
|
|
||||||
|
$em = static::$kernel->getContainer()
|
||||||
|
->get('doctrine.orm.entity_manager');
|
||||||
|
|
||||||
|
return array(
|
||||||
|
$em->createQueryBuilder()
|
||||||
|
->select('count(activity.id)')
|
||||||
|
->from('ChillActivityBundle:Activity', 'activity'),
|
||||||
|
$em->createQueryBuilder()
|
||||||
|
->select('count(activity.id)')
|
||||||
|
->from('ChillActivityBundle:Activity', 'activity')
|
||||||
|
->join('activity.reasons', 'reasons'),
|
||||||
|
$em->createQueryBuilder()
|
||||||
|
->select('count(activity.id)')
|
||||||
|
->from('ChillActivityBundle:Activity', 'activity')
|
||||||
|
->join('activity.reasons', 'reasons')
|
||||||
|
->join('reasons.category', 'category')
|
||||||
|
);
|
||||||
|
}
|
||||||
|
|
||||||
|
}
|
50
Tests/Export/Export/CountActivityTest.php
Normal file
50
Tests/Export/Export/CountActivityTest.php
Normal file
@ -0,0 +1,50 @@
|
|||||||
|
<?php
|
||||||
|
|
||||||
|
namespace Chill\ActivityBundle\Tests\Export\Export;
|
||||||
|
|
||||||
|
use Chill\MainBundle\Test\Export\AbstractExportTest;
|
||||||
|
|
||||||
|
/**
|
||||||
|
*
|
||||||
|
*
|
||||||
|
* @author Julien Fastré <julien.fastre@champs-libres.coop>
|
||||||
|
*/
|
||||||
|
class CountActivityTest extends AbstractExportTest
|
||||||
|
{
|
||||||
|
/**
|
||||||
|
*
|
||||||
|
* @var
|
||||||
|
*/
|
||||||
|
private $export;
|
||||||
|
|
||||||
|
public function setUp()
|
||||||
|
{
|
||||||
|
static::bootKernel();
|
||||||
|
|
||||||
|
/* @var $container \Symfony\Component\DependencyInjection\ContainerInterface */
|
||||||
|
$container = self::$kernel->getContainer();
|
||||||
|
|
||||||
|
$this->export = $container->get('chill.activity.export.count_activity');
|
||||||
|
}
|
||||||
|
|
||||||
|
public function getExport()
|
||||||
|
{
|
||||||
|
return $this->export;
|
||||||
|
}
|
||||||
|
|
||||||
|
public function getFormData()
|
||||||
|
{
|
||||||
|
return array(
|
||||||
|
array()
|
||||||
|
);
|
||||||
|
}
|
||||||
|
|
||||||
|
public function getModifiersCombination()
|
||||||
|
{
|
||||||
|
return array(
|
||||||
|
array('activity'),
|
||||||
|
array('activity', 'person')
|
||||||
|
);
|
||||||
|
}
|
||||||
|
|
||||||
|
}
|
109
Tests/Export/Filter/ActivityReasonFilterTest.php
Normal file
109
Tests/Export/Filter/ActivityReasonFilterTest.php
Normal file
@ -0,0 +1,109 @@
|
|||||||
|
<?php
|
||||||
|
|
||||||
|
/*
|
||||||
|
* Copyright (C) 2017 Champs-Libres <info@champs-libres.coop>
|
||||||
|
*
|
||||||
|
* This program is free software: you can redistribute it and/or modify
|
||||||
|
* it under the terms of the GNU Affero General Public License as published by
|
||||||
|
* the Free Software Foundation, either version 3 of the License, or
|
||||||
|
* (at your option) any later version.
|
||||||
|
*
|
||||||
|
* This program is distributed in the hope that it will be useful,
|
||||||
|
* but WITHOUT ANY WARRANTY; without even the implied warranty of
|
||||||
|
* MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
|
||||||
|
* GNU Affero General Public License for more details.
|
||||||
|
*
|
||||||
|
* You should have received a copy of the GNU Affero General Public License
|
||||||
|
* along with this program. If not, see <http://www.gnu.org/licenses/>.
|
||||||
|
*/
|
||||||
|
|
||||||
|
namespace Chill\ActivityBundle\Tests\Filter;
|
||||||
|
|
||||||
|
use Chill\MainBundle\Test\Export\AbstractFilterTest;
|
||||||
|
use Doctrine\Common\Collections\ArrayCollection;
|
||||||
|
|
||||||
|
/**
|
||||||
|
*
|
||||||
|
*
|
||||||
|
* @author Julien Fastré <julien.fastre@champs-libres.coop>
|
||||||
|
*/
|
||||||
|
class ActivityReasonFilterTest extends AbstractFilterTest
|
||||||
|
{
|
||||||
|
/**
|
||||||
|
*
|
||||||
|
* @var \Chill\PersonBundle\Export\Filter\GenderFilter
|
||||||
|
*/
|
||||||
|
private $filter;
|
||||||
|
|
||||||
|
public function setUp()
|
||||||
|
{
|
||||||
|
static::bootKernel();
|
||||||
|
|
||||||
|
$container = static::$kernel->getContainer();
|
||||||
|
|
||||||
|
$this->filter = $container->get('chill.activity.export.reason_filter');
|
||||||
|
|
||||||
|
// add a fake request with a default locale (used in translatable string)
|
||||||
|
$prophet = new \Prophecy\Prophet;
|
||||||
|
$request = $prophet->prophesize();
|
||||||
|
$request->willExtend(\Symfony\Component\HttpFoundation\Request::class);
|
||||||
|
$request->getLocale()->willReturn('fr');
|
||||||
|
|
||||||
|
$container->get('request_stack')
|
||||||
|
->push($request->reveal());
|
||||||
|
}
|
||||||
|
|
||||||
|
|
||||||
|
public function getFilter()
|
||||||
|
{
|
||||||
|
return $this->filter;
|
||||||
|
}
|
||||||
|
|
||||||
|
public function getFormData()
|
||||||
|
{
|
||||||
|
if (static::$kernel === null) {
|
||||||
|
static::bootKernel();
|
||||||
|
}
|
||||||
|
|
||||||
|
$em = static::$kernel->getContainer()
|
||||||
|
->get('doctrine.orm.entity_manager')
|
||||||
|
;
|
||||||
|
|
||||||
|
$reasons = $em->createQuery("SELECT reason "
|
||||||
|
. "FROM ChillActivityBundle:ActivityReason reason")
|
||||||
|
->getResult();
|
||||||
|
|
||||||
|
// generate an array of 5 different combination of results
|
||||||
|
for ($i=0; $i < 5; $i++) {
|
||||||
|
$r[] = array('reasons' => new ArrayCollection(array_splice($reasons, ($i + 1) * -1)));
|
||||||
|
}
|
||||||
|
|
||||||
|
return $r;
|
||||||
|
}
|
||||||
|
|
||||||
|
public function getQueryBuilders()
|
||||||
|
{
|
||||||
|
if (static::$kernel === null) {
|
||||||
|
static::bootKernel();
|
||||||
|
}
|
||||||
|
|
||||||
|
$em = static::$kernel->getContainer()
|
||||||
|
->get('doctrine.orm.entity_manager');
|
||||||
|
|
||||||
|
return array(
|
||||||
|
$em->createQueryBuilder()
|
||||||
|
->select('count(activity.id)')
|
||||||
|
->from('ChillActivityBundle:Activity', 'activity'),
|
||||||
|
$em->createQueryBuilder()
|
||||||
|
->select('count(activity.id)')
|
||||||
|
->from('ChillActivityBundle:Activity', 'activity')
|
||||||
|
->join('activity.reasons', 'reasons'),
|
||||||
|
$em->createQueryBuilder()
|
||||||
|
->select('count(activity.id)')
|
||||||
|
->from('ChillActivityBundle:Activity', 'activity')
|
||||||
|
->join('activity.reasons', 'reasons')
|
||||||
|
->join('reasons.category', 'category')
|
||||||
|
);
|
||||||
|
}
|
||||||
|
|
||||||
|
}
|
Loading…
x
Reference in New Issue
Block a user