summaryrefslogtreecommitdiff
path: root/vendor/eluceo/ical/tests/Eluceo/iCal/ParameterBagTest.php
diff options
context:
space:
mode:
Diffstat (limited to 'vendor/eluceo/ical/tests/Eluceo/iCal/ParameterBagTest.php')
-rw-r--r--vendor/eluceo/ical/tests/Eluceo/iCal/ParameterBagTest.php35
1 files changed, 35 insertions, 0 deletions
diff --git a/vendor/eluceo/ical/tests/Eluceo/iCal/ParameterBagTest.php b/vendor/eluceo/ical/tests/Eluceo/iCal/ParameterBagTest.php
new file mode 100644
index 00000000..0fb6e84c
--- /dev/null
+++ b/vendor/eluceo/ical/tests/Eluceo/iCal/ParameterBagTest.php
@@ -0,0 +1,35 @@
+<?php
+
+namespace Eluceo\iCal;
+
+class ParameterBagTest extends \PHPUnit_Framework_TestCase
+{
+ public function testEscapeParamValue()
+ {
+ $propertyObject = new ParameterBag;
+
+ $this->assertEquals(
+ 'test string',
+ $propertyObject->escapeParamValue('test string'),
+ 'No escaping necessary'
+ );
+
+ $this->assertEquals(
+ '"Containing \\"double-quotes\\""',
+ $propertyObject->escapeParamValue('Containing "double-quotes"'),
+ 'Text contains double quotes'
+ );
+
+ $this->assertEquals(
+ '"Containing forbidden chars like a ;"',
+ $propertyObject->escapeParamValue('Containing forbidden chars like a ;'),
+ 'Text with semicolon'
+ );
+
+ $this->assertEquals(
+ '"Containing forbidden chars like a :"',
+ $propertyObject->escapeParamValue('Containing forbidden chars like a :'),
+ 'Text with colon'
+ );
+ }
+}