config = $this->getMockBuilder(AppConfig::class) ->disableOriginalConstructor() ->getMock(); $this->consoleInput = $this->getMockBuilder(InputInterface::class)->getMock(); $this->consoleOutput = $this->getMockBuilder(OutputInterface::class)->getMock(); /** @var \OCP\IAppConfig $config */ $this->command = new SetConfig($config); } public function setData() { return [ [ 'name', 'newvalue', true, true, true, 'info', ], [ 'name', 'newvalue', false, true, false, 'comment', ], ]; } /** * @dataProvider setData * * @param string $configName * @param mixed $newValue * @param bool $configExists * @param bool $updateOnly * @param bool $updated * @param string $expectedMessage */ public function testSet($configName, $newValue, $configExists, $updateOnly, $updated, $expectedMessage) { $this->config->expects($this->any()) ->method('hasKey') ->with('app-name', $configName) ->willReturn($configExists); if (!$configExists) { $this->config->expects($this->any()) ->method('getValueType') ->willThrowException(new AppConfigUnknownKeyException()); } else { $this->config->expects($this->any()) ->method('getValueType') ->willReturn(IAppConfig::VALUE_MIXED); } if ($updated) { $this->config->expects($this->once()) ->method('setValueMixed') ->with('app-name', $configName, $newValue); } $this->consoleInput->expects($this->exactly(2)) ->method('getArgument') ->willReturnMap([ ['app', 'app-name'], ['name', $configName], ]); $this->consoleInput->expects($this->any()) ->method('getOption') ->willReturnMap([ ['value', $newValue], ['lazy', null], ['sensitive', null], ['no-interaction', true], ]); $this->consoleInput->expects($this->any()) ->method('hasParameterOption') ->willReturnMap([ ['--type', false, false], ['--value', false, true], ['--update-only', false, $updateOnly] ]); $this->consoleOutput->expects($this->any()) ->method('writeln') ->with($this->stringContains($expectedMessage)); $this->invokePrivate($this->command, 'execute', [$this->consoleInput, $this->consoleOutput]); } }