config = $this->getMockBuilder(IConfig::class) ->disableOriginalConstructor() ->getMock(); $this->consoleInput = $this->getMockBuilder(InputInterface::class)->getMock(); $this->consoleOutput = $this->getMockBuilder(OutputInterface::class)->getMock(); /** @var \OCP\IConfig $config */ $this->command = new Disable($config); } public function dataDisable() { return [ ['yes', true, 'Encryption disabled'], ['no', false, 'Encryption is already disabled'], ]; } /** * @dataProvider dataDisable * * @param string $oldStatus * @param bool $isUpdating * @param string $expectedString */ public function testDisable($oldStatus, $isUpdating, $expectedString): void { $this->config->expects($this->once()) ->method('getAppValue') ->with('core', 'encryption_enabled', $this->anything()) ->willReturn($oldStatus); $this->consoleOutput->expects($this->once()) ->method('writeln') ->with($this->stringContains($expectedString)); if ($isUpdating) { $this->config->expects($this->once()) ->method('setAppValue') ->with('core', 'encryption_enabled', 'no'); } self::invokePrivate($this->command, 'execute', [$this->consoleInput, $this->consoleOutput]); } }