43 lines
1.3 KiB
PHP
43 lines
1.3 KiB
PHP
<?php
|
|
|
|
require_once (dirname(__FILE__) . "/config_test.php");
|
|
require_once (dirname(__FILE__) . "/../book.php");
|
|
|
|
class StackTest extends PHPUnit_Framework_TestCase
|
|
{
|
|
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;
|
|
}
|
|
|
|
} |