本文整理匯總了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();
}