class DrupalSolrOfflineUnitTestCase in Apache Solr Search 8
Same name and namespace in other branches
- 6.3 tests/apachesolr_base.test \DrupalSolrOfflineUnitTestCase
- 7 tests/apachesolr_base.test \DrupalSolrOfflineUnitTestCase
Hierarchy
- class \DrupalSolrOfflineUnitTestCase extends \DrupalUnitTestCase
Expanded class hierarchy of DrupalSolrOfflineUnitTestCase
File
- tests/
apachesolr_base.test, line 527 - Unit test class that provides tests for base functionality of the Apachesolr Module without having the need of a Solr Server
View source
class DrupalSolrOfflineUnitTestCase extends DrupalUnitTestCase {
public static function getInfo() {
return array(
'name' => 'Solr Base Framework Tests Unit Test',
'description' => 'Unit test functionality of the Solr module',
'group' => 'ApacheSolr',
);
}
protected function setUp() {
parent::setUp();
require_once dirname(dirname(realpath(__FILE__))) . '/apachesolr.module';
$this->script_content = <<<EOF
<p>GOOD_CONTENT</p>
<script type="text/javascript" >
\$(document).ready(function(){
\$('.accordion_teachers').accordion({ collapsible:true, autoHeight:false });
});
</script>
EOF;
$this->embed_content = <<<EOF
<p>GOOD_CONTENT</p>
<object width="425" height="349"><param name="movie" value="http://www.youtube.com/v/8Vmnq5dBF7Y?version=3&hl=en_US"></param><param name="allowFullScreen" value="true"></param><param name="allowscriptaccess" value="always"></param><embed src="http://www.youtube.com/v/8Vmnq5dBF7Y?version=3&hl=en_US" type="application/x-shockwave-flash" width="425" height="349" allowscriptaccess="always" allowfullscreen="true"></embed></object>
OTHER_CONTENT
EOF;
$this->iframe_content = <<<EOF
<iframe width="425" height="349" src="http://www.youtube.com/embed/8Vmnq5dBF7Y" frameborder="0" allowfullscreen></iframe>
<p><a href="#">GOOD_CONTENT</a></p><iframe></iframe>
EOF;
$this->comment_content = <<<EOF
<p><em>GOOD_CONTENT</em></p><!-- COMMENT -->
OTHER_CONTENT
EOF;
}
/**
* Test ordering of parsed filter positions.
*
* Regression test for http://drupal.org/node/891962
*/
function testContentFilters() {
$cleaned = apachesolr_clean_text($this->script_content);
$this
->assertFalse(strpos($cleaned, 'script'), 'Script tags removed');
$this
->assertFalse(strpos($cleaned, 'accordion_teachers'), 'Script tags conent removed');
$this
->assertTrue(strpos(trim($cleaned), 'GOOD_CONTENT') === 0, 'Real content retained');
$cleaned = apachesolr_clean_text($this->embed_content);
$this
->assertFalse(strpos($cleaned, 'object'), 'object tags removed');
$this
->assertFalse(strpos($cleaned, 'embed'), 'embed tags removed');
$this
->assertFalse(strpos($cleaned, '8Vmnq5dBF7Y'), 'object tags conent removed');
$this
->assertFalse(strpos($cleaned, 'shockwave-flash'), 'embed tags conent removed');
$this
->assertTrue(strpos(trim($cleaned), 'GOOD_CONTENT') === 0, 'Real content retained');
$this
->assertTrue(strpos($cleaned, 'OTHER_CONTENT') > 0, 'Other content retained');
$cleaned = apachesolr_clean_text($this->iframe_content);
$this
->assertFalse(strpos($cleaned, 'iframe'), 'iframe tags removed');
$this
->assertFalse(strpos($cleaned, '8Vmnq5dBF7Y'), 'iframe tags conent removed');
$this
->assertTrue(strpos(trim($cleaned), 'GOOD_CONTENT') === 0, 'Real content retained');
$cleaned = apachesolr_clean_text($this->comment_content);
$this
->assertFalse(strpos($cleaned, 'COMMENT'), 'html comment content removed ');
$this
->assertTrue(strpos(trim($cleaned), 'GOOD_CONTENT') === 0, 'Real content retained');
}
}
Members
Name | Modifiers | Type | Description | Overrides |
---|---|---|---|---|
DrupalSolrOfflineUnitTestCase:: |
public static | function | ||
DrupalSolrOfflineUnitTestCase:: |
protected | function | ||
DrupalSolrOfflineUnitTestCase:: |
function | Test ordering of parsed filter positions. |