Skip to content
Snippets Groups Projects
Unverified Commit c09ddf6c authored by Daniel Kesselberg's avatar Daniel Kesselberg
Browse files

Check app path for enableAppForGroups

parent 996bad61
No related branches found
No related tags found
No related merge requests found
...@@ -254,15 +254,16 @@ class AppManager implements IAppManager { ...@@ -254,15 +254,16 @@ class AppManager implements IAppManager {
* *
* @param string $appId * @param string $appId
* @param \OCP\IGroup[] $groups * @param \OCP\IGroup[] $groups
* @throws \Exception if app can't be enabled for groups * @throws \InvalidArgumentException if app can't be enabled for groups
* @throws AppPathNotFoundException
*/ */
public function enableAppForGroups($appId, $groups) { public function enableAppForGroups($appId, $groups) {
// Check if app exists
$this->getAppPath($appId);
$info = $this->getAppInfo($appId); $info = $this->getAppInfo($appId);
if (!empty($info['types'])) { if (!empty($info['types']) && $this->hasProtectedAppType($info['types'])) {
$protectedTypes = array_intersect($this->protectedAppTypes, $info['types']); throw new \InvalidArgumentException("$appId can't be enabled for groups.");
if (!empty($protectedTypes)) {
throw new \Exception("$appId can't be enabled for groups.");
}
} }
$groupIds = array_map(function ($group) { $groupIds = array_map(function ($group) {
......
...@@ -149,7 +149,23 @@ class AppManagerTest extends TestCase { ...@@ -149,7 +149,23 @@ class AppManagerTest extends TestCase {
new Group('group2', array(), null) new Group('group2', array(), null)
); );
$this->expectClearCache(); $this->expectClearCache();
$this->manager->enableAppForGroups('test', $groups);
/** @var AppManager|\PHPUnit_Framework_MockObject_MockObject $manager */
$manager = $this->getMockBuilder(AppManager::class)
->setConstructorArgs([
$this->userSession, $this->appConfig, $this->groupManager, $this->cacheFactory, $this->eventDispatcher
])
->setMethods([
'getAppPath',
])
->getMock();
$manager->expects($this->exactly(2))
->method('getAppPath')
->with('test')
->willReturn('apps/test');
$manager->enableAppForGroups('test', $groups);
$this->assertEquals('["group1","group2"]', $this->appConfig->getValue('test', 'enabled', 'no')); $this->assertEquals('["group1","group2"]', $this->appConfig->getValue('test', 'enabled', 'no'));
} }
...@@ -183,10 +199,16 @@ class AppManagerTest extends TestCase { ...@@ -183,10 +199,16 @@ class AppManagerTest extends TestCase {
$this->userSession, $this->appConfig, $this->groupManager, $this->cacheFactory, $this->eventDispatcher $this->userSession, $this->appConfig, $this->groupManager, $this->cacheFactory, $this->eventDispatcher
]) ])
->setMethods([ ->setMethods([
'getAppInfo' 'getAppPath',
'getAppInfo',
]) ])
->getMock(); ->getMock();
$manager->expects($this->once())
->method('getAppPath')
->with('test')
->willReturn(null);
$manager->expects($this->once()) $manager->expects($this->once())
->method('getAppInfo') ->method('getAppInfo')
->with('test') ->with('test')
...@@ -226,10 +248,16 @@ class AppManagerTest extends TestCase { ...@@ -226,10 +248,16 @@ class AppManagerTest extends TestCase {
$this->userSession, $this->appConfig, $this->groupManager, $this->cacheFactory, $this->eventDispatcher $this->userSession, $this->appConfig, $this->groupManager, $this->cacheFactory, $this->eventDispatcher
]) ])
->setMethods([ ->setMethods([
'getAppInfo' 'getAppPath',
'getAppInfo',
]) ])
->getMock(); ->getMock();
$manager->expects($this->once())
->method('getAppPath')
->with('test')
->willReturn(null);
$manager->expects($this->once()) $manager->expects($this->once())
->method('getAppInfo') ->method('getAppInfo')
->with('test') ->with('test')
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment