mirror of
https://github.com/nextcloud/server.git
synced 2026-02-11 14:54:02 -05:00
22 lines
714 B
PHP
22 lines
714 B
PHP
|
|
<?php
|
||
|
|
/**
|
||
|
|
* Copyright (c) 2014 Lukas Reschke <lukas@owncloud.com>
|
||
|
|
* This file is licensed under the Affero General Public License version 3 or
|
||
|
|
* later.
|
||
|
|
* See the COPYING-README file.
|
||
|
|
*/
|
||
|
|
|
||
|
|
use \OC\Security\StringUtils;
|
||
|
|
|
||
|
|
class StringUtilsTest extends \PHPUnit_Framework_TestCase {
|
||
|
|
|
||
|
|
function testEquals() {
|
||
|
|
$this->assertTrue(StringUtils::equals('GpKY9fSnWRaeFNJbES99zVGvA', 'GpKY9fSnWRaeFNJbES99zVGvA'));
|
||
|
|
$this->assertFalse(StringUtils::equals('GpKY9fSnWNJbES99zVGvA', 'GpKY9fSnWRaeFNJbES99zVGvA'));
|
||
|
|
$this->assertFalse(StringUtils::equals('', 'GpKY9fSnWRaeFNJbES99zVGvA'));
|
||
|
|
$this->assertFalse(StringUtils::equals('GpKY9fSnWRaeFNJbES99zVGvA', ''));
|
||
|
|
$this->assertTrue(StringUtils::equals('', ''));
|
||
|
|
}
|
||
|
|
|
||
|
|
}
|