mirror of
				https://github.com/kevinveenbirkenbach/infinito.git
				synced 2025-11-04 03:07:58 +00:00 
			
		
		
		
	
		
			
				
	
	
		
			54 lines
		
	
	
		
			1.9 KiB
		
	
	
	
		
			PHP
		
	
	
	
	
	
			
		
		
	
	
			54 lines
		
	
	
		
			1.9 KiB
		
	
	
	
		
			PHP
		
	
	
	
	
	
<?php
 | 
						|
namespace Tests\Unit\Domain;
 | 
						|
 | 
						|
use PHPUnit\Framework\TestCase;
 | 
						|
use App\Entity\Source\Collection\TreeCollectionSourceInterface;
 | 
						|
use App\Entity\Source\Collection\TreeCollectionSource;
 | 
						|
use App\Entity\Source\SourceInterface;
 | 
						|
use Doctrine\Common\Collections\ArrayCollection;
 | 
						|
use App\Domain\SourceManagement\TreeSourceServiceInterface;
 | 
						|
use App\Domain\SourceManagement\TreeSourceService;
 | 
						|
 | 
						|
class TreeSourceServiceTest extends TestCase
 | 
						|
{
 | 
						|
    /**
 | 
						|
     * 
 | 
						|
     * @var TreeSourceServiceInterface
 | 
						|
     */
 | 
						|
    protected $treeService;
 | 
						|
    
 | 
						|
    public function setUp():void {
 | 
						|
        $tree1 = new TreeCollectionSource();
 | 
						|
        $tree2 = new TreeCollectionSource();
 | 
						|
        $tree3 = new TreeCollectionSource();
 | 
						|
        $tree4 = new TreeCollectionSource();
 | 
						|
        $tree5 = new TreeCollectionSource();
 | 
						|
        $leave1 = $this->createMock(SourceInterface::class);
 | 
						|
        $leave2 = $this->createMock(SourceInterface::class);
 | 
						|
        $leave3 = $this->createMock(SourceInterface::class);
 | 
						|
        $leave4 = $this->createMock(SourceInterface::class);
 | 
						|
        $leave5 = $this->createMock(SourceInterface::class);
 | 
						|
        $tree2->setCollection(new ArrayCollection([$leave3,$leave4,$tree5,$leave5]));
 | 
						|
        $collection = new ArrayCollection([$tree2,$tree3,$leave1,$leave2,$tree4]);
 | 
						|
        $tree1->setCollection($collection);
 | 
						|
        $this->treeService = new TreeSourceService($tree1);
 | 
						|
    }
 | 
						|
    
 | 
						|
    public function testGetLeaves():void{
 | 
						|
        $this->assertEquals(2, $this->treeService->getLeaves()->count());
 | 
						|
    }
 | 
						|
    
 | 
						|
    public function testGetBranches():void{
 | 
						|
        $this->assertEquals(3, $this->treeService->getBranches()->count());
 | 
						|
    }
 | 
						|
    
 | 
						|
    public function testGetAllBranches():void{
 | 
						|
        $this->assertEquals(4, $this->treeService->getAllBranches()->count());
 | 
						|
    }
 | 
						|
    
 | 
						|
    public function testGetAllLeaves():void{
 | 
						|
        $this->assertEquals(5, $this->treeService->getAllLeaves()->count());
 | 
						|
    }
 | 
						|
}
 | 
						|
 |