blob: 43126c0744f6ede341fada26f8cabdfd7d8b394a [file] [log] [blame]
<?php
/**
* File containing the ezcWebdavLockRequestTest class.
*
* 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 Webdav
* @subpackage Tests
* @version //autogentag//
* @license http://www.apache.org/licenses/LICENSE-2.0 Apache License, Version 2.0
*/
/**
* Reqiuire base test
*/
require_once 'request_test.php';
/**
* Test case for the ezcWebdavLockRequest class.
*
* @package Webdav
* @subpackage Tests
* @version //autogentag//
*/
class ezcWebdavLockRequestTest extends ezcWebdavRequestTestCase
{
public static function suite()
{
return new PHPUnit_Framework_TestSuite( __CLASS__ );
}
protected function setUp()
{
$this->className = 'ezcWebdavLockRequest';
$this->constructorArguments = array(
'/foo', '/bar'
);
$this->defaultValues = array(
'lockInfo' => null,
);
$this->workingValues = array(
'lockInfo' => array(
new ezcWebdavRequestLockInfoContent(
ezcWebdavLockRequest::SCOPE_EXCLUSIVE,
ezcWebdavLockRequest::TYPE_WRITE
),
new ezcWebdavRequestLockInfoContent(
ezcWebdavLockRequest::SCOPE_SHARED,
ezcWebdavLockRequest::TYPE_WRITE,
new ezcWebdavPotentialUriContent( 'Foo Bar' )
),
new ezcWebdavRequestLockInfoContent(
ezcWebdavLockRequest::SCOPE_SHARED,
ezcWebdavLockRequest::TYPE_WRITE,
new ezcWebdavPotentialUriContent( 'http://example.com/foo/bar', true )
),
null,
),
);
$this->failingValues = array(
'lockInfo' => array(
23,
23.34,
'foo bar',
array( 23, 42 ),
new stdClass(),
true,
false,
),
);
}
public function testValidateHeadersSuccess()
{
$req = new ezcWebdavLockRequest( '/foo', '/bar' );
$req->validateHeaders();
$req->setHeader( 'Depth', ezcWebdavRequest::DEPTH_ZERO );
$req->validateHeaders();
$req->setHeader( 'Depth', ezcWebdavRequest::DEPTH_INFINITY );
$req->validateHeaders();
}
public function testValidateHeadersFailure()
{
$req = new ezcWebdavLockRequest( '/foo', '/bar' );
$req->setHeader( 'Depth', null );
try
{
$req->validateHeaders();
$this->fail( 'Exception not thrown on missing Depth header.' );
}
catch ( ezcWebdavMissingHeaderException $e ) {}
$req->setHeader( 'Depth', 'A' );
try
{
$req->validateHeaders();
$this->fail( 'Exception not thrown on invalid Depth header.' );
}
catch ( ezcWebdavInvalidHeaderException $e ) {}
$req->setHeader( 'Depth', ezcWebdavRequest::DEPTH_ONE );
try
{
$req->validateHeaders();
$this->fail( 'Exception not thrown on invalid Depth header.' );
}
catch ( ezcWebdavInvalidHeaderException $e ) {}
}
}
?>