2015-08-24 18:13:16 +03:00
|
|
|
<?php
|
|
|
|
/**
|
|
|
|
* @author Robin McCorkell <rmccorkell@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/>
|
|
|
|
*
|
|
|
|
*/
|
|
|
|
|
2016-05-19 10:02:58 +03:00
|
|
|
namespace Test\Security;
|
|
|
|
|
2016-10-28 14:48:58 +03:00
|
|
|
use OC\SystemConfig;
|
|
|
|
use OCP\ILogger;
|
2015-08-24 18:13:16 +03:00
|
|
|
use \OCP\Security\ICrypto;
|
|
|
|
use \OCP\IDBConnection;
|
|
|
|
use \OC\Security\CredentialsManager;
|
|
|
|
|
|
|
|
class CredentialsManagerTest extends \Test\TestCase {
|
|
|
|
|
|
|
|
/** @var ICrypto */
|
|
|
|
protected $crypto;
|
|
|
|
|
|
|
|
/** @var IDBConnection */
|
|
|
|
protected $dbConnection;
|
|
|
|
|
|
|
|
/** @var CredentialsManager */
|
|
|
|
protected $manager;
|
|
|
|
|
|
|
|
protected function setUp() {
|
|
|
|
parent::setUp();
|
2016-09-07 21:20:08 +03:00
|
|
|
$this->crypto = $this->createMock(ICrypto::class);
|
2015-08-24 18:13:16 +03:00
|
|
|
$this->dbConnection = $this->getMockBuilder('\OC\DB\Connection')
|
|
|
|
->disableOriginalConstructor()
|
|
|
|
->getMock();
|
|
|
|
$this->manager = new CredentialsManager($this->crypto, $this->dbConnection);
|
|
|
|
}
|
|
|
|
|
2016-10-28 14:48:58 +03:00
|
|
|
private function getQueryResult($row) {
|
2016-01-15 17:18:55 +03:00
|
|
|
$result = $this->getMockBuilder('\Doctrine\DBAL\Driver\Statement')
|
|
|
|
->disableOriginalConstructor()
|
|
|
|
->getMock();
|
|
|
|
|
|
|
|
$result->expects($this->any())
|
|
|
|
->method('fetch')
|
|
|
|
->will($this->returnValue($row));
|
|
|
|
|
|
|
|
return $result;
|
|
|
|
}
|
|
|
|
|
2015-08-24 18:13:16 +03:00
|
|
|
public function testStore() {
|
|
|
|
$userId = 'abc';
|
|
|
|
$identifier = 'foo';
|
|
|
|
$credentials = 'bar';
|
|
|
|
|
|
|
|
$this->crypto->expects($this->once())
|
|
|
|
->method('encrypt')
|
|
|
|
->with(json_encode($credentials))
|
|
|
|
->willReturn('baz');
|
|
|
|
|
|
|
|
$this->dbConnection->expects($this->once())
|
|
|
|
->method('setValues')
|
|
|
|
->with(CredentialsManager::DB_TABLE,
|
|
|
|
['user' => $userId, 'identifier' => $identifier],
|
|
|
|
['credentials' => 'baz']
|
|
|
|
);
|
|
|
|
|
|
|
|
$this->manager->store($userId, $identifier, $credentials);
|
|
|
|
}
|
|
|
|
|
|
|
|
public function testRetrieve() {
|
|
|
|
$userId = 'abc';
|
|
|
|
$identifier = 'foo';
|
|
|
|
|
|
|
|
$this->crypto->expects($this->once())
|
|
|
|
->method('decrypt')
|
|
|
|
->with('baz')
|
|
|
|
->willReturn(json_encode('bar'));
|
|
|
|
|
|
|
|
$qb = $this->getMockBuilder('\OC\DB\QueryBuilder\QueryBuilder')
|
2016-10-28 14:48:58 +03:00
|
|
|
->setConstructorArgs([
|
|
|
|
$this->dbConnection,
|
|
|
|
$this->createMock(SystemConfig::class),
|
|
|
|
$this->createMock(ILogger::class),
|
|
|
|
])
|
2015-08-24 18:13:16 +03:00
|
|
|
->setMethods(['execute'])
|
|
|
|
->getMock();
|
|
|
|
$qb->expects($this->once())
|
|
|
|
->method('execute')
|
2016-10-28 14:48:58 +03:00
|
|
|
->willReturn($this->getQueryResult(['credentials' => 'baz']));
|
2015-08-24 18:13:16 +03:00
|
|
|
|
|
|
|
$this->dbConnection->expects($this->once())
|
|
|
|
->method('getQueryBuilder')
|
|
|
|
->willReturn($qb);
|
|
|
|
|
|
|
|
$this->manager->retrieve($userId, $identifier);
|
|
|
|
}
|
|
|
|
|
|
|
|
}
|