Ejemplo n.º 1
0
 /**
  * {@inheritdoc}
  */
 public function tree($rootCategoryId = null, $depth = null)
 {
     $category = null;
     if (!is_null($rootCategoryId)) {
         /** @var \Magento\Catalog\Model\Category $category */
         $category = $this->categoryFactory->create()->load($rootCategoryId);
         if (!$category->getId()) {
             throw new \Magento\Framework\Exception\NoSuchEntityException('Root Category does not exist');
         }
     }
     $result = $this->categoryTree->getTree($this->categoryTree->getRootNode($category), $depth);
     return $result;
 }
Ejemplo n.º 2
0
 public function testGetTree()
 {
     $depth = 2;
     $currentLevel = 1;
     $builder = $this->getMockBuilder('\\Magento\\Catalog\\Service\\V1\\Data\\Eav\\Category\\TreeBuilder')->disableOriginalConstructor()->getMock();
     $builder->expects($this->any())->method('setId')->with($this->equalTo($currentLevel))->will($this->returnSelf());
     $builder->expects($this->any())->method('setParentId')->with($this->equalTo($currentLevel - 1))->will($this->returnSelf());
     $builder->expects($this->any())->method('setName')->with($this->equalTo('Name' . $currentLevel))->will($this->returnSelf());
     $builder->expects($this->any())->method('setPosition')->with($this->equalTo($currentLevel))->will($this->returnSelf());
     $builder->expects($this->any())->method('setLevel')->with($this->equalTo($currentLevel))->will($this->returnSelf());
     $builder->expects($this->any())->method('setActive')->with($this->equalTo(true))->will($this->returnSelf());
     $builder->expects($this->any())->method('setProductCount')->with(4)->will($this->returnSelf());
     $builder->expects($this->any())->method('setChildren')->will($this->returnSelf());
     $builder->expects($this->any())->method('create')->will($this->returnValue([]));
     $this->treeBuilderFactory->expects($this->any())->method('create')->will($this->returnValue($builder));
     $node = $this->getMockBuilder('Magento\\Framework\\Data\\Tree\\Node')->disableOriginalConstructor()->setMethods(['hasChildren', 'getChildren', 'getId', 'getParentId', 'getName', 'getPosition', 'getLevel', 'getIsActive', 'getProductCount'])->getMock();
     $node->expects($this->any())->method('hasChildren')->will($this->returnValue(true));
     $node->expects($this->any())->method('getChildren')->will($this->returnValue([$node]));
     $node->expects($this->any())->method('getId')->will($this->returnValue($currentLevel));
     $node->expects($this->any())->method('getParentId')->will($this->returnValue($currentLevel - 1));
     $node->expects($this->any())->method('getName')->will($this->returnValue('Name' . $currentLevel));
     $node->expects($this->any())->method('getPosition')->will($this->returnValue($currentLevel));
     $node->expects($this->any())->method('getLevel')->will($this->returnValue($currentLevel));
     $node->expects($this->any())->method('getIsActive')->will($this->returnValue(true));
     $node->expects($this->any())->method('getProductCount')->will($this->returnValue(4));
     $this->tree->getTree($node, $depth, $currentLevel);
 }