Add new specific tests for SMB

pull/4527/head
Juan Pablo Villafáñez 2017-03-27 14:17:17 +07:00 committed by Joas Schilling
parent 71012b3432
commit f2bd5f7496
No known key found for this signature in database
GPG Key ID: E166FD8976B3BAC8
1 changed files with 19 additions and 0 deletions

@ -132,4 +132,23 @@ class SmbTest extends \Test\Files\Storage\Storage {
$this->assertEquals(new Change(IChange::ADDED, 'newfile.txt'), $result);
}
public function testRenameRoot() {
// root can't be renamed
$this->assertFalse($this->instance->rename('', 'foo1'));
$this->instance->mkdir('foo2');
$this->assertFalse($this->instance->rename('foo2', ''));
$this->instance->rmdir('foo2');
}
public function testUnlinkRoot() {
// root can't be deleted
$this->assertFalse($this->instance->unlink(''));
}
public function testRmdirRoot() {
// root can't be deleted
$this->assertFalse($this->instance->rmdir(''));
}
}