. */ declare(strict_types=1); namespace App\Tests\Services\Trees; use App\Entity\Attachments\AttachmentType; use App\Services\Trees\NodesListBuilder; use Doctrine\ORM\EntityManagerInterface; use Symfony\Bundle\FrameworkBundle\Test\WebTestCase; /** * @Group DB */ class NodesListBuilderTest extends WebTestCase { protected $em; /** * @var NodesListBuilder */ protected $service; protected function setUp(): void { self::bootKernel(); $this->service = self::getContainer()->get(NodesListBuilder::class); $this->em = self::getContainer()->get(EntityManagerInterface::class); } /** * Test $repo->toNodesList() for null as parameter. */ public function testTypeToNodesListtRoot(): void { //List all root nodes and their children $nodes = $this->service->typeToNodesList(AttachmentType::class); $this->assertCount(7, $nodes); $this->assertContainsOnlyInstancesOf(AttachmentType::class, $nodes); $this->assertSame('Node 1', $nodes[0]->getName()); $this->assertSame('Node 1.1', $nodes[1]->getName()); $this->assertSame('Node 1.1.1', $nodes[2]->getName()); $this->assertSame('Node 1.2', $nodes[3]->getName()); $this->assertSame('Node 2', $nodes[4]->getName()); $this->assertSame('Node 2.1', $nodes[5]->getName()); $this->assertSame('Node 3', $nodes[6]->getName()); } public function testTypeToNodesListElement(): void { //List all nodes that are children to Node 1 $node1 = $this->em->find(AttachmentType::class, 1); $nodes = $this->service->typeToNodesList(AttachmentType::class, $node1); $this->assertCount(3, $nodes); $this->assertContainsOnlyInstancesOf(AttachmentType::class, $nodes); $this->assertSame('Node 1.1', $nodes[0]->getName()); $this->assertSame('Node 1.1.1', $nodes[1]->getName()); $this->assertSame('Node 1.2', $nodes[2]->getName()); } }