Add a test for unknow mimetype and use finfo_file in this case. Inspired by At_Libitum. re #72

This commit is contained in:
Sébastien Lucas 2013-12-31 11:12:34 +01:00
parent 6717d92a97
commit b4d3fe6b22
2 changed files with 35 additions and 2 deletions

View file

@ -291,6 +291,29 @@ class BookTest extends PHPUnit_Framework_TestCase
$this->assertNull ($book->getDataFormat ("FB2"));
}
public function testGetMimeType () {
$book = Book::getBookById(17);
// Get Alice MOBI=>17, PDF=>19, EPUB=>20
$data = $book->getDataFormat ("EPUB");
$this->assertEquals ("application/epub+zip", $data->getMimeType ());
$data = $book->getDataFormat ("MOBI");
$this->assertEquals ("application/x-mobipocket-ebook", $data->getMimeType ());
$data = $book->getDataFormat ("PDF");
$this->assertEquals ("application/pdf", $data->getMimeType ());
// Alter a data to make a test for finfo_file if enabled
$data->extension = "ico";
$data->format = "ICO";
$data->name = "favicon";
$data->book->path = realpath (dirname(__FILE__) . "/../");
if (function_exists('finfo_open') === true) {
$this->assertEquals ("image/x-icon", $data->getMimeType ());
} else {
$this->assertEquals ("application/octet-stream", $data->getMimeType ());
}
}
public function testTypeaheadSearch ()
{