public function SqlTest::testGetCacheMaxAge in Drupal 8
Same name and namespace in other branches
- 9 core/modules/views/tests/src/Unit/Plugin/query/SqlTest.php \Drupal\Tests\views\Unit\Plugin\query\SqlTest::testGetCacheMaxAge()
- 10 core/modules/views/tests/src/Unit/Plugin/query/SqlTest.php \Drupal\Tests\views\Unit\Plugin\query\SqlTest::testGetCacheMaxAge()
@covers ::getCacheTags @covers ::getAllEntities
File
- core/modules/ views/ tests/ src/ Unit/ Plugin/ query/ SqlTest.php, line 79 
Class
- SqlTest
- @coversDefaultClass \Drupal\views\Plugin\views\query\Sql
Namespace
Drupal\Tests\views\Unit\Plugin\queryCode
public function testGetCacheMaxAge() {
  $view = $this
    ->prophesize('Drupal\\views\\ViewExecutable')
    ->reveal();
  $entity_type_manager = $this
    ->prophesize(EntityTypeManagerInterface::class);
  $date_sql = $this
    ->prophesize(DateSqlInterface::class);
  $messenger = $this
    ->prophesize(MessengerInterface::class);
  $query = new Sql([], 'sql', [], $entity_type_manager
    ->reveal(), $date_sql
    ->reveal(), $messenger
    ->reveal());
  $query->view = $view;
  $view->result = [];
  // Add a row with an entity.
  $row = new ResultRow();
  $prophecy = $this
    ->prophesize('Drupal\\Core\\Entity\\EntityInterface');
  $prophecy
    ->getCacheMaxAge()
    ->willReturn(10);
  $entity = $prophecy
    ->reveal();
  $row->_entity = $entity;
  $view->result[] = $row;
  // Add a row with an entity and a relationship entity.
  $row = new ResultRow();
  $prophecy = $this
    ->prophesize('Drupal\\Core\\Entity\\EntityInterface');
  $prophecy
    ->getCacheMaxAge()
    ->willReturn(20);
  $entity = $prophecy
    ->reveal();
  $row->_entity = $entity;
  $prophecy = $this
    ->prophesize('Drupal\\Core\\Entity\\EntityInterface');
  $prophecy
    ->getCacheMaxAge()
    ->willReturn(30);
  $entity = $prophecy
    ->reveal();
  $row->_relationship_entities[] = $entity;
  $prophecy = $this
    ->prophesize('Drupal\\Core\\Entity\\EntityInterface');
  $prophecy
    ->getCacheMaxAge()
    ->willReturn(40);
  $entity = $prophecy
    ->reveal();
  $row->_relationship_entities[] = $entity;
  $this
    ->assertEquals(10, $query
    ->getCacheMaxAge());
}