Skip to content
GitLab
Explore
Sign in
Primary navigation
Search or go to…
Project
O
our_own_cloud_project
Manage
Activity
Members
Labels
Plan
Issues
Issue boards
Milestones
Wiki
Code
Merge requests
Repository
Branches
Commits
Tags
Repository graph
Compare revisions
Deploy
Releases
Model registry
Monitor
Incidents
Analyze
Value stream analytics
Contributor analytics
Repository analytics
Model experiments
Help
Help
Support
GitLab documentation
Compare GitLab plans
Community forum
Contribute to GitLab
Provide feedback
Keyboard shortcuts
?
Snippets
Groups
Projects
Show more breadcrumbs
die_coolen_jungs
our_own_cloud_project
Commits
d637bffa
Commit
d637bffa
authored
9 years ago
by
Clark Tomlinson
Committed by
Thomas Müller
9 years ago
Browse files
Options
Downloads
Patches
Plain Diff
adding user setup test and adding 4 tests to keymanager
parent
28c80179
No related branches found
Branches containing commit
No related tags found
No related merge requests found
Changes
2
Hide whitespace changes
Inline
Side-by-side
Showing
2 changed files
apps/encryption/tests/lib/KeyManagerTest.php
+63
-13
63 additions, 13 deletions
apps/encryption/tests/lib/KeyManagerTest.php
apps/encryption/tests/lib/users/SetupTest.php
+81
-0
81 additions, 0 deletions
apps/encryption/tests/lib/users/SetupTest.php
with
144 additions
and
13 deletions
apps/encryption/tests/lib/KeyManagerTest.php
+
63
−
13
View file @
d637bffa
...
...
@@ -67,7 +67,7 @@ class KeyManagerTest extends TestCase {
$this
->
utilMock
=
$this
->
getMockBuilder
(
'OCA\Encryption\Util'
)
->
disableOriginalConstructor
()
->
getMock
();
$this
->
instance
=
new
KeyManager
(
$this
->
keyStorageMock
,
$this
->
cryptMock
,
...
...
@@ -83,7 +83,7 @@ class KeyManagerTest extends TestCase {
->
method
(
'deleteFileKey'
)
->
with
(
$this
->
equalTo
(
'/path'
),
$this
->
equalTo
(
'keyId.shareKey'
))
->
willReturn
(
true
);
$this
->
assertTrue
(
$this
->
instance
->
deleteShareKey
(
'/path'
,
'keyId'
)
);
...
...
@@ -94,7 +94,7 @@ class KeyManagerTest extends TestCase {
->
method
(
'getUserKey'
)
->
with
(
$this
->
equalTo
(
$this
->
userId
),
$this
->
equalTo
(
'privateKey'
))
->
willReturn
(
'privateKey'
);
$this
->
assertSame
(
'privateKey'
,
$this
->
instance
->
getPrivateKey
(
$this
->
userId
)
...
...
@@ -106,7 +106,7 @@ class KeyManagerTest extends TestCase {
->
method
(
'getUserKey'
)
->
with
(
$this
->
equalTo
(
$this
->
userId
),
$this
->
equalTo
(
'publicKey'
))
->
willReturn
(
'publicKey'
);
$this
->
assertSame
(
'publicKey'
,
$this
->
instance
->
getPublicKey
(
$this
->
userId
)
...
...
@@ -118,7 +118,7 @@ class KeyManagerTest extends TestCase {
->
method
(
'getSystemUserKey'
)
->
with
(
$this
->
equalTo
(
$this
->
systemKeyId
.
'.publicKey'
))
->
willReturn
(
'recoveryKey'
);
$this
->
assertTrue
(
$this
->
instance
->
recoveryKeyExists
());
}
...
...
@@ -144,7 +144,7 @@ class KeyManagerTest extends TestCase {
$this
->
equalTo
(
'publicKey'
),
$this
->
equalTo
(
'key'
))
->
willReturn
(
true
);
$this
->
assertTrue
(
$this
->
instance
->
setPublicKey
(
$this
->
userId
,
'key'
)
...
...
@@ -159,7 +159,7 @@ class KeyManagerTest extends TestCase {
$this
->
equalTo
(
'privateKey'
),
$this
->
equalTo
(
'key'
))
->
willReturn
(
true
);
$this
->
assertTrue
(
$this
->
instance
->
setPrivateKey
(
$this
->
userId
,
'key'
)
...
...
@@ -171,7 +171,7 @@ class KeyManagerTest extends TestCase {
->
method
(
'getUserKey'
)
->
with
(
$this
->
equalTo
(
$this
->
userId
),
$this
->
anything
())
->
willReturn
(
'key'
);
$this
->
assertTrue
(
$this
->
instance
->
userHasKeys
(
$this
->
userId
)
...
...
@@ -187,7 +187,7 @@ class KeyManagerTest extends TestCase {
->
method
(
'decryptPrivateKey'
)
->
with
(
$this
->
equalTo
(
'privateKey'
),
$this
->
equalTo
(
'pass'
))
->
willReturn
(
'decryptedPrivateKey'
);
$this
->
assertTrue
(
$this
->
instance
->
init
(
$this
->
userId
,
'pass'
)
...
...
@@ -203,10 +203,11 @@ class KeyManagerTest extends TestCase {
->
method
(
'symmetricEncryptFileContent'
)
->
with
(
$this
->
equalTo
(
'privateKey'
),
$this
->
equalTo
(
'pass'
))
->
willReturn
(
'decryptedPrivateKey'
);
$this
->
assertTrue
(
$this
->
instance
->
setRecoveryKey
(
'pass'
,
array
(
'publicKey'
=>
'publicKey'
,
'privateKey'
=>
'privateKey'
))
$this
->
instance
->
setRecoveryKey
(
'pass'
,
array
(
'publicKey'
=>
'publicKey'
,
'privateKey'
=>
'privateKey'
))
);
}
...
...
@@ -215,7 +216,7 @@ class KeyManagerTest extends TestCase {
->
method
(
'setSystemUserKey'
)
->
with
(
$this
->
equalTo
(
'keyId.privateKey'
),
$this
->
equalTo
(
'key'
))
->
willReturn
(
true
);
$this
->
assertTrue
(
$this
->
instance
->
setSystemPrivateKey
(
'keyId'
,
'key'
)
...
...
@@ -227,10 +228,59 @@ class KeyManagerTest extends TestCase {
->
method
(
'getSystemUserKey'
)
->
with
(
$this
->
equalTo
(
'keyId.privateKey'
))
->
willReturn
(
'systemPrivateKey'
);
$this
->
assertSame
(
'systemPrivateKey'
,
$this
->
instance
->
getSystemPrivateKey
(
'keyId'
)
);
}
public
function
testGetEncryptedFileKey
()
{
$this
->
keyStorageMock
->
expects
(
$this
->
once
())
->
method
(
'getFileKey'
)
->
with
(
'/'
,
'fileKey'
)
->
willReturn
(
true
);
$this
->
assertTrue
(
$this
->
instance
->
getEncryptedFileKey
(
'/'
));
}
public
function
testGetFileKey
()
{
$this
->
keyStorageMock
->
expects
(
$this
->
exactly
(
4
))
->
method
(
'getFileKey'
)
->
willReturn
(
true
);
$this
->
keyStorageMock
->
expects
(
$this
->
once
())
->
method
(
'getSystemUserKey'
)
->
willReturn
(
true
);
$this
->
cryptMock
->
expects
(
$this
->
once
())
->
method
(
'symmetricDecryptFileContent'
)
->
willReturn
(
true
);
$this
->
cryptMock
->
expects
(
$this
->
once
())
->
method
(
'multiKeyDecrypt'
)
->
willReturn
(
true
);
$this
->
assertTrue
(
$this
->
instance
->
getFileKey
(
'/'
,
null
));
$this
->
assertEmpty
(
$this
->
instance
->
getFileKey
(
'/'
,
$this
->
userId
));
}
public
function
testDeletePrivateKey
()
{
$this
->
keyStorageMock
->
expects
(
$this
->
once
())
->
method
(
'deleteUserKey'
)
->
with
(
'user1'
,
'privateKey'
)
->
willReturn
(
true
);
$this
->
assertTrue
(
\Test_Helper
::
invokePrivate
(
$this
->
instance
,
'deletePrivateKey'
,
[
$this
->
userId
]));
}
public
function
testDeleteAllFileKeys
()
{
$this
->
keyStorageMock
->
expects
(
$this
->
once
())
->
method
(
'deleteAllFileKeys'
)
->
willReturn
(
true
);
$this
->
assertTrue
(
$this
->
instance
->
deleteAllFileKeys
(
'/'
));
}
}
This diff is collapsed.
Click to expand it.
apps/encryption/tests/lib/users/SetupTest.php
0 → 100644
+
81
−
0
View file @
d637bffa
<?php
/**
* @author Clark Tomlinson <clark@owncloud.com>
* @since 4/6/15, 11:50 AM
* @copyright Copyright (c) 2015, ownCloud, Inc.
* @license AGPL-3.0
*
* This code is free software: you can redistribute it and/or modify
* it under the terms of the GNU Affero General Public License, version 3,
* as published by the Free Software Foundation.
*
* This program is distributed in the hope that it will be useful,
* but WITHOUT ANY WARRANTY; without even the implied warranty of
* MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
* GNU Affero General Public License for more details.
*
* You should have received a copy of the GNU Affero General Public License, version 3,
* along with this program. If not, see <http://www.gnu.org/licenses/>
*
*/
namespace
OCA\Encryption\Tests\Users
;
use
OCA\Encryption\Users\Setup
;
use
Test\TestCase
;
class
SetupTest
extends
TestCase
{
/**
* @var \PHPUnit_Framework_MockObject_MockObject
*/
private
$keyManagerMock
;
/**
* @var \PHPUnit_Framework_MockObject_MockObject
*/
private
$cryptMock
;
/**
* @var Setup
*/
private
$instance
;
public
function
testSetupServerSide
()
{
$this
->
keyManagerMock
->
expects
(
$this
->
exactly
(
2
))
->
method
(
'userHasKeys'
)
->
with
(
'admin'
)
->
willReturnOnConsecutiveCalls
(
true
,
false
);
$this
->
assertTrue
(
$this
->
instance
->
setupServerSide
(
'admin'
,
'password'
));
$this
->
keyManagerMock
->
expects
(
$this
->
once
())
->
method
(
'storeKeyPair'
)
->
with
(
'admin'
,
'password'
)
->
willReturn
(
false
);
$this
->
assertFalse
(
$this
->
instance
->
setupServerSide
(
'admin'
,
'password'
));
}
protected
function
setUp
()
{
parent
::
setUp
();
$logMock
=
$this
->
getMock
(
'OCP\ILogger'
);
$userSessionMock
=
$this
->
getMockBuilder
(
'OCP\IUserSession'
)
->
disableOriginalConstructor
()
->
getMock
();
$this
->
cryptMock
=
$this
->
getMockBuilder
(
'OCA\Encryption\Crypto\Crypt'
)
->
disableOriginalConstructor
()
->
getMock
();
$this
->
keyManagerMock
=
$this
->
getMockBuilder
(
'OCA\Encryption\KeyManager'
)
->
disableOriginalConstructor
()
->
getMock
();
$this
->
instance
=
new
Setup
(
$logMock
,
$userSessionMock
,
$this
->
cryptMock
,
$this
->
keyManagerMock
);
}
}
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