本文整理汇总了PHP中Magento\Catalog\Model\Product\Option::expects方法的典型用法代码示例。如果您正苦于以下问题:PHP Option::expects方法的具体用法?PHP Option::expects怎么用?PHP Option::expects使用的例子?那么恭喜您, 这里精选的方法代码示例或许可以为您提供帮助。您也可以进一步了解该方法所在类Magento\Catalog\Model\Product\Option
的用法示例。
在下文中一共展示了Option::expects方法的3个代码示例,这些例子默认根据受欢迎程度排序。您可以为喜欢或者感觉有用的代码点赞,您的评价将有助于系统推荐出更棒的PHP代码示例。
示例1: testValidateWithInvalidFile
/**
* @expectedException \Magento\Framework\Exception\LocalizedException
* @expectedExceptionMessage The file 'File Title' for 'Option Title' has an invalid extension.
*/
public function testValidateWithInvalidFile()
{
$relativePath = '/custom_options/quote/file';
$optionValues = ['quote_path' => '/custom_options/quote/file', 'title' => 'File Title'];
$this->prepare();
$this->directoryRead->expects($this->once())->method('isReadable')->with($relativePath)->willReturn(false);
$this->option->expects($this->once())->method('getTitle')->willReturn('Option Title');
$this->zendValidator->expects($this->at(2))->method('getErrors')->willReturn(true);
$this->zendValidator->expects($this->at(3))->method('getErrors')->willReturn([\Zend_Validate_File_ExcludeExtension::FALSE_EXTENSION]);
$this->validator->validate($optionValues, $this->option);
}
示例2: testSave
/**
* Test for `save` method
*/
public function testSave()
{
$this->imageCache->expects($this->once())->method('generate')->with($this->model);
$this->imageCacheFactory->expects($this->once())->method('create')->willReturn($this->imageCache);
$this->model->setIsDuplicate(false);
$this->configureSaveTest();
$this->optionInstanceMock->expects($this->any())->method('setProduct')->will($this->returnSelf());
$this->optionInstanceMock->expects($this->once())->method('saveOptions')->will($this->returnSelf());
$this->model->beforeSave();
$this->model->afterSave();
}
示例3: testExecuteBadSecretKey
public function testExecuteBadSecretKey()
{
$this->itemOptionMock->expects($this->once())->method('load')->willReturnSelf();
$this->itemOptionMock->expects($this->once())->method('getId')->willReturn(self::OPTION_ID);
$this->itemOptionMock->expects($this->any())->method('getCode')->willReturn(self::OPTION_CODE);
$this->itemOptionMock->expects($this->any())->method('getProductId')->willReturn(self::OPTION_PRODUCT_ID);
$this->itemOptionMock->expects($this->any())->method('getValue')->willReturn(self::OPTION_VALUE);
$this->productOptionMock->expects($this->once())->method('load')->willReturnSelf();
$this->productOptionMock->expects($this->any())->method('getId')->willReturn(self::OPTION_ID);
$this->productOptionMock->expects($this->any())->method('getProductId')->willReturn(self::OPTION_PRODUCT_ID);
$this->productOptionMock->expects($this->any())->method('getType')->willReturn(self::OPTION_TYPE);
$this->unserializeMock->expects($this->once())->method('unserialize')->with(self::OPTION_VALUE)->willReturn([self::SECRET_KEY => 'bad_test_secret_key']);
$this->resultForwardMock->expects($this->once())->method('forward')->with('noroute')->willReturn(true);
$this->objectMock->execute();
}