aboutsummaryrefslogtreecommitdiffstats
path: root/apps/user_ldap/tests/LDAPProviderTest.php
diff options
context:
space:
mode:
authorRoeland Jago Douma <roeland@famdouma.nl>2019-11-27 15:27:18 +0100
committerRoeland Jago Douma <roeland@famdouma.nl>2019-11-27 15:27:18 +0100
commit3a7cf40aaa678bea1df143d2982d603b7a334eec (patch)
tree63c1e3ad7f7f401d14411a4d44c523632906afc9 /apps/user_ldap/tests/LDAPProviderTest.php
parent0568b012672d650c6b5a49e72c4028dde5463c60 (diff)
downloadnextcloud-server-3a7cf40aaa678bea1df143d2982d603b7a334eec.tar.gz
nextcloud-server-3a7cf40aaa678bea1df143d2982d603b7a334eec.zip
Mode to modern phpunit
Signed-off-by: Roeland Jago Douma <roeland@famdouma.nl>
Diffstat (limited to 'apps/user_ldap/tests/LDAPProviderTest.php')
-rw-r--r--apps/user_ldap/tests/LDAPProviderTest.php88
1 files changed, 44 insertions, 44 deletions
diff --git a/apps/user_ldap/tests/LDAPProviderTest.php b/apps/user_ldap/tests/LDAPProviderTest.php
index cbce73be295..03756e85cc5 100644
--- a/apps/user_ldap/tests/LDAPProviderTest.php
+++ b/apps/user_ldap/tests/LDAPProviderTest.php
@@ -103,11 +103,11 @@ class LDAPProviderTest extends \Test\TestCase {
return $factory->getLDAPProvider();
}
- /**
- * @expectedException \Exception
- * @expectedExceptionMessage User id not found in LDAP
- */
+
public function testGetUserDNUserIDNotFound() {
+ $this->expectException(\Exception::class);
+ $this->expectExceptionMessage('User id not found in LDAP');
+
$userBackend = $this->getMockBuilder('OCA\User_LDAP\User_LDAP')
->setMethods(['userExists'])
->disableOriginalConstructor()
@@ -142,11 +142,11 @@ class LDAPProviderTest extends \Test\TestCase {
$ldapProvider->getUserDN('existing_user'));
}
- /**
- * @expectedException \Exception
- * @expectedExceptionMessage Group id not found in LDAP
- */
+
public function testGetGroupDNGroupIDNotFound() {
+ $this->expectException(\Exception::class);
+ $this->expectExceptionMessage('Group id not found in LDAP');
+
$userBackend = $this->getMockBuilder('OCA\User_LDAP\User_LDAP')
->disableOriginalConstructor()
->getMock();
@@ -240,11 +240,11 @@ class LDAPProviderTest extends \Test\TestCase {
$ldapProvider->sanitizeDN('cn=existing_user,ou=Are Sufficient To,ou=Test,dc=example,dc=org'));
}
- /**
- * @expectedException \Exception
- * @expectedExceptionMessage User id not found in LDAP
- */
+
public function testGetLDAPConnectionUserIDNotFound() {
+ $this->expectException(\Exception::class);
+ $this->expectExceptionMessage('User id not found in LDAP');
+
$userBackend = $this->getMockBuilder('OCA\User_LDAP\User_LDAP')
->setMethods(['userExists'])
->disableOriginalConstructor()
@@ -275,11 +275,11 @@ class LDAPProviderTest extends \Test\TestCase {
$this->assertTrue($ldapProvider->getLDAPConnection('existing_user'));
}
- /**
- * @expectedException \Exception
- * @expectedExceptionMessage Group id not found in LDAP
- */
+
public function testGetGroupLDAPConnectionGroupIDNotFound() {
+ $this->expectException(\Exception::class);
+ $this->expectExceptionMessage('Group id not found in LDAP');
+
$userBackend = $this->getMockBuilder('OCA\User_LDAP\User_LDAP')
->disableOriginalConstructor()
->getMock();
@@ -321,11 +321,11 @@ class LDAPProviderTest extends \Test\TestCase {
$this->assertTrue($ldapProvider->getGroupLDAPConnection('existing_group'));
}
- /**
- * @expectedException \Exception
- * @expectedExceptionMessage User id not found in LDAP
- */
+
public function testGetLDAPBaseUsersUserIDNotFound() {
+ $this->expectException(\Exception::class);
+ $this->expectExceptionMessage('User id not found in LDAP');
+
$userBackend = $this->getMockBuilder('OCA\User_LDAP\User_LDAP')
->setMethods(['userExists'])
->disableOriginalConstructor()
@@ -384,11 +384,11 @@ class LDAPProviderTest extends \Test\TestCase {
$this->assertEquals($bases[1], $ldapProvider->getLDAPBaseUsers('existing_user'));
}
- /**
- * @expectedException \Exception
- * @expectedExceptionMessage User id not found in LDAP
- */
+
public function testGetLDAPBaseGroupsUserIDNotFound() {
+ $this->expectException(\Exception::class);
+ $this->expectExceptionMessage('User id not found in LDAP');
+
$userBackend = $this->getMockBuilder('OCA\User_LDAP\User_LDAP')
->setMethods(['userExists'])
->disableOriginalConstructor()
@@ -440,11 +440,11 @@ class LDAPProviderTest extends \Test\TestCase {
$this->assertEquals($bases[0], $ldapProvider->getLDAPBaseGroups('existing_user'));
}
- /**
- * @expectedException \Exception
- * @expectedExceptionMessage User id not found in LDAP
- */
+
public function testClearCacheUserIDNotFound() {
+ $this->expectException(\Exception::class);
+ $this->expectExceptionMessage('User id not found in LDAP');
+
$userBackend = $this->getMockBuilder('OCA\User_LDAP\User_LDAP')
->setMethods(['userExists'])
->disableOriginalConstructor()
@@ -479,11 +479,11 @@ class LDAPProviderTest extends \Test\TestCase {
$this->addToAssertionCount(1);
}
- /**
- * @expectedException \Exception
- * @expectedExceptionMessage Group id not found in LDAP
- */
+
public function testClearGroupCacheGroupIDNotFound() {
+ $this->expectException(\Exception::class);
+ $this->expectExceptionMessage('Group id not found in LDAP');
+
$userBackend = $this->getMockBuilder('OCA\User_LDAP\User_LDAP')
->disableOriginalConstructor()
->getMock();
@@ -565,11 +565,11 @@ class LDAPProviderTest extends \Test\TestCase {
$this->addToAssertionCount(1);
}
- /**
- * @expectedException \Exception
- * @expectedExceptionMessage User id not found in LDAP
- */
+
public function testGetLDAPDisplayNameFieldUserIDNotFound() {
+ $this->expectException(\Exception::class);
+ $this->expectExceptionMessage('User id not found in LDAP');
+
$userBackend = $this->getMockBuilder('OCA\User_LDAP\User_LDAP')
->setMethods(['userExists'])
->disableOriginalConstructor()
@@ -603,11 +603,11 @@ class LDAPProviderTest extends \Test\TestCase {
$this->assertEquals('displayName', $ldapProvider->getLDAPDisplayNameField('existing_user'));
}
- /**
- * @expectedException \Exception
- * @expectedExceptionMessage User id not found in LDAP
- */
+
public function testGetLDAPEmailFieldUserIDNotFound() {
+ $this->expectException(\Exception::class);
+ $this->expectExceptionMessage('User id not found in LDAP');
+
$userBackend = $this->getMockBuilder('OCA\User_LDAP\User_LDAP')
->setMethods(['userExists'])
->disableOriginalConstructor()
@@ -641,11 +641,11 @@ class LDAPProviderTest extends \Test\TestCase {
$this->assertEquals('mail', $ldapProvider->getLDAPEmailField('existing_user'));
}
- /**
- * @expectedException \Exception
- * @expectedExceptionMessage Group id not found in LDAP
- */
+
public function testGetLDAPGroupMemberAssocUserIDNotFound() {
+ $this->expectException(\Exception::class);
+ $this->expectExceptionMessage('Group id not found in LDAP');
+
$userBackend = $this->getMockBuilder('OCA\User_LDAP\User_LDAP')
->disableOriginalConstructor()
->getMock();