Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
8 changes: 7 additions & 1 deletion lib/private/User/User.php
Original file line number Diff line number Diff line change
Expand Up @@ -197,6 +197,8 @@ public function delete() {
if ($this->emitter) {
$this->emitter->emit('\OC\User', 'preDelete', array($this));
}
// get the home now because it won't return it after user deletion
$homePath = $this->getHome();
$result = $this->backend->deleteUser($this->uid);
if ($result) {

Expand All @@ -210,7 +212,11 @@ public function delete() {
\OC::$server->getConfig()->deleteAllUserValues($this->uid);

// Delete user files in /data/
\OC_Helper::rmdirr($this->getHome());
if ($homePath !== false) {
// FIXME: this operates directly on FS, should use View instead...
// also this is not testable/mockable...
\OC_Helper::rmdirr($homePath);
}

// Delete the users entry in the storage table
Storage::remove('home::' . $this->uid);
Expand Down
32 changes: 32 additions & 0 deletions tests/lib/User/UserTest.php
Original file line number Diff line number Diff line change
Expand Up @@ -200,6 +200,38 @@ public function testDelete() {
$this->assertTrue($user->delete());
}

public function testDeleteWithDifferentHome() {
/**
* @var Backend | \PHPUnit_Framework_MockObject_MockObject $backend
*/
$backend = $this->createMock(Dummy::class);

$backend->expects($this->at(0))
->method('implementsActions')
->will($this->returnCallback(function ($actions) {
if ($actions === Backend::GET_HOME) {
return true;
} else {
return false;
}
}));

// important: getHome MUST be called before deleteUser because
// once the user is deleted, getHome implementations might not
// return anything
$backend->expects($this->at(1))
->method('getHome')
->with($this->equalTo('foo'))
->will($this->returnValue('/home/foo'));

$backend->expects($this->at(2))
->method('deleteUser')
->with($this->equalTo('foo'));

$user = new User('foo', $backend);
$this->assertTrue($user->delete());
}

public function testGetHome() {
/**
* @var Backend | \PHPUnit_Framework_MockObject_MockObject $backend
Expand Down