You are here

public function SearchByPageUsersReindexTest::setUp in Search by Page 7

Same name and namespace in other branches
  1. 6 tests/search_by_page.test \SearchByPageUsersReindexTest::setUp()

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

Generates a random database prefix and installs Drupal with the specified installation profile in DrupalWebTestCase::$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.

Overrides DrupalWebTestCase::setUp

See also

DrupalWebTestCase::prepareDatabasePrefix()

DrupalWebTestCase::changeDatabasePrefix()

DrupalWebTestCase::prepareEnvironment()

File

tests/search_by_page.test, line 1187
Tests for the Search by Page module. By Jennifer Hodgdon of Poplar ProductivityWare, www.poplarware.com

Class

SearchByPageUsersReindexTest
Tests when users are reindexed.

Code

public function setUp() {
  parent::setUp('search', 'search_by_page', 'sbp_users', 'sbp_test', 'dblog');
  $this
    ->setUpEnvironments();

  // Set up five users for searching
  for ($i = 0; $i < 5; $i++) {
    $acct = $this
      ->drupalCreateUser(array(
      'access content',
    ));
    $this->users[] = $acct;
    $this->roles[$this
      ->getNewRoleID($acct)] = 1;
  }

  // Set up a user that can see user profiles, to use when indexing.
  $this->indexuser = $this
    ->drupalCreateUser(array(
    'access user profiles',
  ));
  $this->superuser = $this
    ->drupalCreateUser(array(
    'administer nodes',
    'access content',
    'administer content types',
    'administer blocks',
    'administer search',
    'search content',
    'administer search by page',
    'access administration pages',
    $this
      ->searchPerm($this->envinfo2),
    'administer site configuration',
    'administer users',
    'administer permissions',
    'view test private content',
    'access user profiles',
    'access site reports',
  ));
  $this
    ->drupalLogin($this->superuser);

  // Make sure all our test users are indexed.
  $edit = array(
    'sbp_users_role' => $this
      ->getNewRoleID($this->indexuser),
    'button_label' => t('Search pages'),
  );
  foreach (array_keys($this->roles) as $rid) {
    $edit['sbp_users_roles_indexed[' . $rid . ']'] = TRUE;
  }
  $this
    ->drupalPost('admin/config/search/search_by_page/edit/' . $this->envid2, $edit, 'Save configuration');
  cache_clear_all('variables', 'cache');
  variable_initialize();
  $this
    ->doCronrun();
  $this
    ->drupalLogin($this->superuser);
  $this
    ->drupalGet('admin/reports/dblog');
  $this
    ->assertText(t('Cron run completed'), 'Log shows cron run completed');
  $this
    ->drupalLogout();
}