⭐ 欢迎来到虫虫下载站! | 📦 资源下载 📁 资源专辑 ℹ️ 关于我们
⭐ 虫虫下载站

📄 security.test.php

📁 Cake Framwork , Excellent
💻 PHP
字号:
<?php/* SVN FILE: $Id: security.test.php 7118 2008-06-04 20:49:29Z gwoo $ *//** * Short description for file. * * Long description for file * * PHP versions 4 and 5 * * CakePHP(tm) Tests <https://trac.cakephp.org/wiki/Developement/TestSuite> * Copyright 2005-2008, Cake Software Foundation, Inc. *								1785 E. Sahara Avenue, Suite 490-204 *								Las Vegas, Nevada 89104 * *  Licensed under The Open Group Test Suite License *  Redistributions of files must retain the above copyright notice. * * @filesource * @copyright		Copyright 2005-2008, Cake Software Foundation, Inc. * @link				https://trac.cakephp.org/wiki/Developement/TestSuite CakePHP(tm) Tests * @package			cake.tests * @subpackage		cake.tests.cases.libs * @since			CakePHP(tm) v 1.2.0.5432 * @version			$Revision: 7118 $ * @modifiedby		$LastChangedBy: gwoo $ * @lastmodified	$Date: 2008-06-04 13:49:29 -0700 (Wed, 04 Jun 2008) $ * @license			http://www.opensource.org/licenses/opengroup.php The Open Group Test Suite License */App::import('Core', 'Security');/** * Short description for class. * * @package    cake.tests * @subpackage cake.tests.cases.libs */class SecurityTest extends UnitTestCase {/** * sut property *  * @var mixed null * @access public */	var $sut = null;	/** * setUp method *  * @access public * @return void */	function setUp() {		$this->sut =& Security::getInstance();	}	/** * testInactiveMins method *  * @access public * @return void */	function testInactiveMins() {		Configure::write('Security.level', 'high');		$this->assertEqual(10, Security::inactiveMins());		Configure::write('Security.level', 'medium');		$this->assertEqual(100, Security::inactiveMins());		Configure::write('Security.level', 'low');		$this->assertEqual(300, Security::inactiveMins());	}	/** * testGenerateAuthkey method *  * @access public * @return void */	function testGenerateAuthkey() {		$this->assertEqual(strlen(Security::generateAuthKey()), 40);	}	/** * testValidateAuthKey method *  * @access public * @return void */	function testValidateAuthKey() {		$authKey = Security::generateAuthKey();		$this->assertTrue(Security::validateAuthKey($authKey));	}/** * testHash method *  * @access public * @return void */	function testHash() {		$key = 'someKey';		$this->assertIdentical(strlen(Security::hash($key, null, false)), 40);		$this->assertIdentical(strlen(Security::hash($key, 'sha1', false)), 40);		$this->assertIdentical(strlen(Security::hash($key, null, true)), 40);		$this->assertIdentical(strlen(Security::hash($key, 'sha1', true)), 40);		$hashType = 'sha1';		Security::setHash($hashType);		$this->assertIdentical($this->sut->hashType, $hashType);		$this->assertIdentical(strlen(Security::hash($key, null, true)), 40);		$this->assertIdentical(strlen(Security::hash($key, null, false)), 40);		$this->assertIdentical(strlen(Security::hash($key, 'md5', false)), 32);		$this->assertIdentical(strlen(Security::hash($key, 'md5', true)), 32);		$hashType = 'md5';		Security::setHash($hashType);		$this->assertIdentical($this->sut->hashType, $hashType);		$this->assertIdentical(strlen(Security::hash($key, null, false)), 32);		$this->assertIdentical(strlen(Security::hash($key, null, true)), 32);		if (function_exists('mhash')) {			$this->assertIdentical(strlen(Security::hash($key, 'sha256', false)), 64);			$this->assertIdentical(strlen(Security::hash($key, 'sha256', true)), 64);		} else {			$this->assertIdentical(strlen(Security::hash($key, 'sha256', false)), 32);			$this->assertIdentical(strlen(Security::hash($key, 'sha256', true)), 32);		}	}	function testCipher() {		$length = 10;		$txt = '';		for ($i = 0; $i < $length; $i++) { 			$txt .= rand(0, 255);		}		$key = 'my_key';		$result = Security::cipher($txt, $key);		$this->assertEqual(Security::cipher($result, $key), $txt);		$txt = '';		$key = 'my_key';		$result = Security::cipher($txt, $key);		$this->assertEqual(Security::cipher($result, $key), $txt);		$txt = 'some_text';		$key = '';		$result = Security::cipher($txt, $key);		$this->assertError();		$this->assertIdentical($result, '');	}}?>

⌨️ 快捷键说明

复制代码 Ctrl + C
搜索代码 Ctrl + F
全屏模式 F11
切换主题 Ctrl + Shift + D
显示快捷键 ?
增大字号 Ctrl + =
减小字号 Ctrl + -