Part-DB.Part-DB-server/tests/Services/Trees/NodesListBuilderTest.php

81 lines
2.8 KiB
PHP
Raw Normal View History

<?php
/**
* This file is part of Part-DB (https://github.com/Part-DB/Part-DB-symfony).
*
* Copyright (C) 2019 Jan Böhmer (https://github.com/jbtronics)
*
* This program is free software; you can redistribute it and/or
* modify it under the terms of the GNU General Public License
* as published by the Free Software Foundation; either version 2
* 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 General Public License for more details.
*
* You should have received a copy of the GNU General Public License
* along with this program; if not, write to the Free Software
* Foundation, Inc., 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301, USA
*/
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
* @package App\Tests\Services\Trees
*/
class NodesListBuilderTest extends WebTestCase
{
/**
* @var NodesListBuilder $service
*/
protected $service;
protected $em;
public function setUp(): void
{
self::bootKernel();
$this->service = self::$container->get(NodesListBuilder::class);
$this->em = self::$container->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->assertEquals('Node 1', $nodes[0]->getName());
$this->assertEquals('Node 1.1', $nodes[1]->getName());
$this->assertEquals('Node 1.1.1', $nodes[2]->getName());
$this->assertEquals('Node 1.2', $nodes[3]->getName());
$this->assertEquals('Node 2', $nodes[4]->getName());
$this->assertEquals('Node 2.1', $nodes[5]->getName());
$this->assertEquals('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->assertEquals('Node 1.1', $nodes[0]->getName());
$this->assertEquals('Node 1.1.1', $nodes[1]->getName());
$this->assertEquals('Node 1.2', $nodes[2]->getName());
}
}