public function testToText()
 {
     $pdfFile = new PdfFile($this->createPdfinfoMock(), Pdftotext::create($this->createLoggerMock()), $this->createPdftohtmlMock());
     $text = $pdfFile->toText(__DIR__ . '/../files/pdf-sample.pdf');
     $this->assertNotEmpty($text);
     $this->assertEquals($this->createTextContent(), $text);
 }
Esempio n. 2
0
 public function setUp()
 {
     if (!class_exists('Poppler\\Processor\\PdfFile')) {
         $this->markTestSkipped('Poppler\\Processor\\PdfFile not available.');
     }
     try {
         $this->reader = new PdfInfoReader(new PdfFile(\Poppler\Driver\Pdfinfo::create(), \Poppler\Driver\Pdftotext::create(), \Poppler\Driver\Pdftohtml::create()));
     } catch (\Exception $e) {
         $this->markTestSkipped('PdfInfoReader not available.');
     }
 }
Esempio n. 3
0
 /**
  * @expectedException \Poppler\Exception\ExecutableNotFoundException
  */
 public function testCreateFailureThrowsAnException()
 {
     Pdftotext::create($this->createLoggerMock(), array('pdftotext.binaries' => '/path/to/nowhere'));
 }