blob: e8f97262d3a61abf3fe2ecaf08829da06515a372 [file] [log] [blame]
<?php
/**
* ezcCacheStackStorageConfigurationTest
*
* 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 Cache
* @subpackage Tests
* @version //autogen//
* @license http://www.apache.org/licenses/LICENSE-2.0 Apache License, Version 2.0
*/
/**
* Test suite for ezcCacheManager class.
*
* @package Cache
* @subpackage Tests
*/
class ezcCacheStackStorageConfigurationTest extends ezcTestCase
{
/**
* suite
*
* @static
* @access public
*/
public static function suite()
{
return new PHPUnit_Framework_TestSuite( __CLASS__ );
}
public function testCtorSuccess()
{
$storage = new ezcCacheStorageFilePlain( '.' );
$config = new ezcCacheStackStorageConfiguration(
'foo',
$storage,
1000,
0.4
);
$this->assertAttributeEquals(
array(
'id' => 'foo',
'storage' => $storage,
'itemLimit' => 1000,
'freeRate' => 0.4
),
'properties',
$config
);
}
public function testCtorFailure()
{
$storage = new ezcCacheStorageFilePlain( '.' );
try
{
$config = new ezcCacheStackStorageConfiguration(
'',
$storage,
1000,
0.4
);
$this->fail( 'Exception not thrown on invalid ctor parameter.' );
}
catch ( ezcBaseValueException $e ) {}
try
{
$config = new ezcCacheStackStorageConfiguration(
true,
$storage,
1000,
0.4
);
$this->fail( 'Exception not thrown on invalid ctor parameter.' );
}
catch ( ezcBaseValueException $e ) {}
try
{
$config = new ezcCacheStackStorageConfiguration(
'foo',
$storage,
-1000,
0.4
);
$this->fail( 'Exception not thrown on invalid ctor parameter.' );
}
catch ( ezcBaseValueException $e ) {}
try
{
$config = new ezcCacheStackStorageConfiguration(
'foo',
$storage,
0,
0.4
);
$this->fail( 'Exception not thrown on invalid ctor parameter.' );
}
catch ( ezcBaseValueException $e ) {}
try
{
$config = new ezcCacheStackStorageConfiguration(
'foo',
$storage,
true,
0.4
);
$this->fail( 'Exception not thrown on invalid ctor parameter.' );
}
catch ( ezcBaseValueException $e ) {}
try
{
$config = new ezcCacheStackStorageConfiguration(
'foo',
$storage,
1000,
0
);
$this->fail( 'Exception not thrown on invalid ctor parameter.' );
}
catch ( ezcBaseValueException $e ) {}
try
{
$config = new ezcCacheStackStorageConfiguration(
'foo',
$storage,
1000,
1.1
);
$this->fail( 'Exception not thrown on invalid ctor parameter.' );
}
catch ( ezcBaseValueException $e ) {}
try
{
$config = new ezcCacheStackStorageConfiguration(
'foo',
$storage,
1000,
true
);
$this->fail( 'Exception not thrown on invalid ctor parameter.' );
}
catch ( ezcBaseValueException $e ) {}
}
public function testGetAccessSuccess()
{
$storage = new ezcCacheStorageFilePlain( '.' );
$config = new ezcCacheStackStorageConfiguration(
'foo',
$storage,
1000,
0.4
);
$this->assertSame(
'foo',
$config->id
);
$this->assertSame(
$storage,
$config->storage
);
$this->assertSame(
1000,
$config->itemLimit
);
$this->assertSame(
0.4,
$config->freeRate
);
}
public function testGetAccessFailure()
{
$storage = new ezcCacheStorageFilePlain( '.' );
$config = new ezcCacheStackStorageConfiguration(
'foo',
$storage,
1000,
0.4
);
try
{
echo $config->foo;
$this->fail( 'Exception not thrown on get access to invalid property.' );
}
catch ( ezcBasePropertyNotFoundException $e ) {}
}
public function testSetAccessFailure()
{
$storage = new ezcCacheStorageFilePlain( '.' );
$config = new ezcCacheStackStorageConfiguration(
'foo',
$storage,
1000,
0.4
);
try
{
$config->id = true;
$this->fail( 'Exception not thrown on set access.' );
}
catch ( ezcBasePropertyPermissionException $e ) {}
try
{
$config->storage = true;
$this->fail( 'Exception not thrown on set access.' );
}
catch ( ezcBasePropertyPermissionException $e ) {}
try
{
$config->itemLimit = true;
$this->fail( 'Exception not thrown on set access.' );
}
catch ( ezcBasePropertyPermissionException $e ) {}
try
{
$config->freeRate = true;
$this->fail( 'Exception not thrown on set access.' );
}
catch ( ezcBasePropertyPermissionException $e ) {}
try
{
$config->foo = true;
$this->fail( 'Exception not thrown on set access to invalid property.' );
}
catch ( ezcBasePropertyNotFoundException $e ) {}
}
public function testIssetAccess()
{
$storage = new ezcCacheStorageFilePlain( '.' );
$config = new ezcCacheStackStorageConfiguration(
'foo',
$storage,
1000,
0.4
);
$this->assertTrue( isset( $config->id ) );
$this->assertTrue( isset( $config->storage ) );
$this->assertTrue( isset( $config->itemLimit ) );
$this->assertTrue( isset( $config->freeRate ) );
$this->assertFalse( isset( $config->foo ) );
}
}
?>