From 475c5731bf3362b6ac8d2dc5d5b43e4b4a6117bd Mon Sep 17 00:00:00 2001 From: RaindropsSys Date: Tue, 21 Mar 2023 16:21:21 +0100 Subject: Updated 26 files and added 1074 files (automated) --- .../om/icalparser/tests/event.attachements.phpt | 26 ++++++++++++++++++++++ 1 file changed, 26 insertions(+) create mode 100644 includes/composer/vendor/om/icalparser/tests/event.attachements.phpt (limited to 'includes/composer/vendor/om/icalparser/tests/event.attachements.phpt') diff --git a/includes/composer/vendor/om/icalparser/tests/event.attachements.phpt b/includes/composer/vendor/om/icalparser/tests/event.attachements.phpt new file mode 100644 index 0000000..1218fb7 --- /dev/null +++ b/includes/composer/vendor/om/icalparser/tests/event.attachements.phpt @@ -0,0 +1,26 @@ + + */ + +use om\IcalParser; +use Tester\Assert; +use Tester\Environment; +use function tests\test; + +require_once __DIR__ . '/bootstrap.php'; +date_default_timezone_set('Europe/Prague'); + +test('Event with multiple ATTACHMENTS', function () { + $cal = new IcalParser(); + $cal->parseFile(__DIR__ . '/cal/multiple_attachments.ics'); + $first = $cal->getEvents()->getIterator()->current(); + + // Backwards compatibility, there is only ever one key displayed + Assert::hasKey('ATTACH', $first); + Assert::type('string', $first['ATTACH']); + + // The new key 'ATTACHMENTS' is an array with 1 or more attachments + Assert::type('array', $first['ATTACHMENTS']); + Assert::count(2, $first['ATTACHMENTS']); +}); -- cgit