public function WizardTest::testCommentWizard in Views (for Drupal 7) 8.3
Tests adding a view of comments.
File
- lib/
Drupal/ views/ Tests/ Comment/ WizardTest.php, line 38 - Definition of Drupal\views\Tests\Comment\WizardTest.
Class
- WizardTest
- Tests the comment module integration into the wizard.
Namespace
Drupal\views\Tests\CommentCode
public function testCommentWizard() {
$view = array();
$view['human_name'] = $this
->randomName(16);
$view['name'] = strtolower($this
->randomName(16));
$view['show[wizard_key]'] = 'comment';
$view['page[path]'] = $this
->randomName(16);
// Just triggering the saving should automatically choose a proper row
// plugin.
$this
->drupalPost('admin/structure/views/add', $view, t('Continue & edit'));
$this
->assertUrl('admin/structure/views/view/' . $view['name'], array(), 'Make sure the view saving was successful and the browser got redirected to the edit page.');
// If we update the type first we should get a selection of comment valid
// row plugins as the select field.
$this
->drupalGet('admin/structure/views/add');
$this
->drupalPost('admin/structure/views/add', $view, t('Update "of type" choice'));
// Check for available options of the row plugin.
$xpath = $this
->constructFieldXpath('name', 'page[style][row_plugin]');
$fields = $this
->xpath($xpath);
$options = array();
foreach ($fields as $field) {
$items = $this
->getAllOptions($field);
foreach ($items as $item) {
$options[] = $item
->attributes()->value;
}
}
$expected_options = array(
'comment',
'fields',
);
$this
->assertEqual($options, $expected_options);
$this
->drupalPost(NULL, $view, t('Continue & edit'));
$this
->assertUrl('admin/structure/views/view/' . $view['name'], array(), 'Make sure the view saving was successful and the browser got redirected to the edit page.');
$this
->drupalPost(NULL, array(), t('Save'));
$view = views_get_view($view['name']);
$view
->initHandlers();
$row = $view->display_handler
->getOption('row');
$this
->assertEqual($row['type'], 'comment');
// Check for the default filters.
$this
->assertEqual($view->filter['status']->table, 'comment');
$this
->assertEqual($view->filter['status']->field, 'status');
$this
->assertTrue($view->filter['status']->value);
$this
->assertEqual($view->filter['status_node']->table, 'node');
$this
->assertEqual($view->filter['status_node']->field, 'status');
$this
->assertTrue($view->filter['status_node']->value);
// Check for the default fields.
$this
->assertEqual($view->field['subject']->table, 'comment');
$this
->assertEqual($view->field['subject']->field, 'subject');
}