mirror of
https://gitlab.com/Chill-Projet/chill-bundles.git
synced 2025-06-12 13:24:25 +00:00
Improving csv export test
This commit is contained in:
parent
377b7ec44b
commit
9decbf119a
@ -23,43 +23,47 @@
|
|||||||
namespace Chill\PersonBundle\Tests\Controller;
|
namespace Chill\PersonBundle\Tests\Controller;
|
||||||
|
|
||||||
use Symfony\Bundle\FrameworkBundle\Test\WebTestCase;
|
use Symfony\Bundle\FrameworkBundle\Test\WebTestCase;
|
||||||
|
use Symfony\Component\Security\Core\Role\Role;
|
||||||
|
|
||||||
/**
|
/**
|
||||||
* Tests for the export of a person
|
* Tests for the export of a person
|
||||||
*/
|
*/
|
||||||
|
|
||||||
class PersonControllerExportTest extends WebTestCase
|
class PersonControllerExportTest extends WebTestCase
|
||||||
{
|
{
|
||||||
|
/** @var \Doctrine\ORM\EntityManagerInterface The entity manager */
|
||||||
|
private $em;
|
||||||
|
|
||||||
/**
|
/**
|
||||||
* Return an authenticated client, used for browsing and testing pages.
|
* Prepare the client and the entity manager. The client send a Gest requestion
|
||||||
*
|
* on the route chill_person_export.
|
||||||
* @return \Symfony\Component\BrowserKit\Client
|
*/
|
||||||
*/
|
protected function setUp()
|
||||||
private function getAuthenticatedClient()
|
|
||||||
{
|
{
|
||||||
return static::createClient(array(), array(
|
$this->client = static::createClient(array(), array(
|
||||||
'PHP_AUTH_USER' => 'center a_social',
|
'PHP_AUTH_USER' => 'center a_social',
|
||||||
'PHP_AUTH_PW' => 'password',
|
'PHP_AUTH_PW' => 'password',
|
||||||
));
|
));
|
||||||
|
|
||||||
|
$exportUrl = $this->client->getContainer()->get('router')->generate('chill_person_export',
|
||||||
|
array('_locale' => 'fr'));
|
||||||
|
|
||||||
|
$this->client->request('GET', $exportUrl);
|
||||||
|
|
||||||
|
$this->em = $this->client->getContainer()->get('doctrine.orm.entity_manager');
|
||||||
}
|
}
|
||||||
|
|
||||||
/**
|
/**
|
||||||
* Test the exportAction that returns a csv files containing all the persons.
|
* Test the format of the exportAction :
|
||||||
*
|
|
||||||
* The test is the following :
|
|
||||||
* - check if the file has the csv format
|
* - check if the file has the csv format
|
||||||
* - check if each row as the same number of cell than the first row
|
* - check if each row as the same number of cell than the first row
|
||||||
* - check if the number of row of the csv file is the same than the number of persons
|
* - check if the number of row of the csv file is the same than the number of persons
|
||||||
*
|
*
|
||||||
* @return \Symfony\Component\BrowserKit\Client
|
* @return The content of the export
|
||||||
*/
|
*/
|
||||||
public function testExportAction()
|
public function testExportActionFormat()
|
||||||
{
|
{
|
||||||
$client = $this->getAuthenticatedClient();
|
$response = $this->client->getResponse();
|
||||||
$exportUrl = $client->getContainer()->get('router')->generate('chill_person_export',
|
|
||||||
array('_locale' => 'fr'));
|
|
||||||
|
|
||||||
$client->request('GET', $exportUrl);
|
|
||||||
$response = $client->getResponse();
|
|
||||||
|
|
||||||
$this->assertTrue(
|
$this->assertTrue(
|
||||||
strpos($response->headers->get('Content-Type'),'text/csv') !== false,
|
strpos($response->headers->get('Content-Type'),'text/csv') !== false,
|
||||||
@ -83,13 +87,63 @@ class PersonControllerExportTest extends WebTestCase
|
|||||||
$numberOfRows ++;
|
$numberOfRows ++;
|
||||||
}
|
}
|
||||||
|
|
||||||
$em = $client->getContainer()->get('doctrine.orm.entity_manager');
|
|
||||||
$persons = $em->getRepository('ChillPersonBundle:Person')->findAll();
|
$chillSecurityHelper = $this->client->getContainer()->get('chill.main.security.authorization.helper');
|
||||||
|
$user = $this->client->getContainer()->get('security.context')->getToken()->getUser();
|
||||||
|
|
||||||
|
$reachableCenters = $chillSecurityHelper->getReachableCenters($user,
|
||||||
|
new Role('CHILL_PERSON_SEE'));
|
||||||
|
|
||||||
|
$personRepository = $this->em->getRepository('ChillPersonBundle:Person');
|
||||||
|
$qb = $personRepository->createQueryBuilder('p');
|
||||||
|
$qb->where($qb->expr()->in('p.center', ':centers'))
|
||||||
|
->setParameter('centers', $reachableCenters);
|
||||||
|
$persons = $qb->getQuery()->getResult();
|
||||||
|
|
||||||
|
|
||||||
$this->assertTrue(
|
$this->assertTrue(
|
||||||
$numberOfRows == (sizeof($persons)),
|
$numberOfRows == (sizeof($persons)),
|
||||||
'The csv file has a number of row equivalent than the number of '
|
'The csv file has a number of row equivalent than the number of '
|
||||||
. 'person in the db'
|
. 'person in the db'
|
||||||
);
|
);
|
||||||
|
|
||||||
|
return $content;
|
||||||
|
}
|
||||||
|
|
||||||
|
|
||||||
|
/**
|
||||||
|
* Check that the export file do not contain a person form center B
|
||||||
|
*
|
||||||
|
* @depends testExportActionFormat
|
||||||
|
*/
|
||||||
|
public function testExportActionNotContainingPersonFromCenterB($content)
|
||||||
|
{
|
||||||
|
$centerB = $this->em->getRepository('ChillMainBundle:Center')
|
||||||
|
->findOneBy(array('name' => 'Center B'));
|
||||||
|
|
||||||
|
$person = $this->em->getRepository('ChillPersonBundle:Person')
|
||||||
|
->findOneBy(array('center' => $centerB));
|
||||||
|
|
||||||
|
$this->assertFalse(strpos($person->getFirstName(), $content));
|
||||||
|
}
|
||||||
|
|
||||||
|
/**
|
||||||
|
* Check that the export file contains information about a random person
|
||||||
|
* of center A
|
||||||
|
* @depends testExportActionFormat
|
||||||
|
*/
|
||||||
|
public function testExportActionContainsARandomPersonFromCenterA($content)
|
||||||
|
{
|
||||||
|
$centerA = $this->em->getRepository('ChillMainBundle:Center')
|
||||||
|
->findOneBy(array('name' => 'Center A'));
|
||||||
|
|
||||||
|
$person = $this->em->getRepository('ChillPersonBundle:Person')
|
||||||
|
->findOneBy(array('center' => $centerA));
|
||||||
|
|
||||||
|
$this->assertContains($person->getFirstName(), $content);
|
||||||
|
$this->assertContains($person->getLastName(), $content);
|
||||||
|
$this->assertContains($person->getGender(), $content);
|
||||||
|
|
||||||
|
$this->markTestIncomplete('Test other information of the person');
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
Loading…
x
Reference in New Issue
Block a user