public function DefaultViewsTest::testDefaultViews in Zircon Profile 8.0
Same name in this branch
- 8.0 core/modules/views/src/Tests/DefaultViewsTest.php \Drupal\views\Tests\DefaultViewsTest::testDefaultViews()
- 8.0 core/modules/views_ui/src/Tests/DefaultViewsTest.php \Drupal\views_ui\Tests\DefaultViewsTest::testDefaultViews()
Same name and namespace in other branches
- 8 core/modules/views/src/Tests/DefaultViewsTest.php \Drupal\views\Tests\DefaultViewsTest::testDefaultViews()
Test that all Default views work as expected.
File
- core/
modules/ views/ src/ Tests/ DefaultViewsTest.php, line 116 - Contains \Drupal\views\Tests\DefaultViewsTest.
Class
- DefaultViewsTest
- Tests the default views provided by views.
Namespace
Drupal\views\TestsCode
public function testDefaultViews() {
// Get all default views.
$controller = $this->container
->get('entity.manager')
->getStorage('view');
$views = $controller
->loadMultiple();
foreach ($views as $name => $view_storage) {
$view = $view_storage
->getExecutable();
$view
->initDisplay();
foreach ($view->storage
->get('display') as $display_id => $display) {
$view
->setDisplay($display_id);
// Add any args if needed.
if (array_key_exists($name, $this->viewArgMap)) {
$view
->preExecute($this->viewArgMap[$name]);
}
$this
->assert(TRUE, format_string('View @view will be executed.', array(
'@view' => $view->storage
->id(),
)));
$view
->execute();
$tokens = array(
'@name' => $name,
'@display_id' => $display_id,
);
$this
->assertTrue($view->executed, format_string('@name:@display_id has been executed.', $tokens));
$count = count($view->result);
$this
->assertTrue($count > 0, format_string('@count results returned', array(
'@count' => $count,
)));
$view
->destroy();
}
}
}