getMockBuilder('OCA\Files_External\Service\GlobalStoragesService') ->disableOriginalConstructor() ->getMock(); $this->bindMounts($mock, $mounts); return $mock; } /** * @param \PHPUnit\Framework\MockObject\MockObject $mock * @param StorageConfig[] $mounts */ protected function bindMounts(\PHPUnit\Framework\MockObject\MockObject $mock, array $mounts) { $mock->expects($this->any()) ->method('getStorage') ->willReturnCallback(function ($id) use ($mounts) { foreach ($mounts as $mount) { if ($mount->getId() === $id) { return $mount; } } throw new NotFoundException(); }); } /** * @param $id * @param $mountPoint * @param $backendClass * @param string $applicableIdentifier * @param array $config * @param array $options * @param array $users * @param array $groups * @return StorageConfig */ protected function getMount($id, $mountPoint, $backendClass, $applicableIdentifier = 'password::password', $config = [], $options = [], $users = [], $groups = []) { $mount = new StorageConfig($id); $mount->setMountPoint($mountPoint); $mount->setBackendOptions($config); $mount->setMountOptions($options); $mount->setApplicableUsers($users); $mount->setApplicableGroups($groups); return $mount; } protected function getInput(Command $command, array $arguments = [], array $options = []) { $input = new ArrayInput([]); $input->bind($command->getDefinition()); foreach ($arguments as $key => $value) { $input->setArgument($key, $value); } foreach ($options as $key => $value) { $input->setOption($key, $value); } return $input; } protected function executeCommand(Command $command, Input $input) { $output = new BufferedOutput(); $this->invokePrivate($command, 'execute', [$input, $output]); return $output->fetch(); } }