File: //opt/alt/php54/usr/share/pear/test/HTML_QuickForm2/QuickForm2/Rule/EmptyTest.php
<?php
/**
* Unit tests for HTML_QuickForm2 package
*
* PHP version 5
*
* LICENSE
*
* This source file is subject to BSD 3-Clause License that is bundled
* with this package in the file LICENSE and available at the URL
* https://raw.githubusercontent.com/pear/HTML_QuickForm2/trunk/docs/LICENSE
*
* @category HTML
* @package HTML_QuickForm2
* @author Alexey Borzov <avb@php.net>
* @author Bertrand Mansion <golgote@mamasam.com>
* @copyright 2006-2021 Alexey Borzov <avb@php.net>, Bertrand Mansion <golgote@mamasam.com>
* @license https://opensource.org/licenses/BSD-3-Clause BSD 3-Clause License
* @link https://pear.php.net/package/HTML_QuickForm2
*/
/** Sets up includes */
require_once dirname(dirname(__DIR__)) . '/TestHelper.php';
/**
* Unit test for HTML_QuickForm2_Rule_Empty class
*/
class HTML_QuickForm2_Rule_EmptyTest extends PHPUnit_Framework_TestCase
{
public function testValidateGenericElement()
{
$mockValid = $this->getMockBuilder('HTML_QuickForm2_Element')
->setMethods(['getType',
'getRawValue', 'setValue', '__toString'])
->getMock();
$mockValid->expects($this->once())->method('getRawValue')
->will($this->returnValue(''));
$rule = new HTML_QuickForm2_Rule_Empty($mockValid, 'an error');
$this->assertTrue($rule->validate());
$this->assertEquals('', $mockValid->getError());
$mockInvalid = $this->getMockBuilder('HTML_QuickForm2_Element')
->setMethods(['getType',
'getRawValue', 'setValue', '__toString'])
->getMock();
$mockInvalid->expects($this->once())->method('getRawValue')
->will($this->returnValue('some value'));
$rule2 = new HTML_QuickForm2_Rule_Empty($mockInvalid, 'an error');
$this->assertFalse($rule2->validate());
$this->assertEquals('an error', $mockInvalid->getError());
}
public function testValidateInputFileElement()
{
$mockValid = $this->getMockBuilder('HTML_QuickForm2_Element_InputFile')
->setMethods(['getValue'])
->getMock();
$mockValid->expects($this->once())->method('getValue')
->will($this->returnValue([
'name' => '',
'type' => '',
'tmp_name' => '',
'error' => UPLOAD_ERR_NO_FILE,
'size' => 0
]));
$rule = new HTML_QuickForm2_Rule_Empty($mockValid, 'an error');
$this->assertTrue($rule->validate());
$this->assertEquals('', $mockValid->getError());
$mockInvalid = $this->getMockBuilder('HTML_QuickForm2_Element_InputFile')
->setMethods(['getValue'])
->getMock();
$mockInvalid->expects($this->once())->method('getValue')
->will($this->returnValue([
'name' => 'goodfile.php',
'type' => 'application/octet-stream',
'tmp_name' => '/tmp/foobar',
'error' => UPLOAD_ERR_OK,
'size' => 1234
]));
$rule2 = new HTML_QuickForm2_Rule_Empty($mockInvalid, 'an error');
$this->assertFalse($rule2->validate());
$this->assertEquals('an error', $mockInvalid->getError());
}
public function testFailedUploadIsNotEmpty()
{
$mockFailed = $this->getMockBuilder('HTML_QuickForm2_Element_InputFile')
->setMethods(['getValue'])
->getMock();
$mockFailed->expects($this->once())->method('getValue')
->will($this->returnValue([
'name' => 'badfile.php',
'type' => '',
'tmp_name' => '',
'error' => UPLOAD_ERR_FORM_SIZE,
'size' => 0
]));
$rule = new HTML_QuickForm2_Rule_Empty($mockFailed, 'an error');
$this->assertFalse($rule->validate());
$this->assertEquals('an error', $mockFailed->getError());
}
public function testValidateArray()
{
$mockElEmpty = $this->getMockBuilder('HTML_QuickForm2_Element')
->setMethods(['getType',
'getRawValue', 'setValue', '__toString'])
->getMock();
$mockElEmpty->expects($this->once())->method('getRawValue')
->will($this->returnValue([]));
$rule = new HTML_QuickForm2_Rule_Empty($mockElEmpty, 'an error');
$this->assertTrue($rule->validate());
$mockElNonEmpty = $this->getMockBuilder('HTML_QuickForm2_Element')
->setMethods(['getType',
'getRawValue', 'setValue', '__toString'])
->getMock();
$mockElNonEmpty->expects($this->once())->method('getRawValue')
->will($this->returnValue(['foo', 'bar']));
$rule = new HTML_QuickForm2_Rule_Empty($mockElNonEmpty, 'an error');
$this->assertFalse($rule->validate());
}
}
?>