diff options
author | Côme Chilliet <come.chilliet@nextcloud.com> | 2022-05-24 11:33:32 +0200 |
---|---|---|
committer | Côme Chilliet <come.chilliet@nextcloud.com> | 2022-05-24 12:18:19 +0200 |
commit | deac17b71e24b0c4b09795142921dc5e8c55dd6d (patch) | |
tree | 54f7bc6e72c105180ab94a2094bd50e4632bef23 /apps/encryption/tests/Crypto | |
parent | 45a75c631e638ccab8934584aedad834229d10a7 (diff) | |
download | nextcloud-server-deac17b71e24b0c4b09795142921dc5e8c55dd6d.tar.gz nextcloud-server-deac17b71e24b0c4b09795142921dc5e8c55dd6d.zip |
Remove at() matcher use from encryption tests
Signed-off-by: Côme Chilliet <come.chilliet@nextcloud.com>
Diffstat (limited to 'apps/encryption/tests/Crypto')
-rw-r--r-- | apps/encryption/tests/Crypto/EncryptAllTest.php | 35 |
1 files changed, 20 insertions, 15 deletions
diff --git a/apps/encryption/tests/Crypto/EncryptAllTest.php b/apps/encryption/tests/Crypto/EncryptAllTest.php index e5c10dd67e8..126dbec680e 100644 --- a/apps/encryption/tests/Crypto/EncryptAllTest.php +++ b/apps/encryption/tests/Crypto/EncryptAllTest.php @@ -166,9 +166,9 @@ class EncryptAllTest extends TestCase { ->getMock(); $this->util->expects($this->any())->method('isMasterKeyEnabled')->willReturn(false); - $encryptAll->expects($this->at(0))->method('createKeyPairs')->with(); - $encryptAll->expects($this->at(1))->method('outputPasswords')->with(); - $encryptAll->expects($this->at(2))->method('encryptAllUsersFiles')->with(); + $encryptAll->expects($this->once())->method('createKeyPairs')->with(); + $encryptAll->expects($this->once())->method('outputPasswords')->with(); + $encryptAll->expects($this->once())->method('encryptAllUsersFiles')->with(); $encryptAll->encryptAll($this->inputInterface, $this->outputInterface); } @@ -196,7 +196,7 @@ class EncryptAllTest extends TestCase { $this->util->expects($this->any())->method('isMasterKeyEnabled')->willReturn(true); $encryptAll->expects($this->never())->method('createKeyPairs'); $this->keyManager->expects($this->once())->method('validateMasterKey'); - $encryptAll->expects($this->at(0))->method('encryptAllUsersFiles')->with(); + $encryptAll->expects($this->once())->method('encryptAllUsersFiles')->with(); $encryptAll->expects($this->never())->method('outputPasswords'); $encryptAll->encryptAll($this->inputInterface, $this->outputInterface); @@ -277,8 +277,11 @@ class EncryptAllTest extends TestCase { $this->invokePrivate($encryptAll, 'output', [$this->outputInterface]); $this->invokePrivate($encryptAll, 'userPasswords', [['user1' => 'pwd1', 'user2' => 'pwd2']]); - $encryptAll->expects($this->at(0))->method('encryptUsersFiles')->with('user1'); - $encryptAll->expects($this->at(1))->method('encryptUsersFiles')->with('user2'); + $encryptAll->expects($this->exactly(2))->method('encryptUsersFiles') + ->withConsecutive( + ['user1'], + ['user2'], + ); $this->invokePrivate($encryptAll, 'encryptAllUsersFiles'); } @@ -305,16 +308,15 @@ class EncryptAllTest extends TestCase { $this->util->expects($this->any())->method('isMasterKeyEnabled')->willReturn(false); - $this->view->expects($this->at(0))->method('getDirectoryContent') - ->with('/user1/files')->willReturn( + $this->view->expects($this->exactly(2))->method('getDirectoryContent') + ->withConsecutive( + ['/user1/files'], + ['/user1/files/foo'], + )->willReturnOnConsecutiveCalls( [ ['name' => 'foo', 'type' => 'dir'], ['name' => 'bar', 'type' => 'file'], - ] - ); - - $this->view->expects($this->at(3))->method('getDirectoryContent') - ->with('/user1/files/foo')->willReturn( + ], [ ['name' => 'subfile', 'type' => 'file'] ] @@ -330,8 +332,11 @@ class EncryptAllTest extends TestCase { } ); - $encryptAll->expects($this->at(1))->method('encryptFile')->with('/user1/files/bar'); - $encryptAll->expects($this->at(2))->method('encryptFile')->with('/user1/files/foo/subfile'); + $encryptAll->expects($this->exactly(2))->method('encryptFile') + ->withConsecutive( + ['/user1/files/bar'], + ['/user1/files/foo/subfile'], + ); $this->outputInterface->expects($this->any()) ->method('getFormatter') |