2017-09-12 13:53:34 +02:00
|
|
|
<?php
|
|
|
|
|
|
|
|
/**
|
|
|
|
* kolab_date_recurrence tests
|
|
|
|
*
|
|
|
|
* @author Aleksander Machniak <machniak@kolabsys.com>
|
|
|
|
*
|
|
|
|
* Copyright (C) 2017, Kolab Systems AG <contact@kolabsys.com>
|
|
|
|
*
|
|
|
|
* This program is free software: you can redistribute it and/or modify
|
|
|
|
* it under the terms of the GNU Affero General Public License as
|
|
|
|
* published by the Free Software Foundation, either version 3 of the
|
|
|
|
* License, or (at your option) any later version.
|
|
|
|
*
|
|
|
|
* This program is distributed in the hope that it will be useful,
|
|
|
|
* but WITHOUT ANY WARRANTY; without even the implied warranty of
|
|
|
|
* MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
|
|
|
|
* GNU Affero General Public License for more details.
|
|
|
|
*
|
|
|
|
* You should have received a copy of the GNU Affero General Public License
|
|
|
|
* along with this program. If not, see <http://www.gnu.org/licenses/>.
|
|
|
|
*/
|
|
|
|
|
2022-11-29 15:54:43 +01:00
|
|
|
class KolabDateRecurrenceTest extends PHPUnit\Framework\TestCase
|
2017-09-12 13:53:34 +02:00
|
|
|
{
|
2024-01-24 11:24:41 +01:00
|
|
|
public function setUp(): void
|
2017-09-12 13:53:34 +02:00
|
|
|
{
|
2024-01-24 10:59:25 +01:00
|
|
|
$rcube = rcube::get_instance();
|
2017-09-12 13:53:34 +02:00
|
|
|
$rcube->plugins->load_plugin('libkolab', true, true);
|
2022-12-02 15:57:59 +01:00
|
|
|
$rcube->plugins->load_plugin('libcalendaring', true, true);
|
2017-09-12 13:53:34 +02:00
|
|
|
}
|
|
|
|
|
|
|
|
/**
|
2022-12-02 15:57:59 +01:00
|
|
|
* Data for test_end()
|
2017-09-12 13:53:34 +02:00
|
|
|
*/
|
2024-01-24 11:24:41 +01:00
|
|
|
public function data_end()
|
2017-09-12 13:53:34 +02:00
|
|
|
{
|
2022-12-02 15:57:59 +01:00
|
|
|
return [
|
|
|
|
// non-recurring
|
|
|
|
[
|
|
|
|
[
|
|
|
|
'recurrence' => [],
|
2024-01-24 11:24:41 +01:00
|
|
|
'start' => new DateTime('2017-08-31 11:00:00'),
|
2022-12-02 15:57:59 +01:00
|
|
|
],
|
|
|
|
'2117-08-31 11:00:00', // expected result
|
|
|
|
],
|
|
|
|
// daily
|
|
|
|
[
|
|
|
|
[
|
|
|
|
'recurrence' => ['FREQ' => 'DAILY', 'INTERVAL' => '1', 'COUNT' => 2],
|
2024-01-24 11:24:41 +01:00
|
|
|
'start' => new DateTime('2017-08-31 11:00:00'),
|
2022-12-02 15:57:59 +01:00
|
|
|
],
|
|
|
|
'2017-09-01 11:00:00',
|
|
|
|
],
|
|
|
|
// weekly
|
|
|
|
[
|
|
|
|
[
|
|
|
|
'recurrence' => ['FREQ' => 'WEEKLY', 'INTERVAL' => '1', 'COUNT' => 3],
|
|
|
|
'start' => new DateTime('2017-08-31 11:00:00'), // Thursday
|
|
|
|
],
|
|
|
|
'2017-09-14 11:00:00',
|
|
|
|
],
|
|
|
|
// UNTIL
|
|
|
|
[
|
|
|
|
[
|
|
|
|
'recurrence' => ['FREQ' => 'WEEKLY', 'INTERVAL' => '1', 'COUNT' => 3, 'UNTIL' => new DateTime('2017-09-07 11:00:00')],
|
|
|
|
'start' => new DateTime('2017-08-31 11:00:00'), // Thursday
|
|
|
|
],
|
|
|
|
'2017-09-07 11:00:00',
|
|
|
|
],
|
|
|
|
// Infinite recurrence, no count, no until
|
|
|
|
[
|
|
|
|
[
|
|
|
|
'recurrence' => ['FREQ' => 'WEEKLY', 'INTERVAL' => '1'],
|
|
|
|
'start' => new DateTime('2017-08-31 11:00:00'), // Thursday
|
|
|
|
],
|
|
|
|
'2117-08-31 11:00:00',
|
|
|
|
],
|
2017-09-12 13:53:34 +02:00
|
|
|
|
2022-12-02 15:57:59 +01:00
|
|
|
// TODO: Test an event with EXDATE/RDATE
|
|
|
|
];
|
2017-09-12 13:53:34 +02:00
|
|
|
}
|
|
|
|
|
|
|
|
/**
|
|
|
|
* Data for test_first_occurrence()
|
|
|
|
*/
|
2024-01-24 11:24:41 +01:00
|
|
|
public function data_first_occurrence()
|
2017-09-12 13:53:34 +02:00
|
|
|
{
|
|
|
|
// TODO: BYYEARDAY, BYWEEKNO, BYSETPOS, WKST
|
|
|
|
|
2024-01-24 11:24:41 +01:00
|
|
|
return [
|
2017-09-12 13:53:34 +02:00
|
|
|
// non-recurring
|
2024-01-24 11:24:41 +01:00
|
|
|
[
|
|
|
|
[], // recurrence data
|
2017-09-12 13:53:34 +02:00
|
|
|
'2017-08-31 11:00:00', // start date
|
|
|
|
'2017-08-31 11:00:00', // expected result
|
2024-01-24 11:24:41 +01:00
|
|
|
],
|
2017-09-12 13:53:34 +02:00
|
|
|
// daily
|
2024-01-24 11:24:41 +01:00
|
|
|
[
|
|
|
|
['FREQ' => 'DAILY', 'INTERVAL' => '1'], // recurrence data
|
2017-09-12 13:53:34 +02:00
|
|
|
'2017-08-31 11:00:00', // start date
|
|
|
|
'2017-08-31 11:00:00', // expected result
|
2024-01-24 11:24:41 +01:00
|
|
|
],
|
2017-09-12 13:53:34 +02:00
|
|
|
// TODO: this one is not supported by the Calendar UI
|
2024-01-24 11:24:41 +01:00
|
|
|
[
|
|
|
|
['FREQ' => 'DAILY', 'INTERVAL' => '1', 'BYMONTH' => 1],
|
2017-09-12 13:53:34 +02:00
|
|
|
'2017-08-31 11:00:00',
|
|
|
|
'2018-01-01 11:00:00',
|
2024-01-24 11:24:41 +01:00
|
|
|
],
|
2017-09-12 13:53:34 +02:00
|
|
|
// weekly
|
2024-01-24 11:24:41 +01:00
|
|
|
[
|
|
|
|
['FREQ' => 'WEEKLY', 'INTERVAL' => '1'],
|
2017-09-12 13:53:34 +02:00
|
|
|
'2017-08-31 11:00:00', // Thursday
|
|
|
|
'2017-08-31 11:00:00',
|
2024-01-24 11:24:41 +01:00
|
|
|
],
|
|
|
|
[
|
|
|
|
['FREQ' => 'WEEKLY', 'INTERVAL' => '1', 'BYDAY' => 'WE'],
|
2017-09-12 13:53:34 +02:00
|
|
|
'2017-08-31 11:00:00', // Thursday
|
|
|
|
'2017-09-06 11:00:00',
|
2024-01-24 11:24:41 +01:00
|
|
|
],
|
|
|
|
[
|
|
|
|
['FREQ' => 'WEEKLY', 'INTERVAL' => '1', 'BYDAY' => 'TH'],
|
2017-09-12 13:53:34 +02:00
|
|
|
'2017-08-31 11:00:00', // Thursday
|
|
|
|
'2017-08-31 11:00:00',
|
2024-01-24 11:24:41 +01:00
|
|
|
],
|
|
|
|
[
|
|
|
|
['FREQ' => 'WEEKLY', 'INTERVAL' => '1', 'BYDAY' => 'FR'],
|
2017-09-12 13:53:34 +02:00
|
|
|
'2017-08-31 11:00:00', // Thursday
|
|
|
|
'2017-09-01 11:00:00',
|
2024-01-24 11:24:41 +01:00
|
|
|
],
|
|
|
|
[
|
|
|
|
['FREQ' => 'WEEKLY', 'INTERVAL' => '2'],
|
2017-09-12 13:53:34 +02:00
|
|
|
'2017-08-31 11:00:00', // Thursday
|
|
|
|
'2017-08-31 11:00:00',
|
2024-01-24 11:24:41 +01:00
|
|
|
],
|
|
|
|
[
|
|
|
|
['FREQ' => 'WEEKLY', 'INTERVAL' => '3', 'BYDAY' => 'WE'],
|
2017-09-12 13:53:34 +02:00
|
|
|
'2017-08-31 11:00:00', // Thursday
|
|
|
|
'2017-09-20 11:00:00',
|
2024-01-24 11:24:41 +01:00
|
|
|
],
|
|
|
|
[
|
|
|
|
['FREQ' => 'WEEKLY', 'INTERVAL' => '1', 'BYDAY' => 'WE', 'COUNT' => 1],
|
2017-09-12 13:53:34 +02:00
|
|
|
'2017-08-31 11:00:00', // Thursday
|
|
|
|
'2017-09-06 11:00:00',
|
2024-01-24 11:24:41 +01:00
|
|
|
],
|
|
|
|
[
|
|
|
|
['FREQ' => 'WEEKLY', 'INTERVAL' => '1', 'BYDAY' => 'WE', 'UNTIL' => '2017-09-01'],
|
2017-09-12 13:53:34 +02:00
|
|
|
'2017-08-31 11:00:00', // Thursday
|
|
|
|
'',
|
2024-01-24 11:24:41 +01:00
|
|
|
],
|
2017-09-12 13:53:34 +02:00
|
|
|
// monthly
|
2024-01-24 11:24:41 +01:00
|
|
|
[
|
|
|
|
['FREQ' => 'MONTHLY', 'INTERVAL' => '1'],
|
2017-09-12 13:53:34 +02:00
|
|
|
'2017-09-08 11:00:00',
|
|
|
|
'2017-09-08 11:00:00',
|
2024-01-24 11:24:41 +01:00
|
|
|
],
|
|
|
|
[
|
|
|
|
['FREQ' => 'MONTHLY', 'INTERVAL' => '1', 'BYMONTHDAY' => '8,9'],
|
2017-09-12 13:53:34 +02:00
|
|
|
'2017-08-31 11:00:00',
|
|
|
|
'2017-09-08 11:00:00',
|
2024-01-24 11:24:41 +01:00
|
|
|
],
|
|
|
|
[
|
|
|
|
['FREQ' => 'MONTHLY', 'INTERVAL' => '1', 'BYMONTHDAY' => '8,9'],
|
2017-09-12 13:53:34 +02:00
|
|
|
'2017-09-08 11:00:00',
|
|
|
|
'2017-09-08 11:00:00',
|
2024-01-24 11:24:41 +01:00
|
|
|
],
|
|
|
|
[
|
|
|
|
['FREQ' => 'MONTHLY', 'INTERVAL' => '1', 'BYDAY' => '1WE'],
|
2017-09-12 13:53:34 +02:00
|
|
|
'2017-08-16 11:00:00',
|
|
|
|
'2017-09-06 11:00:00',
|
2024-01-24 11:24:41 +01:00
|
|
|
],
|
|
|
|
[
|
|
|
|
['FREQ' => 'MONTHLY', 'INTERVAL' => '1', 'BYDAY' => '-1WE'],
|
2017-09-12 13:53:34 +02:00
|
|
|
'2017-08-16 11:00:00',
|
|
|
|
'2017-08-30 11:00:00',
|
2024-01-24 11:24:41 +01:00
|
|
|
],
|
|
|
|
[
|
|
|
|
['FREQ' => 'MONTHLY', 'INTERVAL' => '2'],
|
2017-09-12 13:53:34 +02:00
|
|
|
'2017-09-08 11:00:00',
|
|
|
|
'2017-09-08 11:00:00',
|
2024-01-24 11:24:41 +01:00
|
|
|
],
|
|
|
|
[
|
|
|
|
['FREQ' => 'MONTHLY', 'INTERVAL' => '2', 'BYMONTHDAY' => '8'],
|
2017-09-12 13:53:34 +02:00
|
|
|
'2017-08-31 11:00:00',
|
|
|
|
'2017-09-08 11:00:00', // ??????
|
2024-01-24 11:24:41 +01:00
|
|
|
],
|
2017-09-12 13:53:34 +02:00
|
|
|
// yearly
|
2024-01-24 11:24:41 +01:00
|
|
|
[
|
|
|
|
['FREQ' => 'YEARLY', 'INTERVAL' => '1'],
|
2018-03-16 15:16:04 +00:00
|
|
|
'2017-08-16 12:00:00',
|
|
|
|
'2017-08-16 12:00:00',
|
2024-01-24 11:24:41 +01:00
|
|
|
],
|
|
|
|
[
|
|
|
|
['FREQ' => 'YEARLY', 'INTERVAL' => '1', 'BYMONTH' => '8'],
|
2018-03-16 15:16:04 +00:00
|
|
|
'2017-08-16 12:00:00',
|
|
|
|
'2017-08-16 12:00:00',
|
2024-01-24 11:24:41 +01:00
|
|
|
],
|
|
|
|
[
|
|
|
|
['FREQ' => 'YEARLY', 'INTERVAL' => '1', 'BYDAY' => '-1MO'],
|
2017-09-12 13:53:34 +02:00
|
|
|
'2017-08-16 11:00:00',
|
|
|
|
'2017-12-25 11:00:00',
|
2024-01-24 11:24:41 +01:00
|
|
|
],
|
|
|
|
[
|
|
|
|
['FREQ' => 'YEARLY', 'INTERVAL' => '1', 'BYMONTH' => '8', 'BYDAY' => '-1MO'],
|
2017-09-12 13:53:34 +02:00
|
|
|
'2017-08-16 11:00:00',
|
|
|
|
'2017-08-28 11:00:00',
|
2024-01-24 11:24:41 +01:00
|
|
|
],
|
|
|
|
[
|
|
|
|
['FREQ' => 'YEARLY', 'INTERVAL' => '1', 'BYMONTH' => '1', 'BYDAY' => '1MO'],
|
2017-09-12 13:53:34 +02:00
|
|
|
'2017-08-16 11:00:00',
|
|
|
|
'2018-01-01 11:00:00',
|
2024-01-24 11:24:41 +01:00
|
|
|
],
|
|
|
|
[
|
|
|
|
['FREQ' => 'YEARLY', 'INTERVAL' => '1', 'BYMONTH' => '1,9', 'BYDAY' => '1MO'],
|
2017-09-12 13:53:34 +02:00
|
|
|
'2017-08-16 11:00:00',
|
|
|
|
'2017-09-04 11:00:00',
|
2024-01-24 11:24:41 +01:00
|
|
|
],
|
|
|
|
[
|
|
|
|
['FREQ' => 'YEARLY', 'INTERVAL' => '2'],
|
2017-09-12 13:53:34 +02:00
|
|
|
'2017-08-16 11:00:00',
|
|
|
|
'2017-08-16 11:00:00',
|
2024-01-24 11:24:41 +01:00
|
|
|
],
|
|
|
|
[
|
|
|
|
['FREQ' => 'YEARLY', 'INTERVAL' => '2', 'BYMONTH' => '8'],
|
2017-09-12 13:53:34 +02:00
|
|
|
'2017-08-16 11:00:00',
|
|
|
|
'2017-08-16 11:00:00',
|
2024-01-24 11:24:41 +01:00
|
|
|
],
|
|
|
|
[
|
|
|
|
['FREQ' => 'YEARLY', 'INTERVAL' => '2', 'BYDAY' => '-1MO'],
|
2017-09-12 13:53:34 +02:00
|
|
|
'2017-08-16 11:00:00',
|
|
|
|
'2017-12-25 11:00:00',
|
2024-01-24 11:24:41 +01:00
|
|
|
],
|
2017-09-12 13:53:34 +02:00
|
|
|
// on dates (FIXME: do we really expect the first occurrence to be on the start date?)
|
2024-01-24 11:24:41 +01:00
|
|
|
[
|
|
|
|
['RDATE' => [new DateTime('2017-08-10 11:00:00 Europe/Warsaw')]],
|
2017-09-12 13:53:34 +02:00
|
|
|
'2017-08-01 11:00:00',
|
|
|
|
'2017-08-01 11:00:00',
|
2024-01-24 11:24:41 +01:00
|
|
|
],
|
|
|
|
];
|
2017-09-12 13:53:34 +02:00
|
|
|
}
|
|
|
|
|
2022-12-02 15:57:59 +01:00
|
|
|
/**
|
|
|
|
* kolab_date_recurrence::end()
|
|
|
|
*
|
|
|
|
* @dataProvider data_end
|
|
|
|
*/
|
2024-01-24 11:24:41 +01:00
|
|
|
public function test_end($event, $expected)
|
2022-12-02 15:57:59 +01:00
|
|
|
{
|
|
|
|
if (!kolab_format::supports(3)) {
|
|
|
|
$this->markTestSkipped('No Kolab support');
|
|
|
|
}
|
|
|
|
|
|
|
|
$object = kolab_format::factory('event', 3.0);
|
|
|
|
$object->set($event);
|
|
|
|
|
|
|
|
$recurrence = new kolab_date_recurrence($object);
|
|
|
|
$end = $recurrence->end();
|
|
|
|
|
|
|
|
$this->assertSame($expected, $end ? $end->format('Y-m-d H:i:s') : $end);
|
|
|
|
}
|
|
|
|
|
|
|
|
/**
|
|
|
|
* kolab_date_recurrence::first_occurrence()
|
|
|
|
*
|
|
|
|
* @dataProvider data_first_occurrence
|
|
|
|
*/
|
2024-01-24 11:24:41 +01:00
|
|
|
public function test_first_occurrence($recurrence_data, $start, $expected)
|
2022-12-02 15:57:59 +01:00
|
|
|
{
|
|
|
|
if (!kolab_format::supports(3)) {
|
|
|
|
$this->markTestSkipped('No Kolab support');
|
|
|
|
}
|
|
|
|
|
|
|
|
$start = new DateTime($start);
|
|
|
|
if (!empty($recurrence_data['UNTIL'])) {
|
|
|
|
$recurrence_data['UNTIL'] = new DateTime($recurrence_data['UNTIL']);
|
|
|
|
}
|
|
|
|
|
2024-01-24 11:24:41 +01:00
|
|
|
$event = ['start' => $start, 'recurrence' => $recurrence_data];
|
2022-12-02 15:57:59 +01:00
|
|
|
$object = kolab_format::factory('event', 3.0);
|
|
|
|
$object->set($event);
|
|
|
|
|
|
|
|
$recurrence = new kolab_date_recurrence($object);
|
|
|
|
$first = $recurrence->first_occurrence();
|
|
|
|
|
|
|
|
$this->assertEquals($expected, $first ? $first->format('Y-m-d H:i:s') : '');
|
|
|
|
}
|
|
|
|
|
2018-03-16 15:16:04 +00:00
|
|
|
/**
|
|
|
|
* kolab_date_recurrence::first_occurrence() for all-day events
|
|
|
|
*
|
|
|
|
* @dataProvider data_first_occurrence
|
|
|
|
*/
|
2024-01-24 11:24:41 +01:00
|
|
|
public function test_first_occurrence_allday($recurrence_data, $start, $expected)
|
2018-03-16 15:16:04 +00:00
|
|
|
{
|
2019-09-29 09:35:30 +02:00
|
|
|
if (!kolab_format::supports(3)) {
|
|
|
|
$this->markTestSkipped('No Kolab support');
|
|
|
|
}
|
|
|
|
|
2018-03-16 15:16:04 +00:00
|
|
|
$start = new DateTime($start);
|
|
|
|
if (!empty($recurrence_data['UNTIL'])) {
|
|
|
|
$recurrence_data['UNTIL'] = new DateTime($recurrence_data['UNTIL']);
|
|
|
|
}
|
|
|
|
|
2024-01-24 11:24:41 +01:00
|
|
|
$event = ['start' => $start, 'recurrence' => $recurrence_data, 'allday' => true];
|
2018-03-16 15:16:04 +00:00
|
|
|
$object = kolab_format::factory('event', 3.0);
|
|
|
|
$object->set($event);
|
|
|
|
|
|
|
|
$recurrence = new kolab_date_recurrence($object);
|
|
|
|
$first = $recurrence->first_occurrence();
|
|
|
|
|
|
|
|
$this->assertEquals($expected, $first ? $first->format('Y-m-d H:i:s') : '');
|
|
|
|
}
|
2017-09-12 13:53:34 +02:00
|
|
|
|
2019-03-15 11:16:51 +00:00
|
|
|
/**
|
|
|
|
* kolab_date_recurrence::next_instance()
|
|
|
|
*/
|
2024-01-24 11:24:41 +01:00
|
|
|
public function test_next_instance()
|
2019-03-15 11:16:51 +00:00
|
|
|
{
|
2019-09-29 09:35:30 +02:00
|
|
|
if (!kolab_format::supports(3)) {
|
|
|
|
$this->markTestSkipped('No Kolab support');
|
|
|
|
}
|
|
|
|
|
2019-03-15 11:16:51 +00:00
|
|
|
date_default_timezone_set('America/New_York');
|
|
|
|
|
|
|
|
$start = new DateTime('2017-08-31 11:00:00', new DateTimeZone('Europe/Berlin'));
|
2022-11-29 15:54:43 +01:00
|
|
|
$event = [
|
2019-03-15 11:16:51 +00:00
|
|
|
'start' => $start,
|
2022-11-29 15:54:43 +01:00
|
|
|
'recurrence' => ['FREQ' => 'WEEKLY', 'INTERVAL' => '1'],
|
2019-03-15 11:16:51 +00:00
|
|
|
'allday' => true,
|
2022-11-29 15:54:43 +01:00
|
|
|
];
|
2019-03-15 11:16:51 +00:00
|
|
|
|
|
|
|
$object = kolab_format::factory('event', 3.0);
|
|
|
|
$object->set($event);
|
|
|
|
|
|
|
|
$recurrence = new kolab_date_recurrence($object);
|
|
|
|
$next = $recurrence->next_instance();
|
|
|
|
|
|
|
|
$this->assertEquals($start->format('2017-09-07 H:i:s'), $next['start']->format('Y-m-d H:i:s'), 'Same time');
|
|
|
|
$this->assertEquals($start->getTimezone()->getName(), $next['start']->getTimezone()->getName(), 'Same timezone');
|
2022-11-29 15:54:43 +01:00
|
|
|
$this->assertSame(true, $next['start']->_dateonly, '_dateonly flag');
|
2019-03-15 11:16:51 +00:00
|
|
|
}
|
|
|
|
}
|