You cannot select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
cacert-testmgr/external/ZendFramework-1.9.5/tests/Zend/Measure/LengthTest.php

395 lines
12 KiB
PHP

<?php
/**
* Zend Framework
*
* LICENSE
*
* This source file is subject to the new BSD license that is bundled
* with this package in the file LICENSE.txt.
* It is also available through the world-wide-web at this URL:
* http://framework.zend.com/license/new-bsd
* If you did not receive a copy of the license and are unable to
* obtain it through the world-wide-web, please send an email
* to license@zend.com so we can send you a copy immediately.
*
* @category Zend
* @package Zend_Measure
* @subpackage UnitTests
* @copyright Copyright (c) 2005-2009 Zend Technologies USA Inc. (http://www.zend.com)
* @license http://framework.zend.com/license/new-bsd New BSD License
* @version $Id: LengthTest.php 17363 2009-08-03 07:40:18Z bkarwin $
*/
/**
* Zend_Measure_Length
*/
require_once 'Zend/Measure/Length.php';
/**
* PHPUnit test case
*/
require_once 'PHPUnit/Framework/TestCase.php';
/**
* @category Zend
* @package Zend_Measure
* @subpackage UnitTests
* @copyright Copyright (c) 2005-2009 Zend Technologies USA Inc. (http://www.zend.com)
* @license http://framework.zend.com/license/new-bsd New BSD License
* @group Zend_Measure
*/
class Zend_Measure_LengthTest extends PHPUnit_Framework_TestCase
{
/**
* test for Length initialisation
* expected instance
*/
public function testLengthInit()
{
$value = new Zend_Measure_Length('100',Zend_Measure_Length::STANDARD,'de');
$this->assertTrue($value instanceof Zend_Measure_Length,'Zend_Measure_Length Object not returned');
}
/**
* test for exception unknown type
* expected exception
*/
public function testLengthUnknownType()
{
try {
$value = new Zend_Measure_Length('100','Length::UNKNOWN','de');
$this->fail('Exception expected because of unknown type');
} catch (Exception $e) {
return true; // Test OK
}
}
/**
* test for exception unknown value
* expected exception
*/
public function testLengthUnknownValue()
{
try {
$value = new Zend_Measure_Length('novalue',Zend_Measure_Length::STANDARD,'de');
$this->fail('Exception expected because of empty value');
} catch (Exception $e) {
return true; // Test OK
}
}
/**
* test for exception unknown locale
* expected root value
*/
public function testLengthUnknownLocale()
{
try {
$value = new Zend_Measure_Length('100',Zend_Measure_Length::STANDARD,'nolocale');
$this->fail('Exception expected because of unknown locale');
} catch (Exception $e) {
return true; // Test OK
}
}
/**
* test for standard locale
* expected integer
*/
public function testLengthNoLocale()
{
$value = new Zend_Measure_Length('100',Zend_Measure_Length::STANDARD);
$this->assertEquals(100, $value->getValue(),'Zend_Measure_Length value expected');
}
/**
* test for positive value
* expected integer
*/
public function testLengthValuePositive()
{
$value = new Zend_Measure_Length('100',Zend_Measure_Length::STANDARD,'de');
$this->assertEquals(100, $value->getValue(), 'Zend_Measure_Length value expected to be a positive integer');
}
/**
* test for negative value
* expected integer
*/
public function testLengthValueNegative()
{
$value = new Zend_Measure_Length('-100',Zend_Measure_Length::STANDARD,'de');
$this->assertEquals(-100, $value->getValue(), 'Zend_Measure_Length value expected to be a negative integer');
}
/**
* test for decimal value
* expected float
*/
public function testLengthValueDecimal()
{
$value = new Zend_Measure_Length('-100,200',Zend_Measure_Length::STANDARD,'de');
$this->assertEquals(-100.200, $value->getValue(), 'Zend_Measure_Length value expected to be a decimal value');
}
/**
* test for decimal seperated value
* expected float
*/
public function testLengthValueDecimalSeperated()
{
$value = new Zend_Measure_Length('-100.100,200',Zend_Measure_Length::STANDARD,'de');
$this->assertEquals(-100100.200, $value->getValue(),'Zend_Measure_Length Object not returned');
}
/**
* test for string with integrated value
* expected float
*/
public function testLengthValueString()
{
$value = new Zend_Measure_Length('-100.100,200',Zend_Measure_Length::STANDARD,'de');
$this->assertEquals(-100100.200, $value->getValue(),'Zend_Measure_Length Object not returned');
}
/**
* test for equality
* expected true
*/
public function testLengthEquality()
{
$value = new Zend_Measure_Length('-100.100,200',Zend_Measure_Length::STANDARD,'de');
$newvalue = new Zend_Measure_Length('-100.100,200',Zend_Measure_Length::STANDARD,'de');
$this->assertTrue($value->equals($newvalue),'Zend_Measure_Length Object should be equal');
}
/**
* test for no equality
* expected false
*/
public function testLengthNoEquality()
{
$value = new Zend_Measure_Length('-100.100,200',Zend_Measure_Length::STANDARD,'de');
$newvalue = new Zend_Measure_Length('-100,200',Zend_Measure_Length::STANDARD,'de');
$this->assertFalse($value->equals($newvalue),'Zend_Measure_Length Object should be not equal');
}
/**
* test for set positive value
* expected integer
*/
public function testLengthSetPositive()
{
$value = new Zend_Measure_Length('100',Zend_Measure_Length::STANDARD,'de');
$value->setValue('200',Zend_Measure_Length::STANDARD,'de');
$this->assertEquals(200, $value->getValue(), 'Zend_Measure_Length value expected to be a positive integer');
}
/**
* test for set negative value
* expected integer
*/
public function testLengthSetNegative()
{
$value = new Zend_Measure_Length('-100',Zend_Measure_Length::STANDARD,'de');
$value->setValue('-200',Zend_Measure_Length::STANDARD,'de');
$this->assertEquals(-200, $value->getValue(), 'Zend_Measure_Length value expected to be a negative integer');
}
/**
* test for set decimal value
* expected float
*/
public function testLengthSetDecimal()
{
$value = new Zend_Measure_Length('-100,200',Zend_Measure_Length::STANDARD,'de');
$value->setValue('-200,200',Zend_Measure_Length::STANDARD,'de');
$this->assertEquals(-200.200, $value->getValue(), 'Zend_Measure_Length value expected to be a decimal value');
}
/**
* test for set decimal seperated value
* expected float
*/
public function testLengthSetDecimalSeperated()
{
$value = new Zend_Measure_Length('-100.100,200',Zend_Measure_Length::STANDARD,'de');
$value->setValue('-200.200,200',Zend_Measure_Length::STANDARD,'de');
$this->assertEquals(-200200.200, $value->getValue(),'Zend_Measure_Length Object not returned');
}
/**
* test for set string with integrated value
* expected float
*/
public function testLengthSetString()
{
$value = new Zend_Measure_Length('-100.100,200',Zend_Measure_Length::STANDARD,'de');
$value->setValue('-200.200,200',Zend_Measure_Length::STANDARD,'de');
$this->assertEquals(-200200.200, $value->getValue(),'Zend_Measure_Length Object not returned');
}
/**
* test for exception unknown type
* expected exception
*/
public function testLengthSetUnknownType()
{
try {
$value = new Zend_Measure_Length('100',Zend_Measure_Length::STANDARD,'de');
$value->setValue('-200.200,200','Length::UNKNOWN','de');
$this->fail('Exception expected because of unknown type');
} catch (Exception $e) {
return true; // Test OK
}
}
/**
* test for exception unknown value
* expected exception
*/
public function testLengthSetUnknownValue()
{
try {
$value = new Zend_Measure_Length('100',Zend_Measure_Length::STANDARD,'de');
$value->setValue('novalue',Zend_Measure_Length::STANDARD,'de');
$this->fail('Exception expected because of empty value');
} catch (Exception $e) {
return; // Test OK
}
}
/**
* test for exception unknown locale
* expected exception
*/
public function testLengthSetUnknownLocale()
{
try {
$value = new Zend_Measure_Length('100',Zend_Measure_Length::STANDARD,'de');
$value->setValue('200',Zend_Measure_Length::STANDARD,'nolocale');
$this->fail('Exception expected because of unknown locale');
} catch (Exception $e) {
return true; // Test OK
}
}
/**
* test for exception unknown locale
* expected exception
*/
public function testLengthSetWithNoLocale()
{
$value = new Zend_Measure_Length('100', Zend_Measure_Length::STANDARD, 'de');
$value->setValue('200', Zend_Measure_Length::STANDARD);
$this->assertEquals(200, $value->getValue(), 'Zend_Measure_Length value expected to be a positive integer');
}
/**
* test setting type
* expected new type
*/
public function testLengthSetType()
{
$value = new Zend_Measure_Length('-100',Zend_Measure_Length::STANDARD,'de');
$value->setType(Zend_Measure_Length::MILE);
$this->assertEquals(Zend_Measure_Length::MILE, $value->getType(), 'Zend_Measure_Length type expected');
}
/**
* test setting computed type
* expected new type
*/
public function testLengthSetComputedType1()
{
$value = new Zend_Measure_Length('-100',Zend_Measure_Length::STANDARD,'de');
$value->setType(Zend_Measure_Length::LINK);
$this->assertEquals(Zend_Measure_Length::LINK, $value->getType(), 'Zend_Measure_Length type expected');
}
/**
* test setting computed type
* expected new type
*/
public function testLengthSetComputedType2()
{
$value = new Zend_Measure_Length('-100',Zend_Measure_Length::LINK,'de');
$value->setType(Zend_Measure_Length::KEN);
$this->assertEquals(Zend_Measure_Length::KEN, $value->getType(), 'Zend_Measure_Length type expected');
}
/**
* test setting unknown type
* expected new type
*/
public function testLengthSetTypeFailed()
{
try {
$value = new Zend_Measure_Length('-100',Zend_Measure_Length::STANDARD,'de');
$value->setType('Length::UNKNOWN');
$this->fail('Exception expected because of unknown type');
} catch (Zend_Measure_Exception $e) {
// success
}
}
/**
* test toString
* expected string
*/
public function testLengthToString()
{
$value = new Zend_Measure_Length('-100',Zend_Measure_Length::STANDARD,'de');
$this->assertEquals('-100 m', $value->toString(), 'Value -100 m expected');
}
/**
* test __toString
* expected string
*/
public function testLength_ToString()
{
$value = new Zend_Measure_Length('-100',Zend_Measure_Length::STANDARD,'de');
$this->assertEquals('-100 m', $value->__toString(), 'Value -100 m expected');
}
/**
* test getConversionList
* expected array
*/
public function testLengthConversionList()
{
$value = new Zend_Measure_Length('-100',Zend_Measure_Length::STANDARD,'de');
$unit = $value->getConversionList();
$this->assertTrue(is_array($unit), 'Array expected');
}
}