*/ require_once (dirname(__FILE__) . "/config_test.php"); require_once (dirname(__FILE__) . "/../book.php"); require_once (dirname(__FILE__) . "/../JSON_renderer.php"); /* Publishers: id:2 (2 books) Macmillan and Co. London: Lewis Caroll id:3 (2 books) D. Appleton and Company Alexander Dumas id:4 (1 book) Macmillan Publishers USA: Jack London id:5 (1 book) Pierson's Magazine: H. G. Wells id:6 (8 books) Strand Magazine: Arthur Conan Doyle */ define ("TEST_THUMBNAIL", dirname(__FILE__) . "/thumbnail.jpg"); define ("COVER_WIDTH", 400); define ("COVER_HEIGHT", 600); class BookTest extends PHPUnit_Framework_TestCase { public static function setUpBeforeClass() { $book = Book::getBookById(2); if (!is_dir ($book->path)) { mkdir ($book->path, 0777, true); } $im = imagecreatetruecolor(COVER_WIDTH, COVER_HEIGHT); $text_color = imagecolorallocate($im, 255, 0, 0); imagestring($im, 1, 5, 5, 'Book cover', $text_color); imagejpeg ($im, $book->path . "/cover.jpg", 80); } public static function tearDownAfterClass() { $book = Book::getBookById(2); if (!file_exists ($book->path . "/cover.jpg")) { return; } unlink ($book->path . "/cover.jpg"); rmdir ($book->path); rmdir (dirname ($book->path)); } public function testGetBookCount () { $this->assertEquals (14, Book::getBookCount ()); } public function testGetCount () { $entryArray = Book::getCount (); $this->assertEquals (2, count($entryArray)); $entryAllBooks = $entryArray [0]; $this->assertEquals ("Alphabetical index of the 14 books", $entryAllBooks->content); $entryRecentBooks = $entryArray [1]; $this->assertEquals ("50 most recent books", $entryRecentBooks->content); } public function testGetCountRecent () { global $config; $config['cops_recentbooks_limit'] = 0; $entryArray = Book::getCount (); $this->assertEquals (1, count($entryArray)); $config['cops_recentbooks_limit'] = 2; $entryArray = Book::getCount (); $entryRecentBooks = $entryArray [1]; $this->assertEquals ("2 most recent books", $entryRecentBooks->content); $config['cops_recentbooks_limit'] = 50; } public function testGetBooksByAuthor () { // All book by Arthur Conan Doyle global $config; $config['cops_max_item_per_page'] = 5; list ($entryArray, $totalNumber) = Book::getBooksByAuthor (1, 1); $this->assertEquals (5, count($entryArray)); $this->assertEquals (8, $totalNumber); list ($entryArray, $totalNumber) = Book::getBooksByAuthor (1, 2); $this->assertEquals (3, count($entryArray)); $this->assertEquals (8, $totalNumber); $config['cops_max_item_per_page'] = -1; list ($entryArray, $totalNumber) = Book::getBooksByAuthor (1, -1); $this->assertEquals (8, count($entryArray)); $this->assertEquals (-1, $totalNumber); } public function testGetBooksBySeries () { // All book from the Sherlock Holmes series list ($entryArray, $totalNumber) = Book::getBooksBySeries (1, -1); $this->assertEquals (7, count($entryArray)); $this->assertEquals (-1, $totalNumber); } public function testGetBooksByPublisher () { // All books from Strand Magazine list ($entryArray, $totalNumber) = Book::getBooksByPublisher (6, -1); $this->assertEquals (8, count($entryArray)); $this->assertEquals (-1, $totalNumber); } public function testGetBooksByTag () { // All book with the Fiction tag list ($entryArray, $totalNumber) = Book::getBooksByTag (1, -1); $this->assertEquals (14, count($entryArray)); $this->assertEquals (-1, $totalNumber); } public function testGetBooksByLanguage () { // All english book (= all books) list ($entryArray, $totalNumber) = Book::getBooksByLanguage (1, -1); $this->assertEquals (14, count($entryArray)); $this->assertEquals (-1, $totalNumber); } public function testGetAllBooks () { // All books by first letter $entryArray = Book::getAllBooks (); $this->assertCount (9, $entryArray); } public function testGetBooksByStartingLetter () { // All books by first letter list ($entryArray, $totalNumber) = Book::getBooksByStartingLetter ("T", -1); $this->assertEquals (-1, $totalNumber); $this->assertCount (3, $entryArray); } public function testGetBookByDataId () { $book = Book::getBookByDataId (17); $this->assertEquals ("Alice's Adventures in Wonderland", $book->getTitle ()); } public function testGetAllRecentBooks () { // All recent books global $config; $config['cops_recentbooks_limit'] = 2; $entryArray = Book::getAllRecentBooks (); $this->assertCount (2, $entryArray); $config['cops_recentbooks_limit'] = 50; $entryArray = Book::getAllRecentBooks (); $this->assertCount (14, $entryArray); } public function testGetBookById () { // also check most of book's class methods $book = Book::getBookById(2); $linkArray = $book->getLinkArray (); $this->assertCount (5, $linkArray); $this->assertEquals ("The Return of Sherlock Holmes", $book->getTitle ()); $this->assertEquals ("urn:uuid:87ddbdeb-1e27-4d06-b79b-4b2a3bfc6a5f", $book->getEntryId ()); $this->assertEquals ("index.php?page=13&id=2", $book->getDetailUrl ()); $this->assertEquals ("Doyle, Arthur Conan", $book->getAuthorsName ()); $this->assertEquals ("Fiction, Mystery & Detective, Short Stories", $book->getTagsName ()); $this->assertEquals ('

The Return of Sherlock Holmes is a collection of 13 Sherlock Holmes stories, originally published in 1903-1904, by Arthur Conan Doyle.
The book was first published on March 7, 1905 by Georges Newnes, Ltd and in a Colonial edition by Longmans. 30,000 copies were made of the initial print run. The US edition by McClure, Phillips & Co. added another 28,000 to the run.
This was the first Holmes collection since 1893, when Holmes had "died" in "The Adventure of the Final Problem". Having published The Hound of the Baskervilles in 1901–1902 (although setting it before Holmes\' death) Doyle came under intense pressure to revive his famous character.

', $book->getComment (false)); $this->assertEquals ("English", $book->getLanguages ()); $this->assertEquals ("", $book->getRating ()); $book->rating = 8; // 4 filled stars and one empty $this->assertEquals ("★★★★☆", $book->getRating ()); $this->assertEquals ("Strand Magazine", $book->getPublisher()->name); } public function testGetThumbnailNotNeeded () { $book = Book::getBookById(2); $this->assertFalse ($book->getThumbnail (NULL, NULL, NULL)); // Current cover is 400*600 $this->assertFalse ($book->getThumbnail (COVER_WIDTH, NULL, NULL)); $this->assertFalse ($book->getThumbnail (COVER_WIDTH + 1, NULL, NULL)); $this->assertFalse ($book->getThumbnail (NULL, COVER_HEIGHT, NULL)); $this->assertFalse ($book->getThumbnail (NULL, COVER_HEIGHT + 1, NULL)); } /** * @dataProvider providerThumbnail */ public function testGetThumbnailByWidth ($width, $height, $expectedWidth, $expectedHeight) { $book = Book::getBookById(2); $this->assertTrue ($book->getThumbnail ($width, $height, TEST_THUMBNAIL)); $size = GetImageSize(TEST_THUMBNAIL); $this->assertEquals ($expectedWidth, $size [0]); $this->assertEquals ($expectedHeight, $size [1]); unlink (TEST_THUMBNAIL); } public function providerThumbnail () { return array ( array (164, NULL, 164, 246), array (NULL, 164, 109, 164) ); } public function testGetMostInterestingDataToSendToKindle () { // Get Alice (available as MOBI, PDF, EPUB in that order) $book = Book::getBookById(17); $data = $book->GetMostInterestingDataToSendToKindle (); $this->assertEquals ("MOBI", $data->format); array_shift ($book->datas); $data = $book->GetMostInterestingDataToSendToKindle (); $this->assertEquals ("PDF", $data->format); array_shift ($book->datas); $data = $book->GetMostInterestingDataToSendToKindle (); $this->assertEquals ("EPUB", $data->format); } public function testGetDataById () { global $config; // Get Alice MOBI=>17, PDF=>19, EPUB=>20 $book = Book::getBookById(17); $data = $book->getDataById (17); $this->assertEquals ("MOBI", $data->format); $data = $book->getDataById (20); $this->assertEquals ("EPUB", $data->format); $this->assertEquals ("Carroll, Lewis - Alice's Adventures in Wonderland.epub", $data->getUpdatedFilenameEpub ()); $this->assertEquals ("Carroll, Lewis - Alice's Adventures in Wonderland.kepub.epub", $data->getUpdatedFilenameKepub ()); $this->assertEquals (dirname(__FILE__) . "/BaseWithSomeBooks/Lewis Carroll/Alice's Adventures in Wonderland (17)/Alice's Adventures in Wonderland - Lewis Carroll.epub", $data->getLocalPath ()); $config['cops_use_url_rewriting'] = "1"; $config['cops_provide_kepub'] = "1"; $_SERVER["HTTP_USER_AGENT"] = "Kobo"; $this->assertEquals ("download/20/Carroll%2C+Lewis+-+Alice%27s+Adventures+in+Wonderland.kepub.epub", $data->getHtmlLink ()); $_SERVER["HTTP_USER_AGENT"] = "Firefox"; $this->assertEquals ("download/20/Alice%27s+Adventures+in+Wonderland+-+Lewis+Carroll.epub", $data->getHtmlLink ()); $config['cops_use_url_rewriting'] = "0"; $this->assertEquals ("fetch.php?data=20&type=epub&id=17", $data->getHtmlLink ()); } public function testGetFilePath () { $book = Book::getBookById(17); $this->assertEquals ("Lewis Carroll/Alice's Adventures in Wonderland (17)/cover.jpg", $book->getFilePath ("jpg", NULL, true)); $this->assertEquals ("Lewis Carroll/Alice's Adventures in Wonderland (17)/Alice's Adventures in Wonderland - Lewis Carroll.epub", $book->getFilePath ("epub", 20, true)); $this->assertEquals ("Lewis Carroll/Alice's Adventures in Wonderland (17)/Alice's Adventures in Wonderland - Lewis Carroll.mobi", $book->getFilePath ("mobi", 17, true)); } public function testGetDataFormat () { $book = Book::getBookById(17); // Get Alice MOBI=>17, PDF=>19, EPUB=>20 $data = $book->getDataFormat ("EPUB"); $this->assertEquals (20, $data->id); $data = $book->getDataFormat ("MOBI"); $this->assertEquals (17, $data->id); $data = $book->getDataFormat ("PDF"); $this->assertEquals (19, $data->id); $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 () { $_GET["page"] = Base::PAGE_OPENSEARCH_QUERY; $_GET["query"] = "fic"; $_GET["search"] = "1"; $array = JSONRenderer::getJson (); $this->assertCount (3, $array); $this->assertEquals ("2 tags", $array[0]["title"]); $this->assertEquals ("Fiction", $array[1]["title"]); $this->assertEquals ("Science Fiction", $array[2]["title"]); $_GET["query"] = "car"; $_GET["search"] = "1"; $array = JSONRenderer::getJson (); $this->assertCount (4, $array); $this->assertEquals ("1 book", $array[0]["title"]); $this->assertEquals ("A Study in Scarlet", $array[1]["title"]); $this->assertEquals ("1 author", $array[2]["title"]); $this->assertEquals ("Carroll, Lewis", $array[3]["title"]); $_GET["query"] = "art"; $_GET["search"] = "1"; $array = JSONRenderer::getJson (); $this->assertCount (4, $array); $this->assertEquals ("1 author", $array[0]["title"]); $this->assertEquals ("Doyle, Arthur Conan", $array[1]["title"]); $this->assertEquals ("1 series", $array[2]["title"]); $this->assertEquals ("D'Artagnan Romances", $array[3]["title"]); $_GET["query"] = "Macmillan"; $_GET["search"] = "1"; $array = JSONRenderer::getJson (); $this->assertCount (3, $array); $this->assertEquals ("2 publishers", $array[0]["title"]); $this->assertEquals ("Macmillan and Co. London", $array[1]["title"]); $this->assertEquals ("Macmillan Publishers USA", $array[2]["title"]); $_GET["query"] = NULL; $_GET["search"] = NULL; } public function testTypeaheadSearchWithIgnored () { global $config; $_GET["page"] = Base::PAGE_OPENSEARCH_QUERY; $_GET["query"] = "car"; $_GET["search"] = "1"; $config ['cops_ignored_categories'] = array ("author"); $array = JSONRenderer::getJson (); $this->assertCount (2, $array); $this->assertEquals ("1 book", $array[0]["title"]); $this->assertEquals ("A Study in Scarlet", $array[1]["title"]); $_GET["query"] = "art"; $_GET["search"] = "1"; $config ['cops_ignored_categories'] = array ("series"); $array = JSONRenderer::getJson (); $this->assertCount (2, $array); $this->assertEquals ("1 author", $array[0]["title"]); $this->assertEquals ("Doyle, Arthur Conan", $array[1]["title"]); $_GET["query"] = NULL; $_GET["search"] = NULL; } public function testTypeaheadSearchMultiDatabase () { global $config; $_GET["page"] = Base::PAGE_OPENSEARCH_QUERY; $_GET["query"] = "art"; $_GET["search"] = "1"; $_GET["multi"] = "1"; $config['calibre_directory'] = array ("Some books" => dirname(__FILE__) . "/BaseWithSomeBooks/", "One book" => dirname(__FILE__) . "/BaseWithOneBook/"); $array = JSONRenderer::getJson (); $this->assertCount (5, $array); $this->assertEquals ("Some books", $array[0]["title"]); $this->assertEquals ("1 author", $array[1]["title"]); $this->assertEquals ("1 series", $array[2]["title"]); $this->assertEquals ("One book", $array[3]["title"]); $this->assertEquals ("1 book", $array[4]["title"]); $_GET["query"] = NULL; $_GET["search"] = NULL; } public function tearDown () { Base::clearDb (); } }