Skip to content

Commit

Permalink
Adding error triggering while in debug mode for unhandled validation …
Browse files Browse the repository at this point in the history
…methods.
  • Loading branch information
markstory committed Oct 1, 2009
1 parent 58ec259 commit 32d5b40
Show file tree
Hide file tree
Showing 2 changed files with 34 additions and 0 deletions.
7 changes: 7 additions & 0 deletions cake/libs/model/model.php
Expand Up @@ -2547,6 +2547,13 @@ function invalidFields($options = array()) {
$valid = $Validation->dispatchMethod($rule, $ruleParams);
} elseif (!is_array($validator['rule'])) {
$valid = preg_match($rule, $data[$fieldName]);
} elseif (Configure::read('debug') > 0) {
$error = sprintf(
__('Could not find validation handler %s for %s', true),
$rule,
$fieldName
);
trigger_error($error, E_USER_WARNING);
}

if (!$valid || (is_string($valid) && strlen($valid) > 0)) {
Expand Down
27 changes: 27 additions & 0 deletions cake/tests/cases/libs/model/model_validation.test.php
Expand Up @@ -126,5 +126,32 @@ function testInvalidFieldsWithFieldListParams() {
$this->assertEqual($TestModel->validate, $validate);
}

/**
* Test that missing validation methods trigger errors in development mode.
* Helps to make developement easier.
*
* @return void
**/
function testMissingValidationErrorTriggering() {
$restore = Configure::read('debug');
Configure::write('debug', 2);

$TestModel =& new ValidationTest1();
$TestModel->create(array('title' => 'foo'));
$TestModel->validate = array(
'title' => array(
'rule' => array('thisOneBringsThePain'),
'required' => true
)
);
$this->expectError(new PatternExpectation('/thisOneBringsThePain for title/i'));
$TestModel->invalidFields(array('fieldList' => array('title')));

Configure::write('debug', 0);
$this->assertNoErrors();
$TestModel->invalidFields(array('fieldList' => array('title')));
Configure::write('debug', $restore);
}

}
?>

0 comments on commit 32d5b40

Please sign in to comment.