Page Menu
Home
Phabricator
Search
Configure Global Search
Log In
Files
F15413973
D16615.id39988.diff
No One
Temporary
Actions
View File
Edit File
Delete File
View Transforms
Subscribe
Mute Notifications
Award Token
Flag For Later
Size
2 KB
Referenced Files
None
Subscribers
None
D16615.id39988.diff
View Options
diff --git a/src/parser/calendar/data/PhutilCalendarRecurrenceRule.php b/src/parser/calendar/data/PhutilCalendarRecurrenceRule.php
--- a/src/parser/calendar/data/PhutilCalendarRecurrenceRule.php
+++ b/src/parser/calendar/data/PhutilCalendarRecurrenceRule.php
@@ -850,7 +850,7 @@
$months_in_year = 12;
if ($this->cursorMonth > $months_in_year) {
- $this->cursorMonth - $months_in_year;
+ $this->cursorMonth -= $months_in_year;
return array();
}
diff --git a/src/parser/calendar/data/__tests__/PhutilCalendarRecurrenceRuleTestCase.php b/src/parser/calendar/data/__tests__/PhutilCalendarRecurrenceRuleTestCase.php
--- a/src/parser/calendar/data/__tests__/PhutilCalendarRecurrenceRuleTestCase.php
+++ b/src/parser/calendar/data/__tests__/PhutilCalendarRecurrenceRuleTestCase.php
@@ -419,6 +419,20 @@
'19970902T063010Z',
);
+ // TODO: This does not pass yet because BYSETPOS is not implemented
+ // properly for YEARLY rules.
+
+ // $tests[] = array(
+ // 'BYMONTHDAY' => array(15),
+ // 'BYHOUR' => array(6, 18),
+ // 'BYSETPOS' => array(3, -3),
+ // );
+ // $expect[] = array(
+ // '19971115T180000Z',
+ // '19980215T060000Z',
+ // '19981115T180000Z',
+ // );
+
$this->assertRules(
array(
'FREQ' => 'YEARLY',
@@ -429,6 +443,45 @@
$expect);
}
+ public function testMonthlyRecurrenceRules() {
+ $tests = array();
+ $expect = array();
+
+ $tests[] = array();
+ $expect[] = array(
+ '19970902',
+ '19971002',
+ '19971102',
+ );
+
+ $tests[] = array(
+ 'INTERVAL' => 2,
+ );
+ $expect[] = array(
+ '19970902',
+ '19971102',
+ '19980102',
+ );
+
+ $tests[] = array(
+ 'INTERVAL' => 18,
+ );
+ $expect[] = array(
+ '19970902',
+ '19990302',
+ '20000902',
+ );
+
+ $this->assertRules(
+ array(
+ 'FREQ' => 'MONTHLY',
+ 'COUNT' => 3,
+ 'DTSTART' => '19970902',
+ ),
+ $tests,
+ $expect);
+ }
+
private function assertRules(array $defaults, array $tests, array $expect) {
foreach ($tests as $key => $test) {
$options = $test + $defaults;
File Metadata
Details
Attached
Mime Type
text/plain
Expires
Thu, Mar 20, 10:16 PM (1 h, 5 m)
Storage Engine
blob
Storage Format
Encrypted (AES-256-CBC)
Storage Handle
7225986
Default Alt Text
D16615.id39988.diff (2 KB)
Attached To
Mode
D16615: Fix an RRULE bug with MONTHLY INTERVALs larger than 12
Attached
Detach File
Event Timeline
Log In to Comment