mirror of
https://git.friendi.ca/friendica/friendica-addons.git
synced 2025-07-07 08:58:49 +00:00
Initial Release of the calendar plugin
This commit is contained in:
parent
45cc9885fc
commit
7115197a33
561 changed files with 189494 additions and 0 deletions
120
dav/SabreDAV/tests/Sabre/DAV/StringUtilTest.php
Normal file
120
dav/SabreDAV/tests/Sabre/DAV/StringUtilTest.php
Normal file
|
@ -0,0 +1,120 @@
|
|||
<?php
|
||||
|
||||
class Sabre_DAV_StringUtilTest extends PHPUnit_Framework_TestCase {
|
||||
|
||||
/**
|
||||
* @dataProvider dataset
|
||||
*/
|
||||
function testTextMatch($haystack, $needle, $collation, $matchType, $result) {
|
||||
|
||||
$this->assertEquals($result, Sabre_DAV_StringUtil::textMatch($haystack, $needle, $collation, $matchType));
|
||||
|
||||
}
|
||||
|
||||
function dataset() {
|
||||
|
||||
return array(
|
||||
array('FOOBAR', 'FOO', 'i;octet', 'contains', true),
|
||||
array('FOOBAR', 'foo', 'i;octet', 'contains', false),
|
||||
array('FÖÖBAR', 'FÖÖ', 'i;octet', 'contains', true),
|
||||
array('FÖÖBAR', 'föö', 'i;octet', 'contains', false),
|
||||
array('FOOBAR', 'FOOBAR', 'i;octet', 'equals', true),
|
||||
array('FOOBAR', 'fooBAR', 'i;octet', 'equals', false),
|
||||
array('FOOBAR', 'FOO', 'i;octet', 'starts-with', true),
|
||||
array('FOOBAR', 'foo', 'i;octet', 'starts-with', false),
|
||||
array('FOOBAR', 'BAR', 'i;octet', 'starts-with', false),
|
||||
array('FOOBAR', 'bar', 'i;octet', 'starts-with', false),
|
||||
array('FOOBAR', 'FOO', 'i;octet', 'ends-with', false),
|
||||
array('FOOBAR', 'foo', 'i;octet', 'ends-with', false),
|
||||
array('FOOBAR', 'BAR', 'i;octet', 'ends-with', true),
|
||||
array('FOOBAR', 'bar', 'i;octet', 'ends-with', false),
|
||||
|
||||
array('FOOBAR', 'FOO', 'i;ascii-casemap', 'contains', true),
|
||||
array('FOOBAR', 'foo', 'i;ascii-casemap', 'contains', true),
|
||||
array('FÖÖBAR', 'FÖÖ', 'i;ascii-casemap', 'contains', true),
|
||||
array('FÖÖBAR', 'föö', 'i;ascii-casemap', 'contains', false),
|
||||
array('FOOBAR', 'FOOBAR', 'i;ascii-casemap', 'equals', true),
|
||||
array('FOOBAR', 'fooBAR', 'i;ascii-casemap', 'equals', true),
|
||||
array('FOOBAR', 'FOO', 'i;ascii-casemap', 'starts-with', true),
|
||||
array('FOOBAR', 'foo', 'i;ascii-casemap', 'starts-with', true),
|
||||
array('FOOBAR', 'BAR', 'i;ascii-casemap', 'starts-with', false),
|
||||
array('FOOBAR', 'bar', 'i;ascii-casemap', 'starts-with', false),
|
||||
array('FOOBAR', 'FOO', 'i;ascii-casemap', 'ends-with', false),
|
||||
array('FOOBAR', 'foo', 'i;ascii-casemap', 'ends-with', false),
|
||||
array('FOOBAR', 'BAR', 'i;ascii-casemap', 'ends-with', true),
|
||||
array('FOOBAR', 'bar', 'i;ascii-casemap', 'ends-with', true),
|
||||
|
||||
array('FOOBAR', 'FOO', 'i;unicode-casemap', 'contains', true),
|
||||
array('FOOBAR', 'foo', 'i;unicode-casemap', 'contains', true),
|
||||
array('FÖÖBAR', 'FÖÖ', 'i;unicode-casemap', 'contains', true),
|
||||
array('FÖÖBAR', 'föö', 'i;unicode-casemap', 'contains', true),
|
||||
array('FOOBAR', 'FOOBAR', 'i;unicode-casemap', 'equals', true),
|
||||
array('FOOBAR', 'fooBAR', 'i;unicode-casemap', 'equals', true),
|
||||
array('FOOBAR', 'FOO', 'i;unicode-casemap', 'starts-with', true),
|
||||
array('FOOBAR', 'foo', 'i;unicode-casemap', 'starts-with', true),
|
||||
array('FOOBAR', 'BAR', 'i;unicode-casemap', 'starts-with', false),
|
||||
array('FOOBAR', 'bar', 'i;unicode-casemap', 'starts-with', false),
|
||||
array('FOOBAR', 'FOO', 'i;unicode-casemap', 'ends-with', false),
|
||||
array('FOOBAR', 'foo', 'i;unicode-casemap', 'ends-with', false),
|
||||
array('FOOBAR', 'BAR', 'i;unicode-casemap', 'ends-with', true),
|
||||
array('FOOBAR', 'bar', 'i;unicode-casemap', 'ends-with', true),
|
||||
);
|
||||
|
||||
}
|
||||
|
||||
/**
|
||||
* @expectedException Sabre_DAV_Exception_BadRequest
|
||||
*/
|
||||
public function testBadCollation() {
|
||||
|
||||
Sabre_DAV_StringUtil::textMatch('foobar','foo','blabla','contains');
|
||||
|
||||
}
|
||||
|
||||
|
||||
/**
|
||||
* @expectedException Sabre_DAV_Exception_BadRequest
|
||||
*/
|
||||
public function testBadMatchType() {
|
||||
|
||||
Sabre_DAV_StringUtil::textMatch('foobar','foo','i;octet','booh');
|
||||
|
||||
}
|
||||
|
||||
public function testEnsureUTF8_ascii() {
|
||||
|
||||
$inputString = "harkema";
|
||||
$outputString = "harkema";
|
||||
|
||||
$this->assertEquals(
|
||||
$outputString,
|
||||
Sabre_DAV_StringUtil::ensureUTF8($inputString)
|
||||
);
|
||||
|
||||
}
|
||||
|
||||
public function testEnsureUTF8_latin1() {
|
||||
|
||||
$inputString = "m\xfcnster";
|
||||
$outputString = "münster";
|
||||
|
||||
$this->assertEquals(
|
||||
$outputString,
|
||||
Sabre_DAV_StringUtil::ensureUTF8($inputString)
|
||||
);
|
||||
|
||||
}
|
||||
|
||||
public function testEnsureUTF8_utf8() {
|
||||
|
||||
$inputString = "m\xc3\xbcnster";
|
||||
$outputString = "münster";
|
||||
|
||||
$this->assertEquals(
|
||||
$outputString,
|
||||
Sabre_DAV_StringUtil::ensureUTF8($inputString)
|
||||
);
|
||||
|
||||
}
|
||||
|
||||
}
|
Loading…
Add table
Add a link
Reference in a new issue