You are here

public function PorterStemmerFunctionalTest::setUp in Porter-Stemmer 7

Same name and namespace in other branches
  1. 6.2 porterstemmer.test \PorterStemmerFunctionalTest::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

./porterstemmer.test, line 24
Tests for the Porter Stemmer module. By Jennifer Hodgdon of Poplar ProductivityWare, www.poplarware.com Unit tests are based on sample words from http://snowball.tartarus.org/algorithms/english/stemmer.html which are stored in a separate file…

Class

PorterStemmerFunctionalTest
Functional test for Porter Stemmer.

Code

public function setUp() {
  parent::setUp('porterstemmer', 'search');

  // Set up a super-user
  $this->superuser = $this
    ->drupalCreateUser(array(
    'administer nodes',
    'access content',
    'administer content types',
    'administer search',
    'search content',
    'access administration pages',
    'administer site configuration',
  ));
  $this
    ->drupalLogin($this->superuser);

  // Create some content to search, with the words walk, walking, and walked.
  $info = array(
    'body' => array(
      LANGUAGE_NONE => array(
        array(
          'value' => 'I walk through the streets, looking around for trouble',
        ),
      ),
    ),
    'type' => 'page',
    'language' => LANGUAGE_NONE,
    'title' => 'first page',
  );
  $node = $this
    ->drupalCreateNode($info);
  $this
    ->drupalGet('node/' . $node->nid);
  $this
    ->assertText('walk');
  $info = array(
    'body' => array(
      LANGUAGE_NONE => array(
        array(
          'value' => 'I walked home from work today.',
        ),
      ),
    ),
    'type' => 'page',
    'language' => LANGUAGE_NONE,
    'title' => 'second page',
  );
  $node = $this
    ->drupalCreateNode($info);
  $this
    ->drupalGet('node/' . $node->nid);
  $this
    ->assertText('walked');
  $info = array(
    'body' => array(
      LANGUAGE_NONE => array(
        array(
          'value' => 'I am always walking everywhere.',
        ),
      ),
    ),
    'type' => 'page',
    'language' => LANGUAGE_NONE,
    'title' => 'third page',
  );
  $node = $this
    ->drupalCreateNode($info);
  $this
    ->drupalGet('node/' . $node->nid);
  $this
    ->assertText('walking');
  $this
    ->cronRun();
}