nextcloud/apps/dav/tests/unit/Connector/Sabre/MaintenancePluginTest.php

63 lines
1.7 KiB
PHP
Raw Normal View History

2015-06-29 15:16:27 +03:00
<?php
/**
2016-07-21 17:49:16 +03:00
* @copyright Copyright (c) 2016, ownCloud, Inc.
*
* @author Joas Schilling <coding@schilljs.com>
* @author Roeland Jago Douma <roeland@famdouma.nl>
2015-06-29 15:16:27 +03:00
* @author Thomas Müller <thomas.mueller@tmit.eu>
*
* @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-25 17:04:15 +03:00
namespace OCA\DAV\Tests\unit\Connector\Sabre;
2015-06-29 15:16:27 +03:00
use OCA\DAV\Connector\Sabre\MaintenancePlugin;
2015-06-29 15:16:27 +03:00
use Test\TestCase;
use OCP\IConfig;
/**
* Class MaintenancePluginTest
*
2016-05-25 17:04:15 +03:00
* @package OCA\DAV\Tests\unit\Connector\Sabre
2015-06-29 15:16:27 +03:00
*/
class MaintenancePluginTest extends TestCase {
/** @var IConfig */
private $config;
/** @var MaintenancePlugin */
private $maintenancePlugin;
public function setUp() {
parent::setUp();
$this->config = $this->getMockBuilder('\OCP\IConfig')->getMock();
2015-06-29 15:16:27 +03:00
$this->maintenancePlugin = new MaintenancePlugin($this->config);
}
/**
* @expectedException \Sabre\DAV\Exception\ServiceUnavailable
* @expectedExceptionMessage System in maintenance mode.
2015-06-29 15:16:27 +03:00
*/
public function testMaintenanceMode() {
$this->config
->expects($this->exactly(1))
->method('getSystemValue')
->will($this->returnValue(true));
2015-06-29 15:16:27 +03:00
$this->maintenancePlugin->checkMaintenanceMode();
}
}