You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.

CryptoSessionDataTest.php 1.6KB

1234567891011121314151617181920212223242526272829303132333435363738394041424344454647484950515253
  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. class CryptoSessionDataTest extends Session {
  24. /** @var \PHPUnit_Framework_MockObject_MockObject|\OCP\Security\ICrypto */
  25. protected $crypto;
  26. /** @var \OCP\ISession */
  27. protected $wrappedSession;
  28. protected function setUp() {
  29. parent::setUp();
  30. $this->wrappedSession = new \OC\Session\Memory($this->getUniqueID());
  31. $this->crypto = $this->getMockBuilder('OCP\Security\ICrypto')
  32. ->disableOriginalConstructor()
  33. ->getMock();
  34. $this->crypto->expects($this->any())
  35. ->method('encrypt')
  36. ->willReturnCallback(function ($input) {
  37. return '#' . $input . '#';
  38. });
  39. $this->crypto->expects($this->any())
  40. ->method('decrypt')
  41. ->willReturnCallback(function ($input) {
  42. return substr($input, 1, -1);
  43. });
  44. $this->instance = new CryptoSessionData($this->wrappedSession, $this->crypto, 'PASS');
  45. }
  46. }