Skip to content

Commit

Permalink
making messages() and errors() reset themselves by default
Browse files Browse the repository at this point in the history
  • Loading branch information
euromark committed Oct 1, 2012
1 parent 9ed901b commit 7383298
Show file tree
Hide file tree
Showing 2 changed files with 61 additions and 5 deletions.
46 changes: 46 additions & 0 deletions lib/Cake/Test/Case/Utility/FolderTest.php
Expand Up @@ -766,6 +766,52 @@ public function testDirSize() {
$Folder->delete($Folder->pwd() . 'config_non_existent');
}

/**
* test that errors and messages can be resetted
*
* @return void
*/
public function testReset() {
$path = TMP . 'folder_delete_test';
mkdir($path);
$folder = $path . DS . 'sub';
mkdir($folder);
$file = $folder . DS . 'file';
touch($file);
$handle = fopen($file, 'a');

$Folder = new Folder($folder);
$return = $Folder->delete();
$this->assertFalse($return);

$messages = $Folder->messages();
$errors = $Folder->errors();
$expected = array(
$folder . DS . 'file NOT removed',
$folder . ' NOT removed',
);
sort($expected);
sort($errors);
$this->assertEmpty($messages);
$this->assertEquals($expected, $errors);

fclose($handle);

$return = $Folder->delete();
$this->assertTrue($return);

$messages = $Folder->messages();
$errors = $Folder->errors();
$expected = array(
$folder . DS . 'file removed',
$folder . ' removed',
);
sort($expected);
sort($messages);
$this->assertEmpty($errors);
$this->assertEquals($expected, $messages);
}

/**
* testDelete method
*
Expand Down
20 changes: 15 additions & 5 deletions lib/Cake/Utility/Folder.php
Expand Up @@ -23,7 +23,7 @@ class Folder {

/**
* Default scheme for Folder::copy
* Recursively merges subfolders with the same name
* Recursively merges subfolders with the same name
*
* @constant MERGE
*/
Expand Down Expand Up @@ -740,21 +740,31 @@ public function move($options) {
/**
* get messages from latest method
*
* @param boolean $reset Reset message stack after reading
* @return array
* @link http://book.cakephp.org/2.0/en/core-utility-libraries/file-folder.html#Folder::messages
*/
public function messages() {
return $this->_messages;
public function messages($reset = true) {
$messages = $this->_messages;
if ($reset) {
$this->_messages = array();
}
return $messages;
}

/**
* get error from latest method
*
* @param boolean $reset Reset error stack after reading
* @return array
* @link http://book.cakephp.org/2.0/en/core-utility-libraries/file-folder.html#Folder::errors
*/
public function errors() {
return $this->_errors;
public function errors($reset = true) {
$errors = $this->_errors;
if ($reset) {
$this->_errors = array();
}
return $errors;
}

/**
Expand Down

0 comments on commit 7383298

Please sign in to comment.