1 search.test SearchCommentTestCase::setUp()

Sets up a Backdrop site for running functional and integration tests.

Generates a random database prefix and installs Backdrop with the specified installation profile in BackdropWebTestCase::$profile into the prefixed database. Afterwards, installs any additional modules specified by the test.

After installation all caches are flushed and several configuration values are reset to the values of the parent site executing the test, since the default values may be incompatible with the environment in which tests are being executed.

Parameters

...: List of modules to enable for the duration of the test. This can be either a single array or a variable number of string arguments.

Return value

bool: TRUE if set up completes, FALSE if an error occurred.

Overrides BackdropWebTestCase::setUp

See also

BackdropWebTestCase::prepareDatabasePrefix()

BackdropWebTestCase::changeDatabasePrefix()

BackdropWebTestCase::prepareEnvironment()

File

core/modules/search/tests/search.test, line 697
Tests for search.module.

Class

SearchCommentTestCase
Test integration searching comments.

Code

function setUp() {
  parent::setUp('comment', 'search');

  // Disable cache.
  config_set('system.core', 'cache', '0');

  // Create a simple content type and text format.
  $this->backdropCreateContentType(array(
    'type' => 'post',
    'name' => 'Post',
    'settings' => array(
      'comment_default' => COMMENT_NODE_OPEN,
      'comment_preview' => BACKDROP_OPTIONAL,
      'comment_title_options' => COMMENT_TITLE_CUSTOM,
    ),
  ));
  $full_html_format = (object) array(
    'format' => 'full_html',
    'name' => 'Raw HTML',
    'weight' => 1,
    'editor' => NULL,
    'filters' => array(),
  );
  filter_format_save($full_html_format);
  $this->checkPermissions(array(), TRUE);

  $anonymous_permissions = array(
    'access content',
    'access comments',
  );
  $authenticated_permissions = array(
    'access content',
    'access comments',
    'post comments',
  );
  user_role_grant_permissions(BACKDROP_ANONYMOUS_ROLE, $anonymous_permissions);
  user_role_grant_permissions(BACKDROP_AUTHENTICATED_ROLE, $authenticated_permissions);

  // Create and log in an administrative user having access to the Raw HTML
  // (full_html) text format.
  $permissions = array(
    'administer filters',
    filter_permission_name($full_html_format),
    'administer permissions',
    'create post content',
    'post comments',
    'skip comment approval',
    'access comments',
  );
  $this->admin_user = $this->backdropCreateUser($permissions);
  $this->backdropLogin($this->admin_user);

  // Enable the search block.
  $layout = layout_load('default');
  $layout->addBlock('search', 'form', 'content');
  $layout->save();
}