From 87986e31516c999220216a8820f900b5963adcd7 Mon Sep 17 00:00:00 2001 From: Alex Pott <alex.a.pott@googlemail.com> Date: Sat, 12 Dec 2015 17:43:31 +0000 Subject: [PATCH] Issue #2404039 by Lendude, jhedstrom, fgm, zealfire, adci_contributor, dawehner: Views performance statistics do not properly display --- .../views_ui/src/Tests/PreviewTest.php | 28 +++++++++++++ core/modules/views_ui/src/ViewUI.php | 41 +++++-------------- 2 files changed, 38 insertions(+), 31 deletions(-) diff --git a/core/modules/views_ui/src/Tests/PreviewTest.php b/core/modules/views_ui/src/Tests/PreviewTest.php index 6ec46eb61105..69d1feeb851a 100644 --- a/core/modules/views_ui/src/Tests/PreviewTest.php +++ b/core/modules/views_ui/src/Tests/PreviewTest.php @@ -90,6 +90,34 @@ function testPreviewUI() { $this->drupalPostForm(NULL, array(), t('Update preview')); $result = $this->xpath('//div[@id="views-live-preview"]/pre'); $this->assertTrue(strpos($result[0], '<title>' . $view['page[title]'] . '</title>'), 'The Feed RSS preview was rendered.'); + + // Test the non-default UI display options. + // Statistics only, no query. + $settings = \Drupal::configFactory()->getEditable('views.settings'); + $settings->set('ui.show.performance_statistics', TRUE)->save(); + $this->drupalGet('admin/structure/views/view/test_preview/edit'); + $this->drupalPostForm(NULL, $edit = array('view_args' => '100'), t('Update preview')); + $this->assertText(t('Query build time')); + $this->assertText(t('Query execute time')); + $this->assertText(t('View render time')); + $this->assertNoRaw('<strong>Query</strong>'); + + // Statistics and query. + $settings->set('ui.show.sql_query.enabled', TRUE)->save(); + $this->drupalPostForm(NULL, $edit = array('view_args' => '100'), t('Update preview')); + $this->assertText(t('Query build time')); + $this->assertText(t('Query execute time')); + $this->assertText(t('View render time')); + $this->assertRaw('<strong>Query</strong>'); + $this->assertText("SELECT views_test_data.name AS views_test_data_name\nFROM \n{views_test_data} views_test_data\nWHERE (( (views_test_data.id = '100' ) ))"); + + // Test that the statistics and query are rendered above the preview. + $this->assertTrue(strpos($this->getRawContent(), 'views-query-info') < strpos($this->getRawContent(), 'view-test-preview') , 'Statistics shown above the preview.'); + + // Test that statistics and query rendered below the preview. + $settings->set('ui.show.sql_query.where', 'below')->save(); + $this->drupalPostForm(NULL, $edit = array('view_args' => '100'), t('Update preview')); + $this->assertTrue(strpos($this->getRawContent(), 'view-test-preview') < strpos($this->getRawContent(), 'views-query-info'), 'Statistics shown below the preview.'); } /** diff --git a/core/modules/views_ui/src/ViewUI.php b/core/modules/views_ui/src/ViewUI.php index 4153217c7c8b..33c3284233bd 100644 --- a/core/modules/views_ui/src/ViewUI.php +++ b/core/modules/views_ui/src/ViewUI.php @@ -45,26 +45,12 @@ class ViewUI implements ViewEntityInterface { public $changed_display; /** - * How long the view takes to build. + * How long the view takes to render in microseconds. * - * @var int - */ - public $build_time; - - /** - * How long the view takes to render. - * - * @var int + * @var float */ public $render_time; - /** - * How long the view takes to execute. - * - * @var int - */ - public $execute_time; - /** * If this view is locked for editing. * @@ -636,12 +622,15 @@ public function renderPreview($display_id, $args = array()) { $this->endQueryCapture(); } - $this->render_time = Timer::stop('entity.view.preview_form'); + $this->render_time = Timer::stop('entity.view.preview_form')['time']; views_ui_contextual_links_suppress_pop(); // Prepare the query information and statistics to show either above or // below the view preview. + // Initialise the empty rows arrays so we can safely merge them later. + $rows['query'] = []; + $rows['statistics'] = []; if ($show_info || $show_query || $show_stats) { // Get information from the preview for display. if (!empty($executable->build_info['query'])) { @@ -769,7 +758,7 @@ public function renderPreview($display_id, $args = array()) { '#template' => "<strong>{% trans 'View render time' %}</strong>", ), ), - t('@time ms', array('@time' => intval($executable->render_time * 100000) / 100)), + t('@time ms', array('@time' => intval($this->render_time * 100) / 100)), ); } \Drupal::moduleHandler()->alter('views_preview_info', $rows, $executable); @@ -827,26 +816,16 @@ public function renderPreview($display_id, $args = array()) { '#type' => 'table', '#prefix' => '<div class="views-query-info">', '#suffix' => '</div>', + '#rows' => array_merge($rows['query'], $rows['statistics']), ); - if ($show_location === 'above' || $show_location === 'below') { - if ($combined) { - $table['#rows'] = array_merge($rows['query'], $rows['statistics']); - } - else { - $table['#rows'] = $rows['query']; - } - } - elseif ($show_stats === 'above' || $show_stats === 'below') { - $table['#rows'] = $rows['statistics']; - } - if ($show_location === 'above' || $show_stats === 'above') { + if ($show_location == 'above') { $output = [ 'table' => $table, 'preview' => $preview, ]; } - elseif ($show_location === 'below' || $show_stats === 'below') { + else { $output = [ 'preview' => $preview, 'table' => $table, -- GitLab