mirror of
https://github.com/kamilwylegala/cakephp2-php8.git
synced 2024-11-15 11:28:25 +00:00
Merge pull request #843 from dereuromark/2.3-ticket-3172
check() for CookieComponent and Configure
This commit is contained in:
commit
89c98233b5
6 changed files with 137 additions and 5 deletions
|
@ -281,6 +281,19 @@ class CookieComponent extends Component {
|
||||||
return $this->_values[$this->name][$key];
|
return $this->_values[$this->name][$key];
|
||||||
}
|
}
|
||||||
|
|
||||||
|
/**
|
||||||
|
* Returns true if given variable is set in cookie.
|
||||||
|
*
|
||||||
|
* @param string $var Variable name to check for
|
||||||
|
* @return boolean True if variable is there
|
||||||
|
*/
|
||||||
|
public function check($key = null) {
|
||||||
|
if (empty($key)) {
|
||||||
|
return false;
|
||||||
|
}
|
||||||
|
return $this->read($key) !== null;
|
||||||
|
}
|
||||||
|
|
||||||
/**
|
/**
|
||||||
* Delete a cookie value
|
* Delete a cookie value
|
||||||
*
|
*
|
||||||
|
|
|
@ -170,6 +170,19 @@ class Configure {
|
||||||
return Hash::get(self::$_values, $var);
|
return Hash::get(self::$_values, $var);
|
||||||
}
|
}
|
||||||
|
|
||||||
|
/**
|
||||||
|
* Returns true if given variable is set in Configure.
|
||||||
|
*
|
||||||
|
* @param string $var Variable name to check for
|
||||||
|
* @return boolean True if variable is there
|
||||||
|
*/
|
||||||
|
public static function check($var = null) {
|
||||||
|
if (empty($var)) {
|
||||||
|
return false;
|
||||||
|
}
|
||||||
|
return Hash::get(self::$_values, $var) !== null;
|
||||||
|
}
|
||||||
|
|
||||||
/**
|
/**
|
||||||
* Used to delete a variable from Configure.
|
* Used to delete a variable from Configure.
|
||||||
*
|
*
|
||||||
|
|
|
@ -218,8 +218,7 @@ class CakeSession {
|
||||||
if (empty($name)) {
|
if (empty($name)) {
|
||||||
return false;
|
return false;
|
||||||
}
|
}
|
||||||
$result = Hash::get($_SESSION, $name);
|
return Hash::get($_SESSION, $name) !== null;
|
||||||
return isset($result);
|
|
||||||
}
|
}
|
||||||
|
|
||||||
/**
|
/**
|
||||||
|
@ -283,9 +282,8 @@ class CakeSession {
|
||||||
protected static function _error($errorNumber) {
|
protected static function _error($errorNumber) {
|
||||||
if (!is_array(self::$error) || !array_key_exists($errorNumber, self::$error)) {
|
if (!is_array(self::$error) || !array_key_exists($errorNumber, self::$error)) {
|
||||||
return false;
|
return false;
|
||||||
} else {
|
|
||||||
return self::$error[$errorNumber];
|
|
||||||
}
|
}
|
||||||
|
return self::$error[$errorNumber];
|
||||||
}
|
}
|
||||||
|
|
||||||
/**
|
/**
|
||||||
|
|
|
@ -536,6 +536,60 @@ class CookieComponentTest extends CakeTestCase {
|
||||||
$this->assertNull($this->Cookie->read('value'));
|
$this->assertNull($this->Cookie->read('value'));
|
||||||
}
|
}
|
||||||
|
|
||||||
|
/**
|
||||||
|
* testCheck method
|
||||||
|
*
|
||||||
|
* @return void
|
||||||
|
*/
|
||||||
|
public function testCheck() {
|
||||||
|
$this->Cookie->write('CookieComponentTestCase', 'value');
|
||||||
|
$this->assertTrue($this->Cookie->check('CookieComponentTestCase'));
|
||||||
|
|
||||||
|
$this->assertFalse($this->Cookie->check('NotExistingCookieComponentTestCase'));
|
||||||
|
}
|
||||||
|
|
||||||
|
/**
|
||||||
|
* testCheckingSavedEmpty method
|
||||||
|
*
|
||||||
|
* @return void
|
||||||
|
*/
|
||||||
|
public function testCheckingSavedEmpty() {
|
||||||
|
$this->Cookie->write('CookieComponentTestCase', 0);
|
||||||
|
$this->assertTrue($this->Cookie->check('CookieComponentTestCase'));
|
||||||
|
|
||||||
|
$this->Cookie->write('CookieComponentTestCase', '0');
|
||||||
|
$this->assertTrue($this->Cookie->check('CookieComponentTestCase'));
|
||||||
|
|
||||||
|
$this->Cookie->write('CookieComponentTestCase', false);
|
||||||
|
$this->assertTrue($this->Cookie->check('CookieComponentTestCase'));
|
||||||
|
|
||||||
|
$this->Cookie->write('CookieComponentTestCase', null);
|
||||||
|
$this->assertFalse($this->Cookie->check('CookieComponentTestCase'));
|
||||||
|
}
|
||||||
|
|
||||||
|
/**
|
||||||
|
* testCheckKeyWithSpaces method
|
||||||
|
*
|
||||||
|
* @return void
|
||||||
|
*/
|
||||||
|
public function testCheckKeyWithSpaces() {
|
||||||
|
$this->Cookie->write('CookieComponent Test', "test");
|
||||||
|
$this->assertTrue($this->Cookie->check('CookieComponent Test'));
|
||||||
|
$this->Cookie->delete('CookieComponent Test');
|
||||||
|
|
||||||
|
$this->Cookie->write('CookieComponent Test.Test Case', "test");
|
||||||
|
$this->assertTrue($this->Cookie->check('CookieComponent Test.Test Case'));
|
||||||
|
}
|
||||||
|
|
||||||
|
/**
|
||||||
|
* testCheckEmpty
|
||||||
|
*
|
||||||
|
* @return void
|
||||||
|
*/
|
||||||
|
public function testCheckEmpty() {
|
||||||
|
$this->assertFalse($this->Cookie->check());
|
||||||
|
}
|
||||||
|
|
||||||
/**
|
/**
|
||||||
* test that deleting a top level keys kills the child elements too.
|
* test that deleting a top level keys kills the child elements too.
|
||||||
*
|
*
|
||||||
|
|
|
@ -177,6 +177,60 @@ class ConfigureTest extends CakeTestCase {
|
||||||
$this->assertTrue($result === null);
|
$this->assertTrue($result === null);
|
||||||
}
|
}
|
||||||
|
|
||||||
|
/**
|
||||||
|
* testCheck method
|
||||||
|
*
|
||||||
|
* @return void
|
||||||
|
*/
|
||||||
|
public function testCheck() {
|
||||||
|
Configure::write('ConfigureTestCase', 'value');
|
||||||
|
$this->assertTrue(Configure::check('ConfigureTestCase'));
|
||||||
|
|
||||||
|
$this->assertFalse(Configure::check('NotExistingConfigureTestCase'));
|
||||||
|
}
|
||||||
|
|
||||||
|
/**
|
||||||
|
* testCheckingSavedEmpty method
|
||||||
|
*
|
||||||
|
* @return void
|
||||||
|
*/
|
||||||
|
public function testCheckingSavedEmpty() {
|
||||||
|
$this->assertTrue(Configure::write('ConfigureTestCase', 0));
|
||||||
|
$this->assertTrue(Configure::check('ConfigureTestCase'));
|
||||||
|
|
||||||
|
$this->assertTrue(Configure::write('ConfigureTestCase', '0'));
|
||||||
|
$this->assertTrue(Configure::check('ConfigureTestCase'));
|
||||||
|
|
||||||
|
$this->assertTrue(Configure::write('ConfigureTestCase', false));
|
||||||
|
$this->assertTrue(Configure::check('ConfigureTestCase'));
|
||||||
|
|
||||||
|
$this->assertTrue(Configure::write('ConfigureTestCase', null));
|
||||||
|
$this->assertFalse(Configure::check('ConfigureTestCase'));
|
||||||
|
}
|
||||||
|
|
||||||
|
/**
|
||||||
|
* testCheckKeyWithSpaces method
|
||||||
|
*
|
||||||
|
* @return void
|
||||||
|
*/
|
||||||
|
public function testCheckKeyWithSpaces() {
|
||||||
|
$this->assertTrue(Configure::write('Configure Test', "test"));
|
||||||
|
$this->assertTrue(Configure::check('Configure Test'));
|
||||||
|
Configure::delete('Configure Test');
|
||||||
|
|
||||||
|
$this->assertTrue(Configure::write('Configure Test.Test Case', "test"));
|
||||||
|
$this->assertTrue(Configure::check('Configure Test.Test Case'));
|
||||||
|
}
|
||||||
|
|
||||||
|
/**
|
||||||
|
* testCheckEmpty
|
||||||
|
*
|
||||||
|
* @return void
|
||||||
|
*/
|
||||||
|
public function testCheckEmpty() {
|
||||||
|
$this->assertFalse(Configure::check());
|
||||||
|
}
|
||||||
|
|
||||||
/**
|
/**
|
||||||
* testLoad method
|
* testLoad method
|
||||||
*
|
*
|
||||||
|
|
|
@ -231,7 +231,7 @@ class CakeSessionTest extends CakeTestCase {
|
||||||
TestCakeSession::write('SessionTestCase', 'value');
|
TestCakeSession::write('SessionTestCase', 'value');
|
||||||
$this->assertTrue(TestCakeSession::check('SessionTestCase'));
|
$this->assertTrue(TestCakeSession::check('SessionTestCase'));
|
||||||
|
|
||||||
$this->assertFalse(TestCakeSession::check('NotExistingSessionTestCase'), false);
|
$this->assertFalse(TestCakeSession::check('NotExistingSessionTestCase'));
|
||||||
}
|
}
|
||||||
|
|
||||||
/**
|
/**
|
||||||
|
|
Loading…
Reference in a new issue