95fba8c6ad0340f82d59ab9b32f3239fe320e532
[yaffs-website] / web / core / modules / views_ui / src / Tests / PreviewTest.php
1 <?php
2
3 namespace Drupal\views_ui\Tests;
4
5 use Drupal\Component\Serialization\Json;
6 use Drupal\Core\EventSubscriber\MainContentViewSubscriber;
7
8 /**
9  * Tests the UI preview functionality.
10  *
11  * @group views_ui
12  */
13 class PreviewTest extends UITestBase {
14
15   /**
16    * Views used by this test.
17    *
18    * @var array
19    */
20   public static $testViews = ['test_preview', 'test_preview_error', 'test_pager_full', 'test_mini_pager', 'test_click_sort'];
21
22   /**
23    * Tests contextual links in the preview form.
24    */
25   public function testPreviewContextual() {
26     \Drupal::service('module_installer')->install(['contextual']);
27     $this->resetAll();
28
29     $this->drupalGet('admin/structure/views/view/test_preview/edit');
30     $this->assertResponse(200);
31     $this->drupalPostForm(NULL, $edit = [], t('Update preview'));
32
33     $elements = $this->xpath('//div[@id="views-live-preview"]//ul[contains(@class, :ul-class)]/li[contains(@class, :li-class)]', [':ul-class' => 'contextual-links', ':li-class' => 'filter-add']);
34     $this->assertEqual(count($elements), 1, 'The contextual link to add a new field is shown.');
35
36     $this->drupalPostForm(NULL, $edit = ['view_args' => '100'], t('Update preview'));
37
38     // Test that area text and exposed filters are present and rendered.
39     $this->assertFieldByName('id', NULL, 'ID exposed filter field found.');
40     $this->assertText('Test header text', 'Rendered header text found');
41     $this->assertText('Test footer text', 'Rendered footer text found.');
42     $this->assertText('Test empty text', 'Rendered empty text found.');
43   }
44
45   /**
46    * Tests arguments in the preview form.
47    */
48   public function testPreviewUI() {
49     $this->drupalGet('admin/structure/views/view/test_preview/edit');
50     $this->assertResponse(200);
51
52     $this->drupalPostForm(NULL, $edit = [], t('Update preview'));
53
54     $elements = $this->xpath('//div[@class = "view-content"]/div[contains(@class, views-row)]');
55     $this->assertEqual(count($elements), 5);
56
57     // Filter just the first result.
58     $this->drupalPostForm(NULL, $edit = ['view_args' => '1'], t('Update preview'));
59
60     $elements = $this->xpath('//div[@class = "view-content"]/div[contains(@class, views-row)]');
61     $this->assertEqual(count($elements), 1);
62
63     // Filter for no results.
64     $this->drupalPostForm(NULL, $edit = ['view_args' => '100'], t('Update preview'));
65
66     $elements = $this->xpath('//div[@class = "view-content"]/div[contains(@class, views-row)]');
67     $this->assertEqual(count($elements), 0);
68
69     // Test that area text and exposed filters are present and rendered.
70     $this->assertFieldByName('id', NULL, 'ID exposed filter field found.');
71     $this->assertText('Test header text', 'Rendered header text found');
72     $this->assertText('Test footer text', 'Rendered footer text found.');
73     $this->assertText('Test empty text', 'Rendered empty text found.');
74
75     // Test feed preview.
76     $view = [];
77     $view['label'] = $this->randomMachineName(16);
78     $view['id'] = strtolower($this->randomMachineName(16));
79     $view['page[create]'] = 1;
80     $view['page[title]'] = $this->randomMachineName(16);
81     $view['page[path]'] = $this->randomMachineName(16);
82     $view['page[feed]'] = 1;
83     $view['page[feed_properties][path]'] = $this->randomMachineName(16);
84     $this->drupalPostForm('admin/structure/views/add', $view, t('Save and edit'));
85     $this->clickLink(t('Feed'));
86     $this->drupalPostForm(NULL, [], t('Update preview'));
87     $result = $this->xpath('//div[@id="views-live-preview"]/pre');
88     $this->assertTrue(strpos($result[0], '<title>' . $view['page[title]'] . '</title>'), 'The Feed RSS preview was rendered.');
89
90     // Test the non-default UI display options.
91     // Statistics only, no query.
92     $settings = \Drupal::configFactory()->getEditable('views.settings');
93     $settings->set('ui.show.performance_statistics', TRUE)->save();
94     $this->drupalGet('admin/structure/views/view/test_preview/edit');
95     $this->drupalPostForm(NULL, $edit = ['view_args' => '100'], t('Update preview'));
96     $this->assertText(t('Query build time'));
97     $this->assertText(t('Query execute time'));
98     $this->assertText(t('View render time'));
99     $this->assertNoRaw('<strong>Query</strong>');
100
101     // Statistics and query.
102     $settings->set('ui.show.sql_query.enabled', TRUE)->save();
103     $this->drupalPostForm(NULL, $edit = ['view_args' => '100'], t('Update preview'));
104     $this->assertText(t('Query build time'));
105     $this->assertText(t('Query execute time'));
106     $this->assertText(t('View render time'));
107     $this->assertRaw('<strong>Query</strong>');
108     $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 = &#039;100&#039; )");
109
110     // Test that the statistics and query are rendered above the preview.
111     $this->assertTrue(strpos($this->getRawContent(), 'views-query-info') < strpos($this->getRawContent(), 'view-test-preview'), 'Statistics shown above the preview.');
112
113     // Test that statistics and query rendered below the preview.
114     $settings->set('ui.show.sql_query.where', 'below')->save();
115     $this->drupalPostForm(NULL, $edit = ['view_args' => '100'], t('Update preview'));
116     $this->assertTrue(strpos($this->getRawContent(), 'view-test-preview') < strpos($this->getRawContent(), 'views-query-info'), 'Statistics shown below the preview.');
117   }
118
119   /**
120    * Tests the taxonomy term preview AJAX.
121    *
122    * This tests a specific regression in the taxonomy term view preview.
123    *
124    * @see https://www.drupal.org/node/2452659
125    */
126   public function testTaxonomyAJAX() {
127     \Drupal::service('module_installer')->install(['taxonomy']);
128     $this->getPreviewAJAX('taxonomy_term', 'page_1', 0);
129   }
130
131   /**
132    * Tests pagers in the preview form.
133    */
134   public function testPreviewWithPagersUI() {
135
136     // Create 11 nodes and make sure that everyone is returned.
137     $this->drupalCreateContentType(['type' => 'page']);
138     for ($i = 0; $i < 11; $i++) {
139       $this->drupalCreateNode();
140     }
141
142     // Test Full Pager.
143     $this->getPreviewAJAX('test_pager_full', 'default', 5);
144
145     // Test that the pager is present and rendered.
146     $elements = $this->xpath('//ul[contains(@class, :class)]/li', [':class' => 'pager__items']);
147     $this->assertTrue(!empty($elements), 'Full pager found.');
148
149     // Verify elements and links to pages.
150     // We expect to find 5 elements: current page == 1, links to pages 2 and
151     // and 3, links to 'next >' and 'last >>' pages.
152     $this->assertClass($elements[0], 'is-active', 'Element for current page has .is-active class.');
153     $this->assertTrue($elements[0]->a, 'Element for current page has link.');
154
155     $this->assertClass($elements[1], 'pager__item', 'Element for page 2 has .pager__item class.');
156     $this->assertTrue($elements[1]->a, 'Link to page 2 found.');
157
158     $this->assertClass($elements[2], 'pager__item', 'Element for page 3 has .pager__item class.');
159     $this->assertTrue($elements[2]->a, 'Link to page 3 found.');
160
161     $this->assertClass($elements[3], 'pager__item--next', 'Element for next page has .pager__item--next class.');
162     $this->assertTrue($elements[3]->a, 'Link to next page found.');
163
164     $this->assertClass($elements[4], 'pager__item--last', 'Element for last page has .pager__item--last class.');
165     $this->assertTrue($elements[4]->a, 'Link to last page found.');
166
167     // Navigate to next page.
168     $elements = $this->xpath('//li[contains(@class, :class)]/a', [':class' => 'pager__item--next']);
169     $this->clickPreviewLinkAJAX($elements[0]['href'], 5);
170
171     // Test that the pager is present and rendered.
172     $elements = $this->xpath('//ul[contains(@class, :class)]/li', [':class' => 'pager__items']);
173     $this->assertTrue(!empty($elements), 'Full pager found.');
174
175     // Verify elements and links to pages.
176     // We expect to find 7 elements: links to '<< first' and '< previous'
177     // pages, link to page 1, current page == 2, link to page 3 and links
178     // to 'next >' and 'last >>' pages.
179     $this->assertClass($elements[0], 'pager__item--first', 'Element for first page has .pager__item--first class.');
180     $this->assertTrue($elements[0]->a, 'Link to first page found.');
181
182     $this->assertClass($elements[1], 'pager__item--previous', 'Element for previous page has .pager__item--previous class.');
183     $this->assertTrue($elements[1]->a, 'Link to previous page found.');
184
185     $this->assertClass($elements[2], 'pager__item', 'Element for page 1 has .pager__item class.');
186     $this->assertTrue($elements[2]->a, 'Link to page 1 found.');
187
188     $this->assertClass($elements[3], 'is-active', 'Element for current page has .is-active class.');
189     $this->assertTrue($elements[3]->a, 'Element for current page has link.');
190
191     $this->assertClass($elements[4], 'pager__item', 'Element for page 3 has .pager__item class.');
192     $this->assertTrue($elements[4]->a, 'Link to page 3 found.');
193
194     $this->assertClass($elements[5], 'pager__item--next', 'Element for next page has .pager__item--next class.');
195     $this->assertTrue($elements[5]->a, 'Link to next page found.');
196
197     $this->assertClass($elements[6], 'pager__item--last', 'Element for last page has .pager__item--last class.');
198     $this->assertTrue($elements[6]->a, 'Link to last page found.');
199
200     // Test Mini Pager.
201     $this->getPreviewAJAX('test_mini_pager', 'default', 3);
202
203     // Test that the pager is present and rendered.
204     $elements = $this->xpath('//ul[contains(@class, :class)]/li', [':class' => 'pager__items']);
205     $this->assertTrue(!empty($elements), 'Mini pager found.');
206
207     // Verify elements and links to pages.
208     // We expect to find current pages element with no link, next page element
209     // with a link, and not to find previous page element.
210     $this->assertClass($elements[0], 'is-active', 'Element for current page has .is-active class.');
211
212     $this->assertClass($elements[1], 'pager__item--next', 'Element for next page has .pager__item--next class.');
213     $this->assertTrue($elements[1]->a, 'Link to next page found.');
214
215     // Navigate to next page.
216     $elements = $this->xpath('//li[contains(@class, :class)]/a', [':class' => 'pager__item--next']);
217     $this->clickPreviewLinkAJAX($elements[0]['href'], 3);
218
219     // Test that the pager is present and rendered.
220     $elements = $this->xpath('//ul[contains(@class, :class)]/li', [':class' => 'pager__items']);
221     $this->assertTrue(!empty($elements), 'Mini pager found.');
222
223     // Verify elements and links to pages.
224     // We expect to find 3 elements: previous page with a link, current
225     // page with no link, and next page with a link.
226     $this->assertClass($elements[0], 'pager__item--previous', 'Element for previous page has .pager__item--previous class.');
227     $this->assertTrue($elements[0]->a, 'Link to previous page found.');
228
229     $this->assertClass($elements[1], 'is-active', 'Element for current page has .is-active class.');
230     $this->assertFalse(isset($elements[1]->a), 'Element for current page has no link.');
231
232     $this->assertClass($elements[2], 'pager__item--next', 'Element for next page has .pager__item--next class.');
233     $this->assertTrue($elements[2]->a, 'Link to next page found.');
234   }
235
236   /**
237    * Tests the additional information query info area.
238    */
239   public function testPreviewAdditionalInfo() {
240     \Drupal::service('module_installer')->install(['views_ui_test']);
241     $this->resetAll();
242
243     $this->drupalGet('admin/structure/views/view/test_preview/edit');
244     $this->assertResponse(200);
245
246     $this->drupalPostForm(NULL, $edit = [], t('Update preview'));
247
248     // Check for implementation of hook_views_preview_info_alter().
249     // @see views_ui_test.module
250     $elements = $this->xpath('//div[@id="views-live-preview"]/div[contains(@class, views-query-info)]//td[text()=:text]', [':text' => t('Test row count')]);
251     $this->assertEqual(count($elements), 1, 'Views Query Preview Info area altered.');
252     // Check that additional assets are attached.
253     $this->assertTrue(strpos($this->getDrupalSettings()['ajaxPageState']['libraries'], 'views_ui_test/views_ui_test.test') !== FALSE, 'Attached library found.');
254     $this->assertRaw('css/views_ui_test.test.css', 'Attached CSS asset found.');
255   }
256
257   /**
258    * Tests view validation error messages in the preview.
259    */
260   public function testPreviewError() {
261     $this->drupalGet('admin/structure/views/view/test_preview_error/edit');
262     $this->assertResponse(200);
263
264     $this->drupalPostForm(NULL, $edit = [], t('Update preview'));
265
266     $this->assertText('Unable to preview due to validation errors.', 'Preview error text found.');
267   }
268
269   /**
270    * Tests the link to sort in the preview form.
271    */
272   public function testPreviewSortLink() {
273
274     // Get the preview.
275     $this->getPreviewAJAX('test_click_sort', 'page_1', 0);
276
277     // Test that the header label is present.
278     $elements = $this->xpath('//th[contains(@class, :class)]/a', [':class' => 'views-field views-field-name']);
279     $this->assertTrue(!empty($elements), 'The header label is present.');
280
281     // Verify link.
282     $this->assertLinkByHref('preview/page_1?_wrapper_format=drupal_ajax&order=name&sort=desc', 0, 'The output URL is as expected.');
283
284     // Click link to sort.
285     $this->clickPreviewLinkAJAX($elements[0]['href'], 0);
286
287     // Test that the header label is present.
288     $elements = $this->xpath('//th[contains(@class, :class)]/a', [':class' => 'views-field views-field-name is-active']);
289     $this->assertTrue(!empty($elements), 'The header label is present.');
290
291     // Verify link.
292     $this->assertLinkByHref('preview/page_1?_wrapper_format=drupal_ajax&order=name&sort=asc', 0, 'The output URL is as expected.');
293   }
294
295   /**
296    * Get the preview form and force an AJAX preview update.
297    *
298    * @param string $view_name
299    *   The view to test.
300    * @param string $panel_id
301    *   The view panel to test.
302    * @param int $row_count
303    *   The expected number of rows in the preview.
304    */
305   protected function getPreviewAJAX($view_name, $panel_id, $row_count) {
306     $this->drupalGet('admin/structure/views/view/' . $view_name . '/preview/' . $panel_id);
307     $result = $this->drupalPostAjaxForm(NULL, [], ['op' => t('Update preview')]);
308     $this->assertPreviewAJAX($result, $row_count);
309   }
310
311   /**
312    * Mimic clicking on a preview link.
313    *
314    * @param string $url
315    *   The url to navigate to.
316    * @param int $row_count
317    *   The expected number of rows in the preview.
318    */
319   protected function clickPreviewLinkAJAX($url, $row_count) {
320     $content = $this->content;
321     $drupal_settings = $this->drupalSettings;
322     $ajax_settings = [
323       'wrapper' => 'views-preview-wrapper',
324       'method' => 'replaceWith',
325     ];
326     $url = $this->getAbsoluteUrl($url);
327     $post = ['js' => 'true'] + $this->getAjaxPageStatePostData();
328     $result = Json::decode($this->drupalPost($url, '', $post, ['query' => [MainContentViewSubscriber::WRAPPER_FORMAT => 'drupal_ajax']]));
329     if (!empty($result)) {
330       $this->drupalProcessAjaxResponse($content, $result, $ajax_settings, $drupal_settings);
331     }
332     $this->assertPreviewAJAX($result, $row_count);
333   }
334
335   /**
336    * Assert that the AJAX response contains expected data.
337    *
338    * @param array $result
339    *   An array of AJAX commands.
340    * @param int $row_count
341    *   The expected number of rows in the preview.
342    */
343   protected function assertPreviewAJAX($result, $row_count) {
344     // Has AJAX callback replied with an insert command? If so, we can
345     // assume that the page content was updated with AJAX returned data.
346     $result_commands = [];
347     foreach ($result as $command) {
348       $result_commands[$command['command']] = $command;
349     }
350     $this->assertTrue(isset($result_commands['insert']), 'AJAX insert command received.');
351
352     // Test if preview contains the expected number of rows.
353     $elements = $this->xpath('//div[@class = "view-content"]/div[contains(@class, views-row)]');
354     $this->assertEqual(count($elements), $row_count, 'Expected items found on page.');
355   }
356
357   /**
358    * Asserts that an element has a given class.
359    *
360    * @param \SimpleXMLElement $element
361    *   The element to test.
362    * @param string $class
363    *   The class to assert.
364    * @param string $message
365    *   (optional) A verbose message to output.
366    */
367   protected function assertClass(\SimpleXMLElement $element, $class, $message = NULL) {
368     if (!isset($message)) {
369       $message = "Class .$class found.";
370     }
371     $this->assertTrue(strpos($element['class'], $class) !== FALSE, $message);
372   }
373
374 }