Пример #1
0
 /**
  * @param array $data
  * @dataProvider createDataProvider
  */
 public function testCreate($data, $expected)
 {
     $imageId = 'test_image_id';
     $productMock = $this->getMockBuilder('Magento\\Catalog\\Model\\Product')->disableOriginalConstructor()->getMock();
     $helperMock = $this->getMockBuilder('Magento\\Catalog\\Helper\\Image')->disableOriginalConstructor()->getMock();
     $helperMock->expects($this->once())->method('init')->with($productMock, $imageId)->willReturnSelf();
     $helperMock->expects($this->once())->method('getFrame')->willReturn($data['frame']);
     $helperMock->expects($this->once())->method('getUrl')->willReturn($data['url']);
     $helperMock->expects($this->exactly(2))->method('getWidth')->willReturn($data['width']);
     $helperMock->expects($this->exactly(2))->method('getHeight')->willReturn($data['height']);
     $helperMock->expects($this->once())->method('getLabel')->willReturn($data['label']);
     $helperMock->expects($this->once())->method('getResizedImageInfo')->willReturn($data['imagesize']);
     $this->helperFactory->expects($this->once())->method('create')->willReturn($helperMock);
     $imageMock = $this->getMockBuilder('Magento\\Catalog\\Block\\Product\\Image')->disableOriginalConstructor()->getMock();
     $this->imageFactory->expects($this->once())->method('create')->with($expected)->willReturn($imageMock);
     $this->model->setProduct($productMock);
     $this->model->setImageId($imageId);
     $this->model->setAttributes($data['custom_attributes']);
     $this->assertInstanceOf('Magento\\Catalog\\Block\\Product\\Image', $this->model->create());
 }
Пример #2
0
 protected function mockImage()
 {
     $this->imageFactory = $this->getMockBuilder('Magento\\Catalog\\Model\\Product\\ImageFactory')->disableOriginalConstructor()->setMethods(['create'])->getMock();
     $this->image = $this->getMockBuilder('Magento\\Catalog\\Model\\Product\\Image')->disableOriginalConstructor()->getMock();
     $this->imageFactory->expects($this->any())->method('create')->willReturn($this->image);
 }