mirror of
https://git.friendi.ca/friendica/friendica-addons.git
synced 2025-07-09 09:58:49 +00:00
Second part of refactoring; should be runnable again, yet not thoroughly tested
This commit is contained in:
parent
b8234a1cb8
commit
6186153f68
88 changed files with 2135 additions and 1186 deletions
234
dav/sabre-vobject/tests/Sabre/VObject/Property/DateTimeTest.php
Normal file
234
dav/sabre-vobject/tests/Sabre/VObject/Property/DateTimeTest.php
Normal file
|
@ -0,0 +1,234 @@
|
|||
<?php
|
||||
|
||||
namespace Sabre\VObject\Property;
|
||||
use Sabre\VObject\Component;
|
||||
|
||||
class DateTimeTest extends \PHPUnit_Framework_TestCase {
|
||||
|
||||
function testSetDateTime() {
|
||||
|
||||
$tz = new \DateTimeZone('Europe/Amsterdam');
|
||||
$dt = new \DateTime('1985-07-04 01:30:00', $tz);
|
||||
$dt->setTimeZone($tz);
|
||||
|
||||
$elem = new DateTime('DTSTART');
|
||||
$elem->setDateTime($dt);
|
||||
|
||||
$this->assertEquals('19850704T013000', $elem->value);
|
||||
$this->assertEquals('Europe/Amsterdam', (string)$elem['TZID']);
|
||||
$this->assertEquals('DATE-TIME', (string)$elem['VALUE']);
|
||||
|
||||
}
|
||||
|
||||
function testSetDateTimeLOCAL() {
|
||||
|
||||
$tz = new \DateTimeZone('Europe/Amsterdam');
|
||||
$dt = new \DateTime('1985-07-04 01:30:00', $tz);
|
||||
$dt->setTimeZone($tz);
|
||||
|
||||
$elem = new DateTime('DTSTART');
|
||||
$elem->setDateTime($dt, DateTime::LOCAL);
|
||||
|
||||
$this->assertEquals('19850704T013000', $elem->value);
|
||||
$this->assertNull($elem['TZID']);
|
||||
$this->assertEquals('DATE-TIME', (string)$elem['VALUE']);
|
||||
|
||||
}
|
||||
|
||||
function testSetDateTimeUTC() {
|
||||
|
||||
$tz = new \DateTimeZone('GMT');
|
||||
$dt = new \DateTime('1985-07-04 01:30:00', $tz);
|
||||
$dt->setTimeZone($tz);
|
||||
|
||||
$elem = new DateTime('DTSTART');
|
||||
$elem->setDateTime($dt, DateTime::UTC);
|
||||
|
||||
$this->assertEquals('19850704T013000Z', $elem->value);
|
||||
$this->assertNull($elem['TZID']);
|
||||
$this->assertEquals('DATE-TIME', (string)$elem['VALUE']);
|
||||
|
||||
}
|
||||
|
||||
function testSetDateTimeLOCALTZ() {
|
||||
|
||||
$tz = new \DateTimeZone('Europe/Amsterdam');
|
||||
$dt = new \DateTime('1985-07-04 01:30:00', $tz);
|
||||
$dt->setTimeZone($tz);
|
||||
|
||||
$elem = new DateTime('DTSTART');
|
||||
$elem->setDateTime($dt, DateTime::LOCALTZ);
|
||||
|
||||
$this->assertEquals('19850704T013000', $elem->value);
|
||||
$this->assertEquals('Europe/Amsterdam', (string)$elem['TZID']);
|
||||
$this->assertEquals('DATE-TIME', (string)$elem['VALUE']);
|
||||
|
||||
}
|
||||
|
||||
function testSetDateTimeDATE() {
|
||||
|
||||
$tz = new \DateTimeZone('Europe/Amsterdam');
|
||||
$dt = new \DateTime('1985-07-04 01:30:00', $tz);
|
||||
$dt->setTimeZone($tz);
|
||||
|
||||
$elem = new DateTime('DTSTART');
|
||||
$elem->setDateTime($dt, DateTime::DATE);
|
||||
|
||||
$this->assertEquals('19850704', $elem->value);
|
||||
$this->assertNull($elem['TZID']);
|
||||
$this->assertEquals('DATE', (string)$elem['VALUE']);
|
||||
|
||||
}
|
||||
|
||||
/**
|
||||
* @expectedException InvalidArgumentException
|
||||
*/
|
||||
function testSetDateTimeInvalid() {
|
||||
|
||||
$tz = new \DateTimeZone('Europe/Amsterdam');
|
||||
$dt = new \DateTime('1985-07-04 01:30:00', $tz);
|
||||
$dt->setTimeZone($tz);
|
||||
|
||||
$elem = new DateTime('DTSTART');
|
||||
$elem->setDateTime($dt, 7);
|
||||
|
||||
}
|
||||
|
||||
function testGetDateTimeCached() {
|
||||
|
||||
$tz = new \DateTimeZone('Europe/Amsterdam');
|
||||
$dt = new \DateTime('1985-07-04 01:30:00', $tz);
|
||||
$dt->setTimeZone($tz);
|
||||
|
||||
$elem = new DateTime('DTSTART');
|
||||
$elem->setDateTime($dt);
|
||||
|
||||
$this->assertEquals($elem->getDateTime(), $dt);
|
||||
|
||||
}
|
||||
|
||||
function testGetDateTimeDateNULL() {
|
||||
|
||||
$elem = new DateTime('DTSTART');
|
||||
$dt = $elem->getDateTime();
|
||||
|
||||
$this->assertNull($dt);
|
||||
$this->assertNull($elem->getDateType());
|
||||
|
||||
}
|
||||
|
||||
function testGetDateTimeDateDATE() {
|
||||
|
||||
$elem = new DateTime('DTSTART','19850704');
|
||||
$dt = $elem->getDateTime();
|
||||
|
||||
$this->assertInstanceOf('DateTime', $dt);
|
||||
$this->assertEquals('1985-07-04 00:00:00', $dt->format('Y-m-d H:i:s'));
|
||||
$this->assertEquals(DateTime::DATE, $elem->getDateType());
|
||||
|
||||
}
|
||||
|
||||
|
||||
function testGetDateTimeDateLOCAL() {
|
||||
|
||||
$elem = new DateTime('DTSTART','19850704T013000');
|
||||
$dt = $elem->getDateTime();
|
||||
|
||||
$this->assertInstanceOf('DateTime', $dt);
|
||||
$this->assertEquals('1985-07-04 01:30:00', $dt->format('Y-m-d H:i:s'));
|
||||
$this->assertEquals(DateTime::LOCAL, $elem->getDateType());
|
||||
|
||||
}
|
||||
|
||||
function testGetDateTimeDateUTC() {
|
||||
|
||||
$elem = new DateTime('DTSTART','19850704T013000Z');
|
||||
$dt = $elem->getDateTime();
|
||||
|
||||
$this->assertInstanceOf('DateTime', $dt);
|
||||
$this->assertEquals('1985-07-04 01:30:00', $dt->format('Y-m-d H:i:s'));
|
||||
$this->assertEquals('UTC', $dt->getTimeZone()->getName());
|
||||
$this->assertEquals(DateTime::UTC, $elem->getDateType());
|
||||
|
||||
}
|
||||
|
||||
function testGetDateTimeDateLOCALTZ() {
|
||||
|
||||
$elem = new DateTime('DTSTART','19850704T013000');
|
||||
$elem['TZID'] = 'Europe/Amsterdam';
|
||||
|
||||
$dt = $elem->getDateTime();
|
||||
|
||||
$this->assertInstanceOf('DateTime', $dt);
|
||||
$this->assertEquals('1985-07-04 01:30:00', $dt->format('Y-m-d H:i:s'));
|
||||
$this->assertEquals('Europe/Amsterdam', $dt->getTimeZone()->getName());
|
||||
$this->assertEquals(DateTime::LOCALTZ, $elem->getDateType());
|
||||
|
||||
}
|
||||
|
||||
/**
|
||||
* @expectedException InvalidArgumentException
|
||||
*/
|
||||
function testGetDateTimeDateInvalid() {
|
||||
|
||||
$elem = new DateTime('DTSTART','bla');
|
||||
$dt = $elem->getDateTime();
|
||||
|
||||
}
|
||||
|
||||
function testGetDateTimeWeirdTZ() {
|
||||
|
||||
$elem = new DateTime('DTSTART','19850704T013000');
|
||||
$elem['TZID'] = '/freeassociation.sourceforge.net/Tzfile/Europe/Amsterdam';
|
||||
|
||||
|
||||
$event = new Component('VEVENT');
|
||||
$event->add($elem);
|
||||
|
||||
$timezone = new Component('VTIMEZONE');
|
||||
$timezone->TZID = '/freeassociation.sourceforge.net/Tzfile/Europe/Amsterdam';
|
||||
$timezone->{'X-LIC-LOCATION'} = 'Europe/Amsterdam';
|
||||
|
||||
$calendar = new Component('VCALENDAR');
|
||||
$calendar->add($event);
|
||||
$calendar->add($timezone);
|
||||
|
||||
$dt = $elem->getDateTime();
|
||||
|
||||
$this->assertInstanceOf('DateTime', $dt);
|
||||
$this->assertEquals('1985-07-04 01:30:00', $dt->format('Y-m-d H:i:s'));
|
||||
$this->assertEquals('Europe/Amsterdam', $dt->getTimeZone()->getName());
|
||||
$this->assertEquals(DateTime::LOCALTZ, $elem->getDateType());
|
||||
|
||||
}
|
||||
|
||||
function testGetDateTimeBadTimeZone() {
|
||||
|
||||
$default = date_default_timezone_get();
|
||||
date_default_timezone_set('Canada/Eastern');
|
||||
|
||||
$elem = new DateTime('DTSTART','19850704T013000');
|
||||
$elem['TZID'] = 'Moon';
|
||||
|
||||
|
||||
$event = new Component('VEVENT');
|
||||
$event->add($elem);
|
||||
|
||||
$timezone = new Component('VTIMEZONE');
|
||||
$timezone->TZID = 'Moon';
|
||||
$timezone->{'X-LIC-LOCATION'} = 'Moon';
|
||||
|
||||
$calendar = new Component('VCALENDAR');
|
||||
$calendar->add($event);
|
||||
$calendar->add($timezone);
|
||||
|
||||
$dt = $elem->getDateTime();
|
||||
|
||||
$this->assertInstanceOf('DateTime', $dt);
|
||||
$this->assertEquals('1985-07-04 01:30:00', $dt->format('Y-m-d H:i:s'));
|
||||
$this->assertEquals('Canada/Eastern', $dt->getTimeZone()->getName());
|
||||
$this->assertEquals(DateTime::LOCALTZ, $elem->getDateType());
|
||||
date_default_timezone_set($default);
|
||||
|
||||
}
|
||||
}
|
Loading…
Add table
Add a link
Reference in a new issue