Skip to content
GitLab
Explore
Sign in
Primary navigation
Search or go to…
Project
Nextcloud
Manage
Activity
Members
Labels
Plan
Issues
Issue boards
Milestones
Code
Merge requests
Repository
Branches
Commits
Tags
Repository graph
Compare revisions
Build
Pipelines
Jobs
Pipeline schedules
Artifacts
Deploy
Releases
Container Registry
Model registry
Monitor
Service Desk
Analyze
Model experiments
Help
Help
Support
GitLab documentation
Compare GitLab plans
Community forum
Contribute to GitLab
Provide feedback
Terms and privacy
Keyboard shortcuts
?
Snippets
Groups
Projects
Show more breadcrumbs
TeDomum
Nextcloud
Commits
979612fa
Unverified
Commit
979612fa
authored
8 years ago
by
Arthur Schiwon
Browse files
Options
Downloads
Patches
Plain Diff
get rid of test warnings
Signed-off-by:
Arthur Schiwon
<
blizzz@arthur-schiwon.de
>
parent
a0b34dfd
No related branches found
No related tags found
No related merge requests found
Changes
1
Hide whitespace changes
Inline
Side-by-side
Showing
1 changed file
apps/user_ldap/tests/User_LDAPTest.php
+22
-21
22 additions, 21 deletions
apps/user_ldap/tests/User_LDAPTest.php
with
22 additions
and
21 deletions
apps/user_ldap/tests/User_LDAPTest.php
+
22
−
21
View file @
979612fa
...
@@ -28,15 +28,20 @@
...
@@ -28,15 +28,20 @@
namespace
OCA\User_LDAP\Tests
;
namespace
OCA\User_LDAP\Tests
;
use
OCA\User_LDAP
\Access
;
use
OCA\User_LDAP
\Connection
;
use
OCA\User_LDAP
\FilesystemHelper
;
use
OCA\User_LDAP
\FilesystemHelper
;
use
OCA\User_LDAP
\Helper
;
use
OCA\User_LDAP
\ILDAPWrapper
;
use
OCA\User_LDAP
\ILDAPWrapper
;
use
OCA\User_LDAP
\LogWrapper
;
use
OCA\User_LDAP
\LogWrapper
;
use
OCA\User_LDAP
\User\Manager
;
use
OCA\User_LDAP\User_LDAP
as
UserLDAP
;
use
OCA\User_LDAP\User_LDAP
as
UserLDAP
;
use
OCP\IAvatarManager
;
use
OCP\IAvatarManager
;
use
OCP\IConfig
;
use
OCP\IConfig
;
use
OCP\IDBConnection
;
use
OCP\IDBConnection
;
use
OCP\Image
;
use
OCP\Image
;
use
OCP\IUserManager
;
use
OCP\IUserManager
;
use
Test\TestCase
;
/**
/**
* Class Test_User_Ldap_Direct
* Class Test_User_Ldap_Direct
...
@@ -45,7 +50,7 @@ use OCP\IUserManager;
...
@@ -45,7 +50,7 @@ use OCP\IUserManager;
*
*
* @package OCA\User_LDAP\Tests
* @package OCA\User_LDAP\Tests
*/
*/
class
User_LDAPTest
extends
\Test\
TestCase
{
class
User_LDAPTest
extends
TestCase
{
protected
$backend
;
protected
$backend
;
protected
$access
;
protected
$access
;
protected
$configMock
;
protected
$configMock
;
...
@@ -58,23 +63,17 @@ class User_LDAPTest extends \Test\TestCase {
...
@@ -58,23 +63,17 @@ class User_LDAPTest extends \Test\TestCase {
}
}
private
function
getAccessMock
()
{
private
function
getAccessMock
()
{
static
$conMethods
;
static
$accMethods
;
static
$accMethods
;
static
$uMethods
;
if
(
is_null
(
$conMethods
)
||
is_null
(
$accMethods
))
{
if
(
is_null
(
$accMethods
))
{
$conMethods
=
get_class_methods
(
'\OCA\User_LDAP\Connection'
);
$accMethods
=
get_class_methods
(
Access
::
class
);
$accMethods
=
get_class_methods
(
'\OCA\User_LDAP\Access'
);
unset
(
$accMethods
[
array_search
(
'getConnection'
,
$accMethods
)]);
unset
(
$accMethods
[
array_search
(
'getConnection'
,
$accMethods
)]);
$uMethods
=
get_class_methods
(
'\OCA\User_LDAP\User\User'
);
unset
(
$uMethods
[
array_search
(
'getUsername'
,
$uMethods
)]);
unset
(
$uMethods
[
array_search
(
'getDN'
,
$uMethods
)]);
unset
(
$uMethods
[
array_search
(
'__construct'
,
$uMethods
)]);
}
}
$lw
=
$this
->
createMock
(
ILDAPWrapper
::
class
);
$lw
=
$this
->
createMock
(
ILDAPWrapper
::
class
);
$connector
=
$this
->
getMock
(
'\OCA\User_LDAP\Connection'
,
$connector
=
$this
->
getMockBuilder
(
Connection
::
class
)
$conMethods
,
->
setMethodsExcept
([
'getConnection'
])
array
(
$lw
,
null
,
null
));
->
setConstructorArgs
([
$lw
,
null
,
null
])
->
getMock
();
$this
->
configMock
=
$this
->
createMock
(
IConfig
::
class
);
$this
->
configMock
=
$this
->
createMock
(
IConfig
::
class
);
...
@@ -82,7 +81,8 @@ class User_LDAPTest extends \Test\TestCase {
...
@@ -82,7 +81,8 @@ class User_LDAPTest extends \Test\TestCase {
->
disableOriginalConstructor
()
->
disableOriginalConstructor
()
->
getMock
();
->
getMock
();
$um
=
$this
->
getMockBuilder
(
'\OCA\User_LDAP\User\Manager'
)
/** @var Manager|\PHPUnit_Framework_MockObject_MockObject $um */
$um
=
$this
->
getMockBuilder
(
Manager
::
class
)
->
setMethods
([
'getDeletedUser'
])
->
setMethods
([
'getDeletedUser'
])
->
setConstructorArgs
([
->
setConstructorArgs
([
$this
->
configMock
,
$this
->
configMock
,
...
@@ -99,11 +99,12 @@ class User_LDAPTest extends \Test\TestCase {
...
@@ -99,11 +99,12 @@ class User_LDAPTest extends \Test\TestCase {
->
method
(
'getDeletedUser'
)
->
method
(
'getDeletedUser'
)
->
will
(
$this
->
returnValue
(
$offlineUser
));
->
will
(
$this
->
returnValue
(
$offlineUser
));
$helper
=
new
\OCA\User_LDAP\Helper
();
$helper
=
new
Helper
();
$access
=
$this
->
getMock
(
'\OCA\User_LDAP\Access'
,
$access
=
$this
->
getMockBuilder
(
Access
::
class
)
$accMethods
,
->
setMethodsExcept
([
'getConnection'
])
array
(
$connector
,
$lw
,
$um
,
$helper
));
->
setConstructorArgs
([
$connector
,
$lw
,
$um
,
$helper
])
->
getMock
();
$um
->
setLdapAccess
(
$access
);
$um
->
setLdapAccess
(
$access
);
...
@@ -135,7 +136,7 @@ class User_LDAPTest extends \Test\TestCase {
...
@@ -135,7 +136,7 @@ class User_LDAPTest extends \Test\TestCase {
/**
/**
* Prepares the Access mock for checkPassword tests
* Prepares the Access mock for checkPassword tests
* @param
\OCA\User_LDAP\
Access $access mock
* @param Access $access mock
* @param bool $noDisplayName
* @param bool $noDisplayName
* @return void
* @return void
*/
*/
...
@@ -304,7 +305,7 @@ class User_LDAPTest extends \Test\TestCase {
...
@@ -304,7 +305,7 @@ class User_LDAPTest extends \Test\TestCase {
/**
/**
* Prepares the Access mock for getUsers tests
* Prepares the Access mock for getUsers tests
* @param
\OCA\User_LDAP\
Access $access mock
* @param Access $access mock
* @return void
* @return void
*/
*/
private
function
prepareAccessForGetUsers
(
&
$access
)
{
private
function
prepareAccessForGetUsers
(
&
$access
)
{
...
...
This diff is collapsed.
Click to expand it.
Preview
0%
Loading
Try again
or
attach a new file
.
Cancel
You are about to add
0
people
to the discussion. Proceed with caution.
Finish editing this message first!
Save comment
Cancel
Please
register
or
sign in
to comment