nextcloud/apps/files_external/tests/Backend/BackendTest.php

93 lines
2.9 KiB
PHP
Raw Normal View History

2015-08-12 12:00:37 +03:00
<?php
/**
2016-07-21 17:49:16 +03:00
* @copyright Copyright (c) 2016, ownCloud, Inc.
*
* @author Christoph Wurst <christoph@winzerhof-wurst.at>
* @author Morris Jobke <hey@morrisjobke.de>
2016-01-12 17:02:16 +03:00
* @author Robin McCorkell <robin@mccorkell.me.uk>
* @author Roeland Jago Douma <roeland@famdouma.nl>
2015-08-12 12:00:37 +03:00
*
* @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/>
2015-08-12 12:00:37 +03:00
*
*/
namespace OCA\Files_External\Tests\Backend;
use OCA\Files_External\Lib\Backend\Backend;
use OCA\Files_External\Lib\StorageConfig;
2015-08-12 12:00:37 +03:00
class BackendTest extends \Test\TestCase {
public function testJsonSerialization() {
$backend = $this->getMockBuilder(Backend::class)
2015-08-12 12:00:37 +03:00
->setMethods(['jsonSerializeDefinition'])
->getMock();
$backend->expects($this->once())
->method('jsonSerializeDefinition')
->willReturn(['foo' => 'bar', 'name' => 'abc']);
$backend->setPriority(57);
$backend->addAuthScheme('foopass');
$backend->addAuthScheme('barauth');
$json = $backend->jsonSerialize();
$this->assertEquals('bar', $json['foo']);
$this->assertEquals('abc', $json['name']);
$this->assertEquals($json['name'], $json['backend']);
$this->assertEquals(57, $json['priority']);
$this->assertContains('foopass', $json['authSchemes']);
$this->assertContains('barauth', $json['authSchemes']);
}
public function validateStorageProvider() {
return [
[true, true],
[false, false],
];
}
/**
* @dataProvider validateStorageProvider
*/
public function testValidateStorage($expectedSuccess, $definitionSuccess) {
$backend = $this->getMockBuilder(Backend::class)
2015-08-12 12:00:37 +03:00
->setMethods(['validateStorageDefinition'])
->getMock();
$backend->expects($this->atMost(1))
->method('validateStorageDefinition')
->willReturn($definitionSuccess);
$storageConfig = $this->getMockBuilder(StorageConfig::class)
2015-08-12 12:00:37 +03:00
->disableOriginalConstructor()
->getMock();
$this->assertEquals($expectedSuccess, $backend->validateStorage($storageConfig));
}
public function testLegacyAuthMechanismCallback() {
$backend = new Backend();
$backend->setLegacyAuthMechanismCallback(function (array $params) {
2015-08-12 12:00:37 +03:00
if (isset($params['ping'])) {
return 'pong';
}
return 'foobar';
});
$this->assertEquals('pong', $backend->getLegacyAuthMechanism(['ping' => true]));
$this->assertEquals('foobar', $backend->getLegacyAuthMechanism(['other' => true]));
$this->assertEquals('foobar', $backend->getLegacyAuthMechanism());
}
}