silverstripe-textextraction/tests/PDFTextExtractorTest.php

12 lines
392 B
PHP
Raw Normal View History

2012-08-22 18:23:06 +02:00
<?php
class PDFTextExtractorTest extends SapphireTest {
function testExtraction() {
$extractor = new PDFTextExtractor();
if(!$extractor->isAvailable()) $this->markTestSkipped('pdftotext not available');
$content = $extractor->getContent(Director::baseFolder() . '/textextraction/tests/fixtures/test1.pdf');
$this->assertContains('This is a test file with a link', $content);
}
}