blob: b817a509db6767759dc8c8b405240d08e0f6c0fe [file] [log] [blame]
<?php
/**
* ezcImageSaveOptionsTest
*
* Licensed to the Apache Software Foundation (ASF) under one
* or more contributor license agreements. See the NOTICE file
* distributed with this work for additional information
* regarding copyright ownership. The ASF licenses this file
* to you under the Apache License, Version 2.0 (the
* "License"); you may not use this file except in compliance
* with the License. You may obtain a copy of the License at
*
* http://www.apache.org/licenses/LICENSE-2.0
*
* Unless required by applicable law or agreed to in writing,
* software distributed under the License is distributed on an
* "AS IS" BASIS, WITHOUT WARRANTIES OR CONDITIONS OF ANY
* KIND, either express or implied. See the License for the
* specific language governing permissions and limitations
* under the License.
*
* @package ImageConversion
* @version //autogentag//
* @copyright Copyright (C) 2005-2010 eZ Systems AS. All rights reserved.
* @license http://www.apache.org/licenses/LICENSE-2.0 Apache License, Version 2.0
*/
class ezcImageConversionSaveOptionsTest extends ezcTestCase
{
public static function suite()
{
return new PHPUnit_Framework_TestSuite( __CLASS__ );
}
public function testGetAccessSuccess()
{
$opt = new ezcImageSaveOptions();
$this->assertNull( $opt->compression );
$this->assertNull( $opt->quality );
$this->assertNull( $opt->transparencyReplacementColor );
}
public function testGetAccessFailure()
{
$opt = new ezcImageSaveOptions();
try
{
echo $opt->foo;
}
catch ( ezcBasePropertyNotFoundException $e )
{
return;
}
$this->fail( "ezcBasePropertyNotFoundException not thrown on get access to invalid property foo." );
}
public function testSetAccessSuccess()
{
$opt = new ezcImageSaveOptions();
$this->assertSetProperty(
$opt,
'compression',
range( 0, 9, 1 )
);
$this->assertSetProperty(
$opt,
'quality',
range( 0, 100, 10 )
);
$this->assertSetProperty(
$opt,
'transparencyReplacementColor',
array(
array( 23, 42, 13 ),
array( 0, 0, 0 ),
)
);
}
public function testSetAccessFailure()
{
$opt = new ezcImageSaveOptions();
$this->assertSetPropertyFails(
$opt,
'compression',
array( true, false, 23.42, 'foo', array(), new stdClass(), -1, 10, -23 )
);
$this->assertSetPropertyFails(
$opt,
'quality',
array( true, false, 23.42, 'foo', array(), new stdClass(), -1, 101, -23 )
);
$this->assertSetPropertyFails(
$opt,
'transparencyReplacementColor',
array(
true, false, 23.42, 'foo', array(), new stdClass(), -1, 101,
array( 42, 23 ), array( 'foo' => 42, 'bar' => 23 ),
array( 1 => 0, 2 => 0, 3 => 0 ), array( 'foo' => 'bar' )
)
);
try
{
$opt->foo = 23;
}
catch ( ezcBasePropertyNotFoundException $e )
{
return;
}
$this->fail( "ezcBasePropertyNotFoundException not thrown on set access to invalid property foo." );
}
}
?>