CryptoWrappingTest.php 2.2 KB

1234567891011121314151617181920212223242526272829303132333435363738394041424344454647484950515253545556575859606162636465666768697071727374
  1. <?php
  2. /**
  3. * @author Joas Schilling <nickvergessen@owncloud.com>
  4. *
  5. * @copyright Copyright (c) 2015, ownCloud, Inc.
  6. * @license AGPL-3.0
  7. *
  8. * This code is free software: you can redistribute it and/or modify
  9. * it under the terms of the GNU Affero General Public License, version 3,
  10. * as published by the Free Software Foundation.
  11. *
  12. * This program is distributed in the hope that it will be useful,
  13. * but WITHOUT ANY WARRANTY; without even the implied warranty of
  14. * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
  15. * GNU Affero General Public License for more details.
  16. *
  17. * You should have received a copy of the GNU Affero General Public License, version 3,
  18. * along with this program. If not, see <http://www.gnu.org/licenses/>
  19. *
  20. */
  21. namespace Test\Session;
  22. use OC\Session\CryptoSessionData;
  23. use OCP\ISession;
  24. use Test\TestCase;
  25. class CryptoWrappingTest extends TestCase {
  26. /** @var \PHPUnit_Framework_MockObject_MockObject|\OCP\Security\ICrypto */
  27. protected $crypto;
  28. /** @var \PHPUnit_Framework_MockObject_MockObject|\OCP\ISession */
  29. protected $wrappedSession;
  30. /** @var \OC\Session\CryptoSessionData */
  31. protected $instance;
  32. protected function setUp() {
  33. parent::setUp();
  34. $this->wrappedSession = $this->getMockBuilder(ISession::class)
  35. ->disableOriginalConstructor()
  36. ->getMock();
  37. $this->crypto = $this->getMockBuilder('OCP\Security\ICrypto')
  38. ->disableOriginalConstructor()
  39. ->getMock();
  40. $this->crypto->expects($this->any())
  41. ->method('encrypt')
  42. ->willReturnCallback(function ($input) {
  43. return $input;
  44. });
  45. $this->crypto->expects($this->any())
  46. ->method('decrypt')
  47. ->willReturnCallback(function ($input) {
  48. return substr($input, 1, -1);
  49. });
  50. $this->instance = new CryptoSessionData($this->wrappedSession, $this->crypto, 'PASS');
  51. }
  52. public function testUnwrappingGet() {
  53. $unencryptedValue = 'foobar';
  54. $encryptedValue = $this->crypto->encrypt($unencryptedValue);
  55. $this->wrappedSession->expects($this->once())
  56. ->method('get')
  57. ->with('encrypted_session_data')
  58. ->willReturnCallback(function () use ($encryptedValue) {
  59. return $encryptedValue;
  60. });
  61. $this->assertSame($unencryptedValue, $this->wrappedSession->get('encrypted_session_data'));
  62. }
  63. }