mirror of
https://github.com/silverstripe/silverstripe-textextraction
synced 2024-10-22 11:06:00 +02:00
18 lines
559 B
PHP
18 lines
559 B
PHP
<?php
|
|
class PDFTextExtractorTest extends SapphireTest
|
|
{
|
|
public function testExtraction()
|
|
{
|
|
$extractor = new PDFTextExtractor();
|
|
if (!$extractor->isAvailable()) {
|
|
$this->setExpectedException(
|
|
'FileTextExtractor_Exception',
|
|
'getRawOutput called on unavailable extractor'
|
|
);
|
|
}
|
|
|
|
$content = $extractor->getContent(Director::baseFolder() . '/textextraction/tests/fixtures/test1.pdf');
|
|
$this->assertContains('This is a test file with a link', $content);
|
|
}
|
|
}
|