silverstripe-textextraction/tests/HTMLTextExtractorTest.php

15 lines
594 B
PHP
Raw Normal View History

2012-08-22 18:23:06 +02:00
<?php
2015-11-18 05:07:31 +01:00
class HTMLTextExtractorTest extends SapphireTest
{
public function testExtraction()
{
$extractor = new HTMLTextExtractor();
2012-08-22 18:23:06 +02:00
2015-11-18 05:07:31 +01:00
$content = $extractor->getContent(Director::baseFolder() . '/textextraction/tests/fixtures/test1.html');
$this->assertContains('Test Headline', $content);
$this->assertNotContains('Test Comment', $content, 'Strips HTML comments');
$this->assertNotContains('Test Style', $content, 'Strips non-content style tags');
$this->assertNotContains('Test Script', $content, 'Strips non-content script tags');
}
}