2013-03-15 01:56:43 +01:00
|
|
|
<?php
|
|
|
|
|
|
|
|
/**
|
|
|
|
* @package framework
|
|
|
|
* @subpackage Testing
|
|
|
|
*/
|
2014-08-15 08:53:05 +02:00
|
|
|
class ValidationExceptionTest extends SapphireTest
|
2013-03-15 01:56:43 +01:00
|
|
|
{
|
|
|
|
/**
|
|
|
|
* Test that ValidationResult object can correctly populate a ValidationException
|
|
|
|
*/
|
|
|
|
public function testCreateFromValidationResult() {
|
2014-08-15 08:53:05 +02:00
|
|
|
|
2013-03-15 01:56:43 +01:00
|
|
|
$result = new ValidationResult(false, 'Not a valid result');
|
|
|
|
$exception = new ValidationException($result);
|
2014-08-15 08:53:05 +02:00
|
|
|
|
2013-03-15 01:56:43 +01:00
|
|
|
$this->assertEquals(0, $exception->getCode());
|
|
|
|
$this->assertEquals('Not a valid result', $exception->getMessage());
|
|
|
|
$this->assertEquals(false, $exception->getResult()->valid());
|
|
|
|
$this->assertEquals('Not a valid result', $exception->getResult()->message());
|
2014-08-15 08:53:05 +02:00
|
|
|
|
2013-03-15 01:56:43 +01:00
|
|
|
}
|
2014-08-15 08:53:05 +02:00
|
|
|
|
2013-03-15 01:56:43 +01:00
|
|
|
/**
|
2014-08-15 08:53:05 +02:00
|
|
|
* Test that ValidationResult object with multiple errors can correctly
|
2013-03-15 01:56:43 +01:00
|
|
|
* populate a ValidationException
|
|
|
|
*/
|
|
|
|
public function testCreateFromComplexValidationResult() {
|
|
|
|
$result = new ValidationResult();
|
2014-01-08 23:03:36 +01:00
|
|
|
$result->error('Invalid type')
|
|
|
|
->error('Out of kiwis');
|
2013-03-15 01:56:43 +01:00
|
|
|
$exception = new ValidationException($result);
|
2014-08-15 08:53:05 +02:00
|
|
|
|
2013-03-15 01:56:43 +01:00
|
|
|
$this->assertEquals(0, $exception->getCode());
|
|
|
|
$this->assertEquals('Invalid type; Out of kiwis', $exception->getMessage());
|
|
|
|
$this->assertEquals(false, $exception->getResult()->valid());
|
|
|
|
$this->assertEquals('Invalid type; Out of kiwis', $exception->getResult()->message());
|
|
|
|
}
|
2014-08-15 08:53:05 +02:00
|
|
|
|
2013-03-15 01:56:43 +01:00
|
|
|
/**
|
|
|
|
* Test that a ValidationException created with no contained ValidationResult
|
|
|
|
* will correctly populate itself with an inferred version
|
|
|
|
*/
|
|
|
|
public function testCreateFromMessage() {
|
|
|
|
$exception = new ValidationException('Error inferred from message', E_USER_ERROR);
|
2014-08-15 08:53:05 +02:00
|
|
|
|
2013-03-15 01:56:43 +01:00
|
|
|
$this->assertEquals(E_USER_ERROR, $exception->getCode());
|
|
|
|
$this->assertEquals('Error inferred from message', $exception->getMessage());
|
|
|
|
$this->assertEquals(false, $exception->getResult()->valid());
|
|
|
|
$this->assertEquals('Error inferred from message', $exception->getResult()->message());
|
|
|
|
}
|
2014-08-15 08:53:05 +02:00
|
|
|
|
2013-03-15 01:56:43 +01:00
|
|
|
/**
|
|
|
|
* Test that ValidationException can be created with both a ValidationResult
|
|
|
|
* and a custom message
|
|
|
|
*/
|
|
|
|
public function testCreateWithValidationResultAndMessage() {
|
|
|
|
$result = new ValidationResult(false, 'Incorrect placement of cutlery');
|
|
|
|
$exception = new ValidationException($result, 'An error has occurred', E_USER_WARNING);
|
2014-08-15 08:53:05 +02:00
|
|
|
|
2013-03-15 01:56:43 +01:00
|
|
|
$this->assertEquals(E_USER_WARNING, $exception->getCode());
|
|
|
|
$this->assertEquals('An error has occurred', $exception->getMessage());
|
|
|
|
$this->assertEquals(false, $exception->getResult()->valid());
|
|
|
|
$this->assertEquals('Incorrect placement of cutlery', $exception->getResult()->message());
|
|
|
|
}
|
2014-08-15 08:53:05 +02:00
|
|
|
|
|
|
|
|
2013-03-15 01:56:43 +01:00
|
|
|
/**
|
|
|
|
* Test that ValidationException can be created with both a ValidationResult
|
|
|
|
* and a custom message
|
|
|
|
*/
|
|
|
|
public function testCreateWithComplexValidationResultAndMessage() {
|
|
|
|
$result = new ValidationResult();
|
2014-01-08 23:03:36 +01:00
|
|
|
$result->error('A spork is not a knife')
|
|
|
|
->error('A knife is not a back scratcher');
|
2013-03-15 01:56:43 +01:00
|
|
|
$exception = new ValidationException($result, 'An error has occurred', E_USER_WARNING);
|
2014-08-15 08:53:05 +02:00
|
|
|
|
2013-03-15 01:56:43 +01:00
|
|
|
$this->assertEquals(E_USER_WARNING, $exception->getCode());
|
|
|
|
$this->assertEquals('An error has occurred', $exception->getMessage());
|
|
|
|
$this->assertEquals(false, $exception->getResult()->valid());
|
2013-08-21 08:54:05 +02:00
|
|
|
$this->assertEquals('A spork is not a knife; A knife is not a back scratcher',
|
|
|
|
$exception->getResult()->message());
|
2013-03-15 01:56:43 +01:00
|
|
|
}
|
2014-01-08 23:03:36 +01:00
|
|
|
|
|
|
|
/**
|
|
|
|
* Test combining validation results together
|
|
|
|
*/
|
|
|
|
public function testCombineResults(){
|
|
|
|
$result = new ValidationResult();
|
|
|
|
$anotherresult = new ValidationResult();
|
|
|
|
$yetanotherresult = new ValidationResult();
|
|
|
|
$anotherresult->error("Eat with your mouth closed", "EATING101");
|
|
|
|
$yetanotherresult->error("You didn't wash your hands", "BECLEAN");
|
|
|
|
|
|
|
|
$this->assertTrue($result->valid());
|
|
|
|
$this->assertFalse($anotherresult->valid());
|
|
|
|
$this->assertFalse($yetanotherresult->valid());
|
|
|
|
|
|
|
|
$result->combineAnd($anotherresult)
|
|
|
|
->combineAnd($yetanotherresult);
|
|
|
|
$this->assertFalse($result->valid());
|
|
|
|
$this->assertEquals(array(
|
|
|
|
"EATING101" => "Eat with your mouth closed",
|
|
|
|
"BECLEAN" => "You didn't wash your hands"
|
|
|
|
),$result->messageList());
|
|
|
|
}
|
|
|
|
|
2013-08-21 08:54:05 +02:00
|
|
|
}
|