summaryrefslogtreecommitdiffstats
path: root/apps/encryption/tests
diff options
context:
space:
mode:
authorBjoern Schiessle <schiessle@owncloud.com>2015-05-27 11:10:06 +0200
committerBjoern Schiessle <schiessle@owncloud.com>2015-05-27 21:00:02 +0200
commit68db3059eec904e90c41a8452799222e21c9c460 (patch)
treec4ab392d196eb3103016bd2f1469d99ee4372e07 /apps/encryption/tests
parent5549641f1f977ab2b105b8f9d7b8c6829c0e6d02 (diff)
downloadnextcloud-server-68db3059eec904e90c41a8452799222e21c9c460.tar.gz
nextcloud-server-68db3059eec904e90c41a8452799222e21c9c460.zip
detect migration status
Diffstat (limited to 'apps/encryption/tests')
-rw-r--r--apps/encryption/tests/controller/StatusControllerTest.php90
1 files changed, 90 insertions, 0 deletions
diff --git a/apps/encryption/tests/controller/StatusControllerTest.php b/apps/encryption/tests/controller/StatusControllerTest.php
new file mode 100644
index 00000000000..b57fd1cc33e
--- /dev/null
+++ b/apps/encryption/tests/controller/StatusControllerTest.php
@@ -0,0 +1,90 @@
+<?php
+/**
+ * @author Björn Schießle <schiessle@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 OCA\Encryption\Tests\Controller;
+
+
+use OCA\Encryption\Controller\StatusController;
+use OCA\Encryption\Session;
+use Test\TestCase;
+
+class StatusControllerTest extends TestCase {
+
+ /** @var \PHPUnit_Framework_MockObject_MockObject */
+ protected $requestMock;
+
+ /** @var \PHPUnit_Framework_MockObject_MockObject */
+ protected $l10nMock;
+
+ /** @var \OCA\Encryption\Session | \PHPUnit_Framework_MockObject_MockObject */
+ protected $sessionMock;
+
+ /** @var StatusController */
+ protected $controller;
+
+ protected function setUp() {
+
+ parent::setUp();
+
+ $this->sessionMock = $this->getMockBuilder('OCA\Encryption\Session')
+ ->disableOriginalConstructor()->getMock();
+ $this->requestMock = $this->getMock('OCP\IRequest');
+
+ $this->l10nMock = $this->getMockBuilder('OCP\IL10N')
+ ->disableOriginalConstructor()->getMock();
+ $this->l10nMock->expects($this->any())
+ ->method('t')
+ ->will($this->returnCallback(function($message) {
+ return $message;
+ }));
+
+ $this->controller = new StatusController('encryptionTest',
+ $this->requestMock,
+ $this->l10nMock,
+ $this->sessionMock);
+
+ }
+
+ /**
+ * @dataProvider dataTestGetStatus
+ *
+ * @param string $status
+ * @param string $expectedStatus
+ */
+ public function testGetStatus($status, $expectedStatus) {
+ $this->sessionMock->expects($this->once())
+ ->method('getStatus')->willReturn($status);
+ $result = $this->controller->getStatus();
+ $data = $result->getData();
+ $this->assertSame($expectedStatus, $data['status']);
+ }
+
+ public function dataTestGetStatus() {
+ return array(
+ array(Session::RUN_MIGRATION, 'interactionNeeded'),
+ array(Session::INIT_EXECUTED, 'interactionNeeded'),
+ array(Session::INIT_SUCCESSFUL, 'success'),
+ array(Session::NOT_INITIALIZED, 'interactionNeeded'),
+ array('unknown', 'error'),
+ );
+ }
+}