function SearchBlockTest::testSearchFormBlock

File

drupal/core/modules/search/lib/Drupal/search/Tests/SearchBlockTest.php, line 35
Definition of Drupal\search\Tests\SearchBlockTest.

Class

SearchBlockTest

Namespace

Drupal\search\Tests

Code

function testSearchFormBlock() {

  // Set block title to confirm that the interface is available.
  $this
    ->drupalPost('admin/structure/block/manage/search/form/configure', array(
    'title' => $this
      ->randomName(8),
  ), t('Save block'));
  $this
    ->assertText(t('The block configuration has been saved.'), 'Block configuration set.');

  // Set the block to a region to confirm block is available.
  $edit = array();
  $edit['blocks[search_form][region]'] = 'footer';
  $this
    ->drupalPost('admin/structure/block', $edit, t('Save blocks'));
  $this
    ->assertText(t('The block settings have been updated.'), 'Block successfully move to footer region.');
}