diff options
author | friendica <info@friendica.com> | 2012-07-30 18:51:44 -0700 |
---|---|---|
committer | friendica <info@friendica.com> | 2012-07-30 18:51:44 -0700 |
commit | 02cc436ec7cf0cfca5fc9b5166cc537bbee53671 (patch) | |
tree | d7e5eea4e22ed1befeab5706a30ce1e1ac064972 /library/urlify/tests | |
parent | 194c52aee590a209cc38ee8fb322ff7dc4a9143d (diff) | |
download | volse-hubzilla-02cc436ec7cf0cfca5fc9b5166cc537bbee53671.tar.gz volse-hubzilla-02cc436ec7cf0cfca5fc9b5166cc537bbee53671.tar.bz2 volse-hubzilla-02cc436ec7cf0cfca5fc9b5166cc537bbee53671.zip |
Added urlify to try and create webbie auto-suggestions out of whatever unicode stuff gets thrown in as a name. Currently this will only work for latin/european/cyrillic/russian, but possible to extend to ideographic forms.
Diffstat (limited to 'library/urlify/tests')
-rw-r--r-- | library/urlify/tests/URLifyTest.php | 31 | ||||
-rw-r--r-- | library/urlify/tests/bootstrap.php | 9 | ||||
-rw-r--r-- | library/urlify/tests/phpunit.xml | 8 |
3 files changed, 48 insertions, 0 deletions
diff --git a/library/urlify/tests/URLifyTest.php b/library/urlify/tests/URLifyTest.php new file mode 100644 index 000000000..26ecb5dea --- /dev/null +++ b/library/urlify/tests/URLifyTest.php @@ -0,0 +1,31 @@ +<?php +class URLifyTest extends PHPUnit_Framework_TestCase { + function test_downcode () { + $this->assertEquals (' J\'etudie le francais ', URLify::downcode (' J\'étudie le français ')); + $this->assertEquals ('Lo siento, no hablo espanol.', URLify::downcode ('Lo siento, no hablo español.')); + $this->assertEquals ('F3PWS', URLify::downcode ('ΦΞΠΏΣ')); + } + + function test_filter () { + $this->assertEquals ('jetudie-le-francais', URLify::filter (' J\'étudie le français ')); + $this->assertEquals ('lo-siento-no-hablo-espanol', URLify::filter ('Lo siento, no hablo español.')); + $this->assertEquals ('f3pws', URLify::filter ('ΦΞΠΏΣ')); + } + + function test_add_chars () { + $this->assertEquals ('¿ ® ¼ ¼ ¾ ¶', URLify::downcode ('¿ ® ¼ ¼ ¾ ¶')); + URLify::add_chars (array ( + '¿' => '?', '®' => '(r)', '¼' => '1/4', + '¼' => '1/2', '¾' => '3/4', '¶' => 'P' + )); + $this->assertEquals ('? (r) 1/2 1/2 3/4 P', URLify::downcode ('¿ ® ¼ ¼ ¾ ¶')); + } + + function test_remove_words () { + $this->assertEquals ('foo-bar', URLify::filter ('foo bar')); + URLify::remove_words (array ('foo', 'bar')); + $this->assertEquals ('', URLify::filter ('foo bar')); + } +} + +?> diff --git a/library/urlify/tests/bootstrap.php b/library/urlify/tests/bootstrap.php new file mode 100644 index 000000000..d56d46665 --- /dev/null +++ b/library/urlify/tests/bootstrap.php @@ -0,0 +1,9 @@ +<?php +set_error_handler(function () { + echo file_get_contents(dirname(__DIR__).'/INSTALL'); + exit(1); +}, E_ALL); + +require_once dirname(__DIR__) . '/vendor/autoload.php'; + +restore_error_handler(); diff --git a/library/urlify/tests/phpunit.xml b/library/urlify/tests/phpunit.xml new file mode 100644 index 000000000..2666a3ccb --- /dev/null +++ b/library/urlify/tests/phpunit.xml @@ -0,0 +1,8 @@ +<phpunit bootstrap="bootstrap.php"> + <testsuite name="URLify Test Suite"> + <directory>.</directory> + </testsuite> + <logging> + <log type="coverage-text" target="php://stdout" showUncoveredFiles="false"/> + </logging> +</phpunit> |