summaryrefslogtreecommitdiffstats
path: root/tests/lib
diff options
context:
space:
mode:
authorLukas Reschke <lukas@owncloud.com>2014-12-10 11:56:45 +0100
committerLukas Reschke <lukas@owncloud.com>2014-12-10 11:56:45 +0100
commit5398bbdc003a93f8652b7c7a88bc80e7710996c9 (patch)
tree17094823bcdeea09393f8f0d03ca1c28016dc8ca /tests/lib
parentdd4ef58297f5f87284177f579ef69a200112bb67 (diff)
parent7a290a3d6b779a624700ee3d264d3a87cb38b08b (diff)
downloadnextcloud-server-5398bbdc003a93f8652b7c7a88bc80e7710996c9.tar.gz
nextcloud-server-5398bbdc003a93f8652b7c7a88bc80e7710996c9.zip
Merge pull request #12711 from owncloud/add-backend-to-rest-index
Expose backend type via REST API
Diffstat (limited to 'tests/lib')
-rw-r--r--tests/lib/contacts/localadressbook.php3
-rw-r--r--tests/lib/user/user.php7
2 files changed, 10 insertions, 0 deletions
diff --git a/tests/lib/contacts/localadressbook.php b/tests/lib/contacts/localadressbook.php
index 5fa260ffc3b..a34d45bf3d0 100644
--- a/tests/lib/contacts/localadressbook.php
+++ b/tests/lib/contacts/localadressbook.php
@@ -78,6 +78,9 @@ class SimpleUserForTesting implements \OCP\IUser {
public function getHome() {
}
+ public function getBackendClassName() {
+ }
+
public function canChangeAvatar() {
}
diff --git a/tests/lib/user/user.php b/tests/lib/user/user.php
index a940d6eb627..e7085182fd6 100644
--- a/tests/lib/user/user.php
+++ b/tests/lib/user/user.php
@@ -215,6 +215,13 @@ class User extends \Test\TestCase {
$this->assertEquals('/home/foo', $user->getHome());
}
+ public function testGetBackendClassName() {
+ $user = new \OC\User\User('foo', new \OC_User_Dummy());
+ $this->assertEquals('OC_User_Dummy', $user->getBackendClassName());
+ $user = new \OC\User\User('foo', new \OC_User_Database());
+ $this->assertEquals('OC_User_Database', $user->getBackendClassName());
+ }
+
public function testGetHomeNotSupported() {
/**
* @var \OC_User_Backend | \PHPUnit_Framework_MockObject_MockObject $backend