2015-07-20 13:59:04 +03:00
|
|
|
<?php
|
|
|
|
/**
|
|
|
|
* @author Joas Schilling <nickvergessen@owncloud.com>
|
|
|
|
*
|
|
|
|
* @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 Test\Session;
|
|
|
|
|
|
|
|
use OC\Session\CryptoSessionData;
|
2019-11-22 10:22:10 +03:00
|
|
|
use OCP\Security\ICrypto;
|
2015-07-20 13:59:04 +03:00
|
|
|
|
|
|
|
class CryptoSessionDataTest extends Session {
|
2020-08-11 22:32:18 +03:00
|
|
|
/** @var \PHPUnit\Framework\MockObject\MockObject|\OCP\Security\ICrypto */
|
2015-07-20 13:59:04 +03:00
|
|
|
protected $crypto;
|
|
|
|
|
|
|
|
/** @var \OCP\ISession */
|
|
|
|
protected $wrappedSession;
|
|
|
|
|
2019-11-21 18:40:38 +03:00
|
|
|
protected function setUp(): void {
|
2015-07-20 13:59:04 +03:00
|
|
|
parent::setUp();
|
|
|
|
|
|
|
|
$this->wrappedSession = new \OC\Session\Memory($this->getUniqueID());
|
2019-11-22 10:22:10 +03:00
|
|
|
$this->crypto = $this->createMock(ICrypto::class);
|
2015-07-20 13:59:04 +03:00
|
|
|
$this->crypto->expects($this->any())
|
|
|
|
->method('encrypt')
|
|
|
|
->willReturnCallback(function ($input) {
|
|
|
|
return '#' . $input . '#';
|
|
|
|
});
|
|
|
|
$this->crypto->expects($this->any())
|
|
|
|
->method('decrypt')
|
|
|
|
->willReturnCallback(function ($input) {
|
2019-11-22 10:22:10 +03:00
|
|
|
if ($input === '') {
|
|
|
|
return '';
|
|
|
|
}
|
2015-07-20 13:59:04 +03:00
|
|
|
return substr($input, 1, -1);
|
|
|
|
});
|
|
|
|
|
|
|
|
$this->instance = new CryptoSessionData($this->wrappedSession, $this->crypto, 'PASS');
|
|
|
|
}
|
|
|
|
}
|