blob: 2308e118cedd6f79654124a7d99561c09f98ca14 [file] [log] [blame]
<?php
class ezcWebdavLockPluginClientTestAssertions021
{
public function assertSourceStillThere( ezcWebdavMemoryBackend $backend )
{
PHPUnit_Framework_Assert::assertTrue(
$backend->nodeExists( '/collection/resource.html' )
);
$prop = $backend->getProperty( '/collection/resource.html', 'lockdiscovery' );
PHPUnit_Framework_Assert::assertNotNull(
$prop,
'Lock discovery property removed from source.'
);
PHPUnit_Framework_Assert::assertInstanceOf(
'ezcWebdavLockDiscoveryProperty',
$prop
);
PHPUnit_Framework_Assert::assertEquals(
1,
count( $prop->activeLock ),
'Active lock element removed from source.'
);
PHPUnit_Framework_Assert::assertEquals(
'opaquelocktoken:1234',
$prop->activeLock[0]->token->__toString(),
'Active lock token on destination parent incorrect.'
);
}
public function assertDestinationParentStillCorrect( ezcWebdavMemoryBackend $backend )
{
$prop = $backend->getProperty( '/other_collection', 'lockdiscovery' );
PHPUnit_Framework_Assert::assertNull(
$prop,
'Lock discovery property set on destination parent.'
);
}
public function assertDestinationCorrect( ezcWebdavMemoryBackend $backend )
{
PHPUnit_Framework_Assert::assertTrue(
$backend->nodeExists( '/other_collection/moved_resource.html' )
);
$prop = $backend->getProperty( '/other_collection/moved_resource.html', 'lockdiscovery' );
PHPUnit_Framework_Assert::assertNotNull(
$prop,
'Lock discovery property not available on destination.'
);
PHPUnit_Framework_Assert::assertEquals(
0,
count( $prop->activeLock ),
'Active lock available on destination.'
);
}
}
return new ezcWebdavLockPluginClientTestAssertions021();
?>