1234567891011121314151617181920212223242526272829303132333435363738394041 |
- <?php
- namespace Test\Session;
- use OC\Session\CryptoSessionData;
- use OCP\Security\ICrypto;
- class CryptoSessionDataTest extends Session {
-
- protected $crypto;
-
- protected $wrappedSession;
- protected function setUp(): void {
- parent::setUp();
- $this->wrappedSession = new \OC\Session\Memory();
- $this->crypto = $this->createMock(ICrypto::class);
- $this->crypto->expects($this->any())
- ->method('encrypt')
- ->willReturnCallback(function ($input) {
- return '#' . $input . '#';
- });
- $this->crypto->expects($this->any())
- ->method('decrypt')
- ->willReturnCallback(function ($input) {
- if ($input === '') {
- return '';
- }
- return substr($input, 1, -1);
- });
- $this->instance = new CryptoSessionData($this->wrappedSession, $this->crypto, 'PASS');
- }
- }
|