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;
|
2017-10-26 14:46:16 +03:00
|
|
|
use OCP\ISession;
|
2015-07-20 13:59:04 +03:00
|
|
|
use Test\TestCase;
|
|
|
|
|
|
|
|
class CryptoWrappingTest extends TestCase {
|
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;
|
|
|
|
|
2020-08-11 22:32:18 +03:00
|
|
|
/** @var \PHPUnit\Framework\MockObject\MockObject|\OCP\ISession */
|
2015-07-20 13:59:04 +03:00
|
|
|
protected $wrappedSession;
|
|
|
|
|
|
|
|
/** @var \OC\Session\CryptoSessionData */
|
|
|
|
protected $instance;
|
|
|
|
|
2019-11-21 18:40:38 +03:00
|
|
|
protected function setUp(): void {
|
2015-07-20 13:59:04 +03:00
|
|
|
parent::setUp();
|
|
|
|
|
2017-10-26 14:46:16 +03:00
|
|
|
$this->wrappedSession = $this->getMockBuilder(ISession::class)
|
2015-07-20 13:59:04 +03:00
|
|
|
->disableOriginalConstructor()
|
|
|
|
->getMock();
|
|
|
|
$this->crypto = $this->getMockBuilder('OCP\Security\ICrypto')
|
|
|
|
->disableOriginalConstructor()
|
|
|
|
->getMock();
|
|
|
|
$this->crypto->expects($this->any())
|
|
|
|
->method('encrypt')
|
|
|
|
->willReturnCallback(function ($input) {
|
2015-08-21 19:27:52 +03:00
|
|
|
return $input;
|
2015-07-20 13:59:04 +03:00
|
|
|
});
|
|
|
|
$this->crypto->expects($this->any())
|
|
|
|
->method('decrypt')
|
|
|
|
->willReturnCallback(function ($input) {
|
2019-11-22 11:52:58 +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');
|
|
|
|
}
|
|
|
|
|
|
|
|
public function testUnwrappingGet() {
|
|
|
|
$unencryptedValue = 'foobar';
|
|
|
|
$encryptedValue = $this->crypto->encrypt($unencryptedValue);
|
|
|
|
|
|
|
|
$this->wrappedSession->expects($this->once())
|
|
|
|
->method('get')
|
2015-09-08 22:16:11 +03:00
|
|
|
->with('encrypted_session_data')
|
2015-07-20 13:59:04 +03:00
|
|
|
->willReturnCallback(function () use ($encryptedValue) {
|
|
|
|
return $encryptedValue;
|
|
|
|
});
|
2015-08-21 19:27:52 +03:00
|
|
|
|
2015-09-08 22:16:11 +03:00
|
|
|
$this->assertSame($unencryptedValue, $this->wrappedSession->get('encrypted_session_data'));
|
2015-07-20 13:59:04 +03:00
|
|
|
}
|
|
|
|
}
|