diff options
author | Ivan Enderlin <ivan.enderlin@hoa-project.net> | 2015-03-25 08:52:52 +0100 |
---|---|---|
committer | Ivan Enderlin <ivan.enderlin@hoa-project.net> | 2015-03-25 08:54:39 +0100 |
commit | cd9e10d0461bbe7956718eb0905f0da2753b6ac1 (patch) | |
tree | c2fc2d3a5ebe6e2dc1f467cb9ea9ae23baf7c159 /Test/Unit | |
parent | 740e27e05e4f3d148daa359e7d074ed1853e0c03 (diff) | |
download | Ustring-cd9e10d0461bbe7956718eb0905f0da2753b6ac1.zip Ustring-cd9e10d0461bbe7956718eb0905f0da2753b6ac1.tar.gz Ustring-cd9e10d0461bbe7956718eb0905f0da2753b6ac1.tar.bz2 |
`toCode` supports invalid UTF-8 character.
In case where the `$char` given to `toCode` is not a valid UTF-8
character, a variable was missing. We fix this problem to mimic a valid
UTF-8 character.
Fix https://github.com/hoaproject/String/issues/26. Thanks @mdarse for
the report!
Diffstat (limited to 'Test/Unit')
-rw-r--r-- | Test/Unit/Issue.php | 62 |
1 files changed, 62 insertions, 0 deletions
diff --git a/Test/Unit/Issue.php b/Test/Unit/Issue.php new file mode 100644 index 0000000..ba4eeb8 --- /dev/null +++ b/Test/Unit/Issue.php @@ -0,0 +1,62 @@ +<?php + +/** + * Hoa + * + * + * @license + * + * New BSD License + * + * Copyright © 2007-2015, Ivan Enderlin. All rights reserved. + * + * Redistribution and use in source and binary forms, with or without + * modification, are permitted provided that the following conditions are met: + * * Redistributions of source code must retain the above copyright + * notice, this list of conditions and the following disclaimer. + * * Redistributions in binary form must reproduce the above copyright + * notice, this list of conditions and the following disclaimer in the + * documentation and/or other materials provided with the distribution. + * * Neither the name of the Hoa nor the names of its contributors may be + * used to endorse or promote products derived from this software without + * specific prior written permission. + * + * THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS "AS IS" + * AND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE + * IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE + * ARE DISCLAIMED. IN NO EVENT SHALL THE COPYRIGHT HOLDERS AND CONTRIBUTORS BE + * LIABLE FOR ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR + * CONSEQUENTIAL DAMAGES (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF + * SUBSTITUTE GOODS OR SERVICES; LOSS OF USE, DATA, OR PROFITS; OR BUSINESS + * INTERRUPTION) HOWEVER CAUSED AND ON ANY THEORY OF LIABILITY, WHETHER IN + * CONTRACT, STRICT LIABILITY, OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE) + * ARISING IN ANY WAY OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE + * POSSIBILITY OF SUCH DAMAGE. + */ + +namespace Hoa\String\Test\Unit; + +use Hoa\Test; +use Hoa\String as LUT; + +/** + * Class \Hoa\String\Test\Unit\Issue. + * + * Test suite of detected issues. + * + * @author Ivan Enderlin <ivan.enderlin@hoa-project.net> + * @copyright Copyright © 2007-2015 Ivan Enderlin. + * @license New BSD License + */ + +class Issue extends Test\Unit\Suite { + + public function case_github_26 ( ) { + + $this + ->when($result = LUT::toCode(chr(160))) + ->then + ->integer($result) + ->isEqualTo(0xa0); + } +} |