public function PorterStemmerFunctionalTest::setUp in Porter-Stemmer 6.2
Same name and namespace in other branches
- 7 porterstemmer.test \PorterStemmerFunctionalTest::setUp()
Generates a random database prefix, runs the install scripts on the prefixed database and enable the specified modules. After installation many caches are flushed and the internal browser is setup so that the page requests will run on the new prefix. A temporary files directory is created with the same name as the database prefix.
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
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' => 'I walk through the streets, looking around for trouble',
'type' => 'page',
'title' => 'first page',
);
$node = $this
->drupalCreateNode($info);
$info = array(
'body' => 'I walked home from work today.',
'type' => 'page',
'title' => 'second page',
);
$node = $this
->drupalCreateNode($info);
$info = array(
'body' => 'I am always walking everywhere.',
'type' => 'page',
'title' => 'third page',
);
$node = $this
->drupalCreateNode($info);
// Run cron to ensure this content is indexed
// Note: Could use $this->cronRun(), but not available in 6.x SimpleTest,
// so using the body of cronRun() from Drupal 7 instead
$this
->drupalGet($GLOBALS['base_url'] . '/cron.php', array(
'external' => TRUE,
'query' => array(
'cron_key' => variable_get('cron_key', 'drupal'),
),
));
}