summaryrefslogtreecommitdiff
path: root/includes/composer/vendor/om/icalparser/tests/event.description.phpt
diff options
context:
space:
mode:
authorRaindropsSys <contact@minteck.org>2023-03-21 16:21:21 +0100
committerRaindropsSys <contact@minteck.org>2023-03-21 16:21:21 +0100
commit475c5731bf3362b6ac8d2dc5d5b43e4b4a6117bd (patch)
tree2cff46debf9c1e13892e7babff9deb6874ecb4b2 /includes/composer/vendor/om/icalparser/tests/event.description.phpt
parent7ccc2de87f9e25c715dc09b9aba4eb5c66f80424 (diff)
downloadpluralconnect-475c5731bf3362b6ac8d2dc5d5b43e4b4a6117bd.tar.gz
pluralconnect-475c5731bf3362b6ac8d2dc5d5b43e4b4a6117bd.tar.bz2
pluralconnect-475c5731bf3362b6ac8d2dc5d5b43e4b4a6117bd.zip
Updated 26 files and added 1074 files (automated)
Diffstat (limited to 'includes/composer/vendor/om/icalparser/tests/event.description.phpt')
-rw-r--r--includes/composer/vendor/om/icalparser/tests/event.description.phpt34
1 files changed, 34 insertions, 0 deletions
diff --git a/includes/composer/vendor/om/icalparser/tests/event.description.phpt b/includes/composer/vendor/om/icalparser/tests/event.description.phpt
new file mode 100644
index 0000000..8426e32
--- /dev/null
+++ b/includes/composer/vendor/om/icalparser/tests/event.description.phpt
@@ -0,0 +1,34 @@
+<?php
+/**
+ * Copyright (c) 2004-2022 Roman Ožana (https://ozana.cz)
+ *
+ * @license BSD-3-Clause
+ * @author Roman Ožana <roman@ozana.cz>
+ */
+
+use om\IcalParser;
+use Tester\Assert;
+use function tests\test;
+
+require_once __DIR__ . '/bootstrap.php';
+date_default_timezone_set('Europe/Prague');
+
+test('Blank description test', function () {
+ $cal = new IcalParser();
+ $results = $cal->parseFile(__DIR__ . '/cal/blank_description.ics');
+ $first = $cal->getEvents()->getIterator()->current();
+
+ Assert::hasKey('DESCRIPTION', $first);
+ Assert::same('', $first['DESCRIPTION']);
+});
+
+test('Multiple lines description', function () {
+ $cal = new IcalParser();
+ $cal->parseFile(__DIR__ . '/cal/multiline_description.ics');
+ $events = $cal->getEvents()->sorted();
+ $first = $events->getIterator()->current();
+
+ Assert::same('30.6.2012 06:00:00', $first['DTSTART']->format('j.n.Y H:i:s'));
+ Assert::same("Here is a description that spans multiple lines!\n\nThis should be on a new line as well because the description contains newline characters.", $first['DESCRIPTION']);
+});
+