mirror of
https://gitlab.com/Chill-Projet/chill-bundles.git
synced 2025-06-07 18:44:08 +00:00
Merge remote-tracking branch 'origin/master' into upgrade-sf5
This commit is contained in:
commit
47c3be6217
@ -1,10 +1,14 @@
|
|||||||
---
|
---
|
||||||
version: 2
|
version: 2
|
||||||
|
|
||||||
|
build:
|
||||||
|
os: ubuntu-22.04
|
||||||
|
tools:
|
||||||
|
python: "3.7"
|
||||||
|
|
||||||
sphinx:
|
sphinx:
|
||||||
configuration: docs/source/conf.py
|
configuration: docs/source/conf.py
|
||||||
|
|
||||||
python:
|
python:
|
||||||
version: 3.7
|
|
||||||
install:
|
install:
|
||||||
- requirements: docs/requirements.txt
|
- requirements: docs/requirements.txt
|
@ -27,7 +27,7 @@ To compile this documentation :
|
|||||||
Contribute
|
Contribute
|
||||||
===========
|
===========
|
||||||
|
|
||||||
Issue tracker : https://git.framasoft.org/groups/Chill-project/issues
|
Issue tracker : https://gitlab.com/Chill-Projet/chill-bundles/-/issues
|
||||||
|
|
||||||
Licence
|
Licence
|
||||||
=======
|
=======
|
||||||
|
@ -1,6 +1,7 @@
|
|||||||
docutils==0.13.1
|
docutils==0.13.1
|
||||||
Pygments==2.2.0
|
Pygments==2.2.0
|
||||||
sphinx==1.8.5
|
sphinx==1.8.5
|
||||||
|
Jinja2<3.1
|
||||||
git+https://github.com/fabpot/sphinx-php.git@v2.0.2#egg_name=sphinx-php
|
git+https://github.com/fabpot/sphinx-php.git@v2.0.2#egg_name=sphinx-php
|
||||||
jsx-lexer===0.0.8
|
jsx-lexer===0.0.8
|
||||||
sphinx_rtd_theme==0.5.0
|
sphinx_rtd_theme==0.5.0
|
||||||
|
@ -49,7 +49,7 @@ Clone or download the chill-skeleton project and `cd` into the main directory.
|
|||||||
.. code-block:: bash
|
.. code-block:: bash
|
||||||
|
|
||||||
git clone https://gitlab.com/Chill-Projet/chill-skeleton-basic.git
|
git clone https://gitlab.com/Chill-Projet/chill-skeleton-basic.git
|
||||||
cd chill-app
|
cd chill-skeleton-basic
|
||||||
|
|
||||||
|
|
||||||
As a developer, the code will stay on your computer and will be executed in docker container. To avoid permission problem, the code should be run with the same uid/gid from your current user. This is why we get your current user id with the command ``id -u`` in each following scripts.
|
As a developer, the code will stay on your computer and will be executed in docker container. To avoid permission problem, the code should be run with the same uid/gid from your current user. This is why we get your current user id with the command ``id -u`` in each following scripts.
|
||||||
|
@ -14,6 +14,7 @@ namespace Chill\PersonBundle\Tests\Controller;
|
|||||||
use Chill\MainBundle\Test\PrepareClientTrait;
|
use Chill\MainBundle\Test\PrepareClientTrait;
|
||||||
use Chill\PersonBundle\Entity\Person;
|
use Chill\PersonBundle\Entity\Person;
|
||||||
use Chill\PersonBundle\Entity\Relationships\Relation;
|
use Chill\PersonBundle\Entity\Relationships\Relation;
|
||||||
|
use Chill\PersonBundle\Entity\Relationships\Relationship;
|
||||||
use Doctrine\ORM\EntityManagerInterface;
|
use Doctrine\ORM\EntityManagerInterface;
|
||||||
use Symfony\Bundle\FrameworkBundle\Test\WebTestCase;
|
use Symfony\Bundle\FrameworkBundle\Test\WebTestCase;
|
||||||
use Symfony\Component\HttpFoundation\Request;
|
use Symfony\Component\HttpFoundation\Request;
|
||||||
@ -43,31 +44,34 @@ final class RelationshipApiControllerTest extends WebTestCase
|
|||||||
{
|
{
|
||||||
self::bootKernel();
|
self::bootKernel();
|
||||||
$em = self::$container->get(EntityManagerInterface::class);
|
$em = self::$container->get(EntityManagerInterface::class);
|
||||||
$countPersons = $em->createQueryBuilder()
|
$personIdHavingRelation = $em->createQueryBuilder()
|
||||||
->select('count(p)')
|
->select('p.id')
|
||||||
->from(Person::class, 'p')
|
|
||||||
->join('p.centerCurrent', 'center_current')
|
|
||||||
->join('center_current.center', 'c')
|
|
||||||
->where('c.name LIKE :name')
|
|
||||||
->setParameter('name', 'Center A')
|
|
||||||
->getQuery()
|
|
||||||
->getSingleScalarResult();
|
|
||||||
$person = $em->createQueryBuilder()
|
|
||||||
->select('p')
|
|
||||||
->from(Person::class, 'p')
|
->from(Person::class, 'p')
|
||||||
->join('p.centerCurrent', 'center_current')
|
->join('p.centerCurrent', 'center_current')
|
||||||
->join('center_current.center', 'c')
|
->join('center_current.center', 'c')
|
||||||
->where('c.name LIKE :name')
|
->where('c.name LIKE :name')
|
||||||
|
->andWhere('EXISTS (SELECT 1 FROM ' . Relationship::class . ' r WHERE r.fromPerson = p OR r.toPerson = p)')
|
||||||
->setParameter('name', 'Center A')
|
->setParameter('name', 'Center A')
|
||||||
->getQuery()
|
->getQuery()
|
||||||
->setMaxResults(1)
|
->setMaxResults(1)
|
||||||
->setFirstResult(\random_int(0, $countPersons - 1))
|
->getSingleScalarResult();
|
||||||
->getSingleResult();
|
|
||||||
|
$personIdWithoutRelation = $em->createQueryBuilder()
|
||||||
|
->select('p.id')
|
||||||
|
->from(Person::class, 'p')
|
||||||
|
->join('p.centerCurrent', 'center_current')
|
||||||
|
->join('center_current.center', 'c')
|
||||||
|
->where('c.name LIKE :name')
|
||||||
|
->andWhere('NOT EXISTS (SELECT 1 FROM ' . Relationship::class . ' r WHERE r.fromPerson = p OR r.toPerson = p)')
|
||||||
|
->setParameter('name', 'Center A')
|
||||||
|
->getQuery()
|
||||||
|
->setMaxResults(1)
|
||||||
|
->getSingleScalarResult();
|
||||||
|
|
||||||
self::ensureKernelShutdown();
|
self::ensureKernelShutdown();
|
||||||
|
|
||||||
return [
|
return [
|
||||||
[$person->getId()],
|
[$personIdHavingRelation, $personIdWithoutRelation],
|
||||||
];
|
];
|
||||||
}
|
}
|
||||||
|
|
||||||
@ -75,39 +79,29 @@ final class RelationshipApiControllerTest extends WebTestCase
|
|||||||
{
|
{
|
||||||
self::bootKernel();
|
self::bootKernel();
|
||||||
$em = self::$container->get(EntityManagerInterface::class);
|
$em = self::$container->get(EntityManagerInterface::class);
|
||||||
$countPersons = $em->createQueryBuilder()
|
$personIdWithoutRelations = $em->createQueryBuilder()
|
||||||
->select('count(DISTINCT p)')
|
->select('p.id')
|
||||||
->from(Person::class, 'p')
|
|
||||||
->join('p.centerCurrent', 'center_current')
|
|
||||||
->join('center_current.center', 'c')
|
|
||||||
->where('c.name LIKE :name')
|
|
||||||
->setParameter('name', 'Center A')
|
|
||||||
->getQuery()
|
|
||||||
->getSingleScalarResult();
|
|
||||||
|
|
||||||
$persons = $em->createQueryBuilder()
|
|
||||||
->select('p')
|
|
||||||
->from(Person::class, 'p')
|
->from(Person::class, 'p')
|
||||||
->join('p.centerCurrent', 'center_current')
|
->join('p.centerCurrent', 'center_current')
|
||||||
->join('center_current.center', 'c')
|
->join('center_current.center', 'c')
|
||||||
->where('c.name LIKE :name')
|
->where('c.name LIKE :name')
|
||||||
|
->andWhere('NOT EXISTS (SELECT 1 FROM ' . Relationship::class . ' r WHERE r.fromPerson = p OR r.toPerson = p)')
|
||||||
->setParameter('name', 'Center A')
|
->setParameter('name', 'Center A')
|
||||||
->getQuery()
|
->getQuery()
|
||||||
->setMaxResults(2)
|
->setMaxResults(2)
|
||||||
->setFirstResult(\random_int(0, $countPersons - 1))
|
|
||||||
->getResult();
|
->getResult();
|
||||||
|
|
||||||
self::ensureKernelShutdown();
|
self::ensureKernelShutdown();
|
||||||
|
|
||||||
return [
|
return [
|
||||||
[$persons[0]->getId(), $persons[1]->getId(), $this->getRandomRelation($em)->getId(), true],
|
[$personIdWithoutRelations[0]['id'], $personIdWithoutRelations[1]['id'], $this->getRandomRelation($em)->getId(), true],
|
||||||
];
|
];
|
||||||
}
|
}
|
||||||
|
|
||||||
/**
|
/**
|
||||||
* @dataProvider personProvider
|
* @dataProvider personProvider
|
||||||
*/
|
*/
|
||||||
public function testGetRelationshipByPerson(mixed $personId)
|
public function testGetRelationshipByPerson(int $personId)
|
||||||
{
|
{
|
||||||
self::ensureKernelShutdown();
|
self::ensureKernelShutdown();
|
||||||
$client = $this->getClientAuthenticated();
|
$client = $this->getClientAuthenticated();
|
||||||
|
Loading…
x
Reference in New Issue
Block a user