本文整理汇总了PHP中Drupal\views\ViewExecutable::expects方法的典型用法代码示例。如果您正苦于以下问题:PHP ViewExecutable::expects方法的具体用法?PHP ViewExecutable::expects怎么用?PHP ViewExecutable::expects使用的例子?那么恭喜您, 这里精选的方法代码示例或许可以为您提供帮助。您也可以进一步了解该方法所在类Drupal\views\ViewExecutable
的用法示例。
在下文中一共展示了ViewExecutable::expects方法的4个代码示例,这些例子默认根据受欢迎程度排序。您可以为喜欢或者感觉有用的代码点赞,您的评价将有助于系统推荐出更棒的PHP代码示例。
示例1: setUp
/**
* {@inheritdoc}
*/
protected function setUp()
{
parent::setUp();
$this->entityManager = $this->getMock('Drupal\\Core\\Entity\\EntityManagerInterface');
$this->entityStorage = $this->getMock('Drupal\\Core\\Entity\\EntityStorageInterface');
$this->entityViewBuilder = $this->getMock('Drupal\\Core\\Entity\\EntityViewBuilderInterface');
$this->executable = $this->getMockBuilder('Drupal\\views\\ViewExecutable')->disableOriginalConstructor()->getMock();
$this->display = $this->getMockBuilder('Drupal\\views\\Plugin\\views\\display\\DisplayPluginBase')->disableOriginalConstructor()->getMock();
$this->stylePlugin = $this->getMockBuilder('Drupal\\views\\Plugin\\views\\style\\StylePluginBase')->disableOriginalConstructor()->getMock();
$this->executable->style_plugin = $this->stylePlugin;
$this->entityHandler = new Entity(array(), 'entity', array('entity_type' => 'entity_test'), $this->entityManager);
$this->display->expects($this->any())->method('getPlugin')->with('style')->willReturn($this->stylePlugin);
$this->executable->expects($this->any())->method('getStyle')->willReturn($this->stylePlugin);
$token = $this->getMockBuilder('Drupal\\Core\\Utility\\Token')->disableOriginalConstructor()->getMock();
$token->expects($this->any())->method('replace')->willReturnArgument(0);
$container = new ContainerBuilder();
$container->set('token', $token);
\Drupal::setContainer($container);
}
示例2: testBuildFailed
/**
* Tests the build method with a failed execution.
*
* @see \Drupal\views\Plugin\block\ViewsBlock::build()
*/
public function testBuildFailed()
{
$output = FALSE;
$this->executable->expects($this->once())->method('buildRenderable')->with('block_1', [])->willReturn($output);
$block_id = 'views_block:test_view-block_1';
$config = array();
$definition = array();
$definition['provider'] = 'views';
$plugin = new ViewsBlock($config, $block_id, $definition, $this->executableFactory, $this->storage, $this->account);
$this->assertEquals(array(), $plugin->build());
}
示例3: testBuildFailed
/**
* Tests the build method with a failed execution.
*
* @see \Drupal\views\Plugin\block\ViewsBlock::build()
*/
public function testBuildFailed()
{
$output = FALSE;
$this->executable->expects($this->once())->method('executeDisplay')->with($this->equalTo('block_1'))->will($this->returnValue($output));
$block_id = 'views_block:test_view-block_1';
$config = array();
$definition = array();
$definition['provider'] = 'views';
$plugin = new ViewsBlock($config, $block_id, $definition, $this->executableFactory, $this->storage, $this->account);
$reflector = new \ReflectionClass($plugin);
$property = $reflector->getProperty('conditionPluginManager');
$property->setAccessible(TRUE);
$property->setValue($plugin, $this->getMock('Drupal\\Core\\Executable\\ExecutableManagerInterface'));
$this->assertEquals(array(), $plugin->build());
}
示例4: testBuildOverride
/**
* Tests the build method with overriding items per page.
*/
public function testBuildOverride()
{
$this->executable->expects($this->once())->method('setItemsPerPage')->with(5);
$this->blockPlugin->expects($this->once())->method('getConfiguration')->will($this->returnValue(array('items_per_page' => 5)));
$this->blockDisplay->preBlockBuild($this->blockPlugin);
}