more tests for exports

This commit is contained in:
Julien Fastré 2016-12-26 21:20:01 +01:00
parent 542874c15e
commit 991e5f5bd2
7 changed files with 170 additions and 10 deletions

View File

@ -77,11 +77,18 @@ class GenderAggregator implements AggregatorInterface
public function getLabels($key, array $values, $data) public function getLabels($key, array $values, $data)
{ {
return array( return function($value) {
Person::FEMALE_GENDER => $this->translator->trans('woman'), switch ($value) {
Person::MALE_GENDER => $this->translator->trans('man'), case Person::FEMALE_GENDER :
'_header' => $this->translator->trans('Gender') return $this->translator->trans('woman');
); case Person::MALE_GENDER :
return $this->translator->trans('man');
case '_header' :
return $this->translator->trans('Gender');
default:
throw new \LogicException(sprintf("The value %s is not valid", $value));
}
};
} }
public function addRole() public function addRole()

View File

@ -164,12 +164,11 @@ class NationalityAggregator implements AggregatorInterface
foreach($countries as $row) { foreach($countries as $row) {
$labels[$row['c_countryCode']] = $this->translatableStringHelper->localize($row['c_name']); $labels[$row['c_countryCode']] = $this->translatableStringHelper->localize($row['c_name']);
} }
return $labels;
} elseif ($data['group_by_level'] === 'continent') { } elseif ($data['group_by_level'] === 'continent') {
return array( $labels = array(
'EU' => $this->translator->trans('Europe'), 'EU' => $this->translator->trans('Europe'),
'AS' => $this->translator->trans('Asia'), 'AS' => $this->translator->trans('Asia'),
'AN' => $this->translator->trans('Antartica'), 'AN' => $this->translator->trans('Antartica'),
@ -181,6 +180,11 @@ class NationalityAggregator implements AggregatorInterface
'_header' => $this->translator->trans('Continent') '_header' => $this->translator->trans('Continent')
); );
} }
return function($value) use ($labels) {
return $labels[$value];
};
} }
} }

View File

@ -114,7 +114,9 @@ class CountPerson implements ExportInterface
$labels = array_combine($values, $values); $labels = array_combine($values, $values);
$labels['_header'] = 'Number of people'; $labels['_header'] = 'Number of people';
return $labels; return function($value) use ($labels) {
return $labels[$value];
};
} }
public function getAllowedFormattersTypes() public function getAllowedFormattersTypes()

View File

@ -87,6 +87,11 @@ class GenderFilter implements FilterInterface
public function describeAction($data, $format = 'string') public function describeAction($data, $format = 'string')
{ {
switch($data['accepted_genders']) {
case Person::MALE_GENDER:
return 'Filtering by gender: male only';
case Person::FEMALE_GENDER:
return array('Filtering by gender: female only');
}
} }
} }

View File

@ -146,6 +146,8 @@ Fields to include in export: Champs à inclure dans l'export
## filters ## filters
Filter by person gender: Filtrer par genre de la personne Filter by person gender: Filtrer par genre de la personne
Accepted genders: Genres acceptés Accepted genders: Genres acceptés
'Filtering by gender: male only': 'Filtré par genre: hommes seulement'
'Filtering by gender: female only': 'Filtré par genre: femmes seulement'
Filter by person's nationality: Filtrer par nationalité Filter by person's nationality: Filtrer par nationalité
Nationalities: Nationalités Nationalities: Nationalités

View File

@ -0,0 +1,62 @@
<?php
/*
* Copyright (C) 2016 Champs Libres Cooperative <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\PersonBundle\Tests\Export\Export;
use Chill\MainBundle\Test\AbstractExportTestHelper;
/**
* Test CountPerson export
*
* @author julien.fastre@champs-libres.coop
*/
class CountPersonTest extends AbstractExportTestHelper
{
/**
*
* @var
*/
private $export;
public function setUp()
{
static::bootKernel();
/* @var $container \Symfony\Component\DependencyInjection\ContainerInterface */
$container = self::$kernel->getContainer();
$this->export = $container->get('chill.person.export.export_count_person');
}
public function getExport()
{
return $this->export;
}
public function getFormData()
{
return array(
array()
);
}
public function getModifiersCombination()
{
return array( [ 'person' ] );
}
}

View File

@ -0,0 +1,78 @@
<?php
/*
* Copyright (C) 2016 Champs Libres Cooperative <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\PersonBundle\Tests\Export\Filter;
use Chill\MainBundle\Test\Export\AbstractFilterTest;
use Chill\PersonBundle\Entity\Person;
/**
*
*
* @author Julien Fastré <julien.fastre@champs-libres.coop>
*/
class GenderFilterTest extends AbstractFilterTest
{
/**
*
* @var \Chill\PersonBundle\Export\Filter\GenderFilter
*/
private $filter;
public function setUp()
{
static::bootKernel();
$container = static::$kernel->getContainer();
$this->filter = $container->get('chill.person.export.filter_gender');
}
public function getFilter()
{
return $this->filter;
}
public function getFormData()
{
return array(
array(
'accepted_genders' => Person::FEMALE_GENDER
),
array(
'accepted_genders' => Person::MALE_GENDER
)
);
}
public function getQueryBuilders()
{
if (static::$kernel === null) {
static::bootKernel();
}
$em = static::$kernel->getContainer()
->get('doctrine.orm.entity_manager');
return array(
$em->createQueryBuilder()
->select('p.firstName')
->from('ChillPersonBundle:Person', 'p')
);
}
}