CC-1695 Remove Campcaster Studio and make install easier
Fixed references to files for new directory structure for the backend stuff.
This commit is contained in:
parent
fe724b7814
commit
2ece374513
319 changed files with 75 additions and 357 deletions
276
3rd_party/php/pear/Calendar/tests/week_test.php
vendored
Normal file
276
3rd_party/php/pear/Calendar/tests/week_test.php
vendored
Normal file
|
@ -0,0 +1,276 @@
|
|||
<?php
|
||||
// $Id: week_test.php 222080 2006-10-20 14:03:58Z quipo $
|
||||
define('CALENDAR_FIRST_DAY_OF_WEEK', 1); //force firstDay = monday
|
||||
|
||||
require_once('simple_include.php');
|
||||
require_once('calendar_include.php');
|
||||
|
||||
require_once('./calendar_test.php');
|
||||
|
||||
class TestOfWeek extends TestOfCalendar {
|
||||
function TestOfWeek() {
|
||||
$this->UnitTestCase('Test of Week');
|
||||
}
|
||||
function setUp() {
|
||||
$this->cal = Calendar_Factory::create('Week', 2003, 10, 9);
|
||||
//print_r($this->cal);
|
||||
}
|
||||
function testThisYear () {
|
||||
$this->assertEqual(2003, $this->cal->thisYear());
|
||||
|
||||
$stamp = mktime(0,0,0,1,1,2003);
|
||||
$this->cal->setTimestamp($stamp);
|
||||
$this->assertEqual(2003, $this->cal->thisYear());
|
||||
|
||||
$stamp = mktime(0,0,0,12,31,2003);
|
||||
$this->cal->setTimestamp($stamp);
|
||||
$this->assertEqual(2004, $this->cal->thisYear());
|
||||
|
||||
$stamp = mktime(0,0,0,1,1,2005);
|
||||
$this->cal->setTimestamp($stamp);
|
||||
$this->assertEqual(2004, $this->cal->thisYear());
|
||||
|
||||
$stamp = mktime(0,0,0,12,31,2004);
|
||||
$this->cal->setTimestamp($stamp);
|
||||
$this->assertEqual(2004, $this->cal->thisYear());
|
||||
|
||||
$stamp = mktime(0,0,0,1,1,2005);
|
||||
$this->cal->setTimestamp($stamp);
|
||||
$this->assertEqual(2004, $this->cal->thisYear());
|
||||
|
||||
$stamp = mktime(0,0,0,12,31,2005);
|
||||
$this->cal->setTimestamp($stamp);
|
||||
$this->assertEqual(2005, $this->cal->thisYear());
|
||||
|
||||
$stamp = mktime(0,0,0,1,1,2006);
|
||||
$this->cal->setTimestamp($stamp);
|
||||
$this->assertEqual(2005, $this->cal->thisYear());
|
||||
|
||||
$stamp = mktime(0,0,0,12,31,2006);
|
||||
$this->cal->setTimestamp($stamp);
|
||||
$this->assertEqual(2006, $this->cal->thisYear());
|
||||
}
|
||||
function testPrevDay () {
|
||||
$this->assertEqual(8, $this->cal->prevDay());
|
||||
}
|
||||
function testPrevDay_Array () {
|
||||
$this->assertEqual(
|
||||
array(
|
||||
'year' => 2003,
|
||||
'month' => 10,
|
||||
'day' => 8,
|
||||
'hour' => 0,
|
||||
'minute' => 0,
|
||||
'second' => 0),
|
||||
$this->cal->prevDay('array'));
|
||||
}
|
||||
function testThisDay () {
|
||||
$this->assertEqual(9, $this->cal->thisDay());
|
||||
}
|
||||
function testNextDay () {
|
||||
$this->assertEqual(10, $this->cal->nextDay());
|
||||
}
|
||||
function testPrevHour () {
|
||||
$this->assertEqual(23, $this->cal->prevHour());
|
||||
}
|
||||
function testThisHour () {
|
||||
$this->assertEqual(0, $this->cal->thisHour());
|
||||
}
|
||||
function testNextHour () {
|
||||
$this->assertEqual(1, $this->cal->nextHour());
|
||||
}
|
||||
function testPrevMinute () {
|
||||
$this->assertEqual(59, $this->cal->prevMinute());
|
||||
}
|
||||
function testThisMinute () {
|
||||
$this->assertEqual(0, $this->cal->thisMinute());
|
||||
}
|
||||
function testNextMinute () {
|
||||
$this->assertEqual(1, $this->cal->nextMinute());
|
||||
}
|
||||
function testPrevSecond () {
|
||||
$this->assertEqual(59, $this->cal->prevSecond());
|
||||
}
|
||||
function testThisSecond () {
|
||||
$this->assertEqual(0, $this->cal->thisSecond());
|
||||
}
|
||||
function testNextSecond () {
|
||||
$this->assertEqual(1, $this->cal->nextSecond());
|
||||
}
|
||||
function testGetTimeStamp() {
|
||||
$stamp = mktime(0,0,0,10,9,2003);
|
||||
$this->assertEqual($stamp,$this->cal->getTimeStamp());
|
||||
}
|
||||
function testNewTimeStamp() {
|
||||
$stamp = mktime(0,0,0,7,28,2004);
|
||||
$this->cal->setTimestamp($stamp);
|
||||
$this->assertEqual('30 2004', date('W Y', $this->cal->prevWeek(true)));
|
||||
$this->assertEqual('31 2004', date('W Y', $this->cal->thisWeek(true)));
|
||||
$this->assertEqual('32 2004', date('W Y', $this->cal->nextWeek(true)));
|
||||
}
|
||||
function testPrevWeekInMonth() {
|
||||
$this->assertEqual(1, $this->cal->prevWeek());
|
||||
$stamp = mktime(0,0,0,2,3,2005);
|
||||
$this->cal->setTimestamp($stamp);
|
||||
$this->assertEqual(0, $this->cal->prevWeek());
|
||||
}
|
||||
function testThisWeekInMonth() {
|
||||
$this->assertEqual(2, $this->cal->thisWeek());
|
||||
$stamp = mktime(0,0,0,2,3,2005);
|
||||
$this->cal->setTimestamp($stamp);
|
||||
$this->assertEqual(1, $this->cal->thisWeek());
|
||||
$stamp = mktime(0,0,0,1,1,2005);
|
||||
$this->cal->setTimestamp($stamp);
|
||||
$this->assertEqual(1, $this->cal->thisWeek());
|
||||
$stamp = mktime(0,0,0,1,3,2005);
|
||||
$this->cal->setTimestamp($stamp);
|
||||
$this->assertEqual(2, $this->cal->thisWeek());
|
||||
}
|
||||
function testNextWeekInMonth() {
|
||||
$this->assertEqual(3, $this->cal->nextWeek());
|
||||
$stamp = mktime(0,0,0,2,3,2005);
|
||||
$this->cal->setTimestamp($stamp);
|
||||
$this->assertEqual(2, $this->cal->nextWeek());
|
||||
}
|
||||
function testPrevWeekInYear() {
|
||||
$this->assertEqual(date('W', $this->cal->prevWeek('timestamp')), $this->cal->prevWeek('n_in_year'));
|
||||
$stamp = mktime(0,0,0,1,1,2004);
|
||||
$this->cal->setTimestamp($stamp);
|
||||
$this->assertEqual(date('W', $this->cal->nextWeek('timestamp')), $this->cal->nextWeek('n_in_year'));
|
||||
}
|
||||
function testThisWeekInYear() {
|
||||
$this->assertEqual(date('W', $this->cal->thisWeek('timestamp')), $this->cal->thisWeek('n_in_year'));
|
||||
$stamp = mktime(0,0,0,1,1,2004);
|
||||
$this->cal->setTimestamp($stamp);
|
||||
$this->assertEqual(date('W', $this->cal->thisWeek('timestamp')), $this->cal->thisWeek('n_in_year'));
|
||||
}
|
||||
function testFirstWeekInYear() {
|
||||
$stamp = mktime(0,0,0,1,4,2004);
|
||||
$this->cal->setTimestamp($stamp);
|
||||
$this->assertEqual(1, $this->cal->thisWeek('n_in_year'));
|
||||
}
|
||||
function testNextWeekInYear() {
|
||||
$this->assertEqual(date('W', $this->cal->nextWeek('timestamp')), $this->cal->nextWeek('n_in_year'));
|
||||
}
|
||||
function testPrevWeekArray() {
|
||||
$testArray = array(
|
||||
'year'=>2003,
|
||||
'month'=>9,
|
||||
'day'=>29,
|
||||
'hour'=>0,
|
||||
'minute'=>0,
|
||||
'second'=>0
|
||||
);
|
||||
$this->assertEqual($testArray, $this->cal->prevWeek('array'));
|
||||
}
|
||||
function testThisWeekArray() {
|
||||
$testArray = array(
|
||||
'year'=>2003,
|
||||
'month'=>10,
|
||||
'day'=>6,
|
||||
'hour'=>0,
|
||||
'minute'=>0,
|
||||
'second'=>0
|
||||
);
|
||||
$this->assertEqual($testArray, $this->cal->thisWeek('array'));
|
||||
}
|
||||
function testNextWeekArray() {
|
||||
$testArray = array(
|
||||
'year'=>2003,
|
||||
'month'=>10,
|
||||
'day'=>13,
|
||||
'hour'=>0,
|
||||
'minute'=>0,
|
||||
'second'=>0
|
||||
);
|
||||
$this->assertEqual($testArray, $this->cal->nextWeek('array'));
|
||||
}
|
||||
function testPrevWeekObject() {
|
||||
$testWeek = Calendar_Factory::create('Week', 2003, 9, 29); //week starts on monday
|
||||
$Week = $this->cal->prevWeek('object');
|
||||
$this->assertEqual($testWeek->getTimeStamp(), $Week->getTimeStamp());
|
||||
}
|
||||
function testThisWeekObject() {
|
||||
$testWeek = Calendar_Factory::create('Week', 2003, 10, 6); //week starts on monday
|
||||
$Week = $this->cal->thisWeek('object');
|
||||
$this->assertEqual($testWeek->getTimeStamp(), $Week->getTimeStamp());
|
||||
}
|
||||
function testNextWeekObject() {
|
||||
$testWeek = Calendar_Factory::create('Week', 2003, 10, 13); //week starts on monday
|
||||
$Week = $this->cal->nextWeek('object');
|
||||
$this->assertEqual($testWeek->getTimeStamp(), $Week->getTimeStamp());
|
||||
}
|
||||
}
|
||||
|
||||
class TestOfWeekBuild extends TestOfWeek {
|
||||
function TestOfWeekBuild() {
|
||||
$this->UnitTestCase('Test of Week::build()');
|
||||
}
|
||||
function testSize() {
|
||||
$this->cal->build();
|
||||
$this->assertEqual(7, $this->cal->size());
|
||||
}
|
||||
|
||||
function testFetch() {
|
||||
$this->cal->build();
|
||||
$i=0;
|
||||
while ($Child = $this->cal->fetch()) {
|
||||
$i++;
|
||||
}
|
||||
$this->assertEqual(7, $i);
|
||||
}
|
||||
function testFetchAll() {
|
||||
$this->cal->build();
|
||||
$children = array();
|
||||
$i = 1;
|
||||
while ( $Child = $this->cal->fetch() ) {
|
||||
$children[$i]=$Child;
|
||||
$i++;
|
||||
}
|
||||
$this->assertEqual($children,$this->cal->fetchAll());
|
||||
}
|
||||
|
||||
function testSelection() {
|
||||
require_once(CALENDAR_ROOT . 'Day.php');
|
||||
$selection = array(Calendar_Factory::create('Day', 2003, 10, 7));
|
||||
$this->cal->build($selection);
|
||||
$i = 1;
|
||||
while ($Child = $this->cal->fetch()) {
|
||||
if ($i == 2) {
|
||||
break; //07-10-2003 is the 2nd day of the week (starting on monday)
|
||||
}
|
||||
$i++;
|
||||
}
|
||||
$this->assertTrue($Child->isSelected());
|
||||
}
|
||||
function testSelectionCornerCase() {
|
||||
require_once(CALENDAR_ROOT . 'Day.php');
|
||||
$selectedDays = array(
|
||||
Calendar_Factory::create('Day', 2003, 12, 29),
|
||||
Calendar_Factory::create('Day', 2003, 12, 30),
|
||||
Calendar_Factory::create('Day', 2003, 12, 31),
|
||||
Calendar_Factory::create('Day', 2004, 01, 01),
|
||||
Calendar_Factory::create('Day', 2004, 01, 02),
|
||||
Calendar_Factory::create('Day', 2004, 01, 03),
|
||||
Calendar_Factory::create('Day', 2004, 01, 04)
|
||||
);
|
||||
$this->cal = Calendar_Factory::create('Week', 2003, 12, 31, 0);
|
||||
$this->cal->build($selectedDays);
|
||||
while ($Day = $this->cal->fetch()) {
|
||||
$this->assertTrue($Day->isSelected());
|
||||
}
|
||||
$this->cal = Calendar_Factory::create('Week', 2004, 1, 1, 0);
|
||||
$this->cal->build($selectedDays);
|
||||
while ($Day = $this->cal->fetch()) {
|
||||
$this->assertTrue($Day->isSelected());
|
||||
}
|
||||
}
|
||||
}
|
||||
if (!defined('TEST_RUNNING')) {
|
||||
define('TEST_RUNNING', true);
|
||||
$test = &new TestOfWeek();
|
||||
$test->run(new HtmlReporter());
|
||||
$test = &new TestOfWeekBuild();
|
||||
$test->run(new HtmlReporter());
|
||||
}
|
||||
?>
|
Loading…
Add table
Add a link
Reference in a new issue