2014-12-22 16:54:50 +03:00
|
|
|
<?php
|
|
|
|
/**
|
2015-03-26 13:44:34 +03:00
|
|
|
* @author Joas Schilling <nickvergessen@owncloud.com>
|
|
|
|
* @author Morris Jobke <hey@morrisjobke.de>
|
2015-10-05 21:54:56 +03:00
|
|
|
* @author Roeland Jago Douma <roeland@famdouma.nl>
|
2015-03-26 13:44:34 +03:00
|
|
|
* @author Tom Needham <tom@owncloud.com>
|
2014-12-22 16:54:50 +03:00
|
|
|
*
|
2015-03-26 13:44:34 +03:00
|
|
|
* @copyright Copyright (c) 2015, ownCloud, Inc.
|
|
|
|
* @license AGPL-3.0
|
2014-12-22 16:54:50 +03:00
|
|
|
*
|
2015-03-26 13:44:34 +03:00
|
|
|
* 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.
|
2014-12-22 16:54:50 +03:00
|
|
|
*
|
2015-03-26 13:44:34 +03:00
|
|
|
* This program is distributed in the hope that it will be useful,
|
2014-12-22 16:54:50 +03:00
|
|
|
* but WITHOUT ANY WARRANTY; without even the implied warranty of
|
2015-03-26 13:44:34 +03:00
|
|
|
* MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
|
|
|
|
* GNU Affero General Public License for more details.
|
2014-12-22 16:54:50 +03:00
|
|
|
*
|
2015-03-26 13:44:34 +03:00
|
|
|
* 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/>
|
2014-12-22 16:54:50 +03:00
|
|
|
*
|
|
|
|
*/
|
2015-02-26 13:37:37 +03:00
|
|
|
|
2015-01-07 12:34:42 +03:00
|
|
|
namespace OCA\Provisioning_API\Tests;
|
2014-12-22 16:54:50 +03:00
|
|
|
|
2015-01-07 12:34:42 +03:00
|
|
|
class AppsTest extends TestCase {
|
2015-07-25 22:14:43 +03:00
|
|
|
|
|
|
|
public function setup() {
|
|
|
|
parent::setup();
|
|
|
|
$this->appManager = \OC::$server->getAppManager();
|
2015-07-25 23:37:14 +03:00
|
|
|
$this->groupManager = \OC::$server->getGroupManager();
|
|
|
|
$this->userSession = \OC::$server->getUserSession();
|
2015-07-25 22:14:43 +03:00
|
|
|
$this->api = new \OCA\Provisioning_API\Apps($this->appManager);
|
|
|
|
}
|
|
|
|
|
2015-01-07 12:34:42 +03:00
|
|
|
public function testGetAppInfo() {
|
2015-07-25 22:14:43 +03:00
|
|
|
$result = $this->api->getAppInfo(['appid' => 'provisioning_api']);
|
2014-12-22 16:54:50 +03:00
|
|
|
$this->assertInstanceOf('OC_OCS_Result', $result);
|
|
|
|
$this->assertTrue($result->succeeded());
|
|
|
|
|
|
|
|
}
|
|
|
|
|
2015-01-07 12:34:42 +03:00
|
|
|
public function testGetAppInfoOnBadAppID() {
|
2014-12-22 16:54:50 +03:00
|
|
|
|
2015-07-25 22:14:43 +03:00
|
|
|
$result = $this->api->getAppInfo(['appid' => 'not_provisioning_api']);
|
2014-12-22 16:54:50 +03:00
|
|
|
$this->assertInstanceOf('OC_OCS_Result', $result);
|
|
|
|
$this->assertFalse($result->succeeded());
|
2015-04-18 11:30:02 +03:00
|
|
|
$this->assertEquals(\OCP\API::RESPOND_NOT_FOUND, $result->getStatusCode());
|
2014-12-22 16:54:50 +03:00
|
|
|
|
|
|
|
}
|
|
|
|
|
|
|
|
public function testGetApps() {
|
|
|
|
|
|
|
|
$user = $this->generateUsers();
|
2015-07-25 23:37:14 +03:00
|
|
|
$this->groupManager->get('admin')->addUser($user);
|
|
|
|
$this->userSession->setUser($user);
|
2014-12-22 16:54:50 +03:00
|
|
|
|
2015-07-25 22:14:43 +03:00
|
|
|
$result = $this->api->getApps([]);
|
2014-12-22 16:54:50 +03:00
|
|
|
|
|
|
|
$this->assertTrue($result->succeeded());
|
|
|
|
$data = $result->getData();
|
|
|
|
$this->assertEquals(count(\OC_App::listAllApps()), count($data['apps']));
|
|
|
|
|
|
|
|
}
|
|
|
|
|
|
|
|
public function testGetAppsEnabled() {
|
|
|
|
|
|
|
|
$_GET['filter'] = 'enabled';
|
2015-07-25 22:14:43 +03:00
|
|
|
$result = $this->api->getApps(['filter' => 'enabled']);
|
2014-12-22 16:54:50 +03:00
|
|
|
$this->assertTrue($result->succeeded());
|
|
|
|
$data = $result->getData();
|
|
|
|
$this->assertEquals(count(\OC_App::getEnabledApps()), count($data['apps']));
|
|
|
|
|
|
|
|
}
|
|
|
|
|
|
|
|
public function testGetAppsDisabled() {
|
|
|
|
|
|
|
|
$_GET['filter'] = 'disabled';
|
2015-07-25 22:14:43 +03:00
|
|
|
$result = $this->api->getApps(['filter' => 'disabled']);
|
2014-12-22 16:54:50 +03:00
|
|
|
$this->assertTrue($result->succeeded());
|
|
|
|
$data = $result->getData();
|
|
|
|
$apps = \OC_App::listAllApps();
|
|
|
|
$list = array();
|
|
|
|
foreach($apps as $app) {
|
|
|
|
$list[] = $app['id'];
|
|
|
|
}
|
|
|
|
$disabled = array_diff($list, \OC_App::getEnabledApps());
|
|
|
|
$this->assertEquals(count($disabled), count($data['apps']));
|
2015-08-11 13:47:57 +03:00
|
|
|
}
|
2014-12-22 16:54:50 +03:00
|
|
|
|
2015-08-11 13:47:57 +03:00
|
|
|
public function testGetAppsInvalidFilter() {
|
|
|
|
$_GET['filter'] = 'foo';
|
|
|
|
$result = $this->api->getApps([]);
|
|
|
|
$this->assertFalse($result->succeeded());
|
|
|
|
$this->assertEquals(101, $result->getStatusCode());
|
2014-12-22 16:54:50 +03:00
|
|
|
}
|
|
|
|
}
|