0
0
Fork 0
mirror of https://github.com/nextcloud/server.git synced 2025-05-18 20:21:40 +00:00
nextcloud_server/tests/lib/Command/BackgroundModeTest.php
Joas Schilling 53b116b8a5
test: Remove more withConsecutive
Signed-off-by: Joas Schilling <coding@schilljs.com>
2025-05-15 08:18:26 +02:00

62 lines
1.5 KiB
PHP

<?php
declare(strict_types=1);
/**
* SPDX-FileCopyrightText: 2016-2023 Nextcloud GmbH and Nextcloud contributors
* SPDX-FileCopyrightText: 2015 Christian Kampka <christian@kampka.net>
* SPDX-License-Identifier: MIT
*/
namespace Test\Command;
use OC\Core\Command\Background\Mode;
use OCP\IAppConfig;
use Symfony\Component\Console\Input\InputArgument;
use Symfony\Component\Console\Input\InputDefinition;
use Symfony\Component\Console\Tester\CommandTester;
use Test\TestCase;
/**
* @group DB
*/
class BackgroundModeTest extends TestCase {
private IAppConfig $appConfig;
private Mode $command;
public function setUp(): void {
$this->appConfig = $this->createMock(IAppConfig::class);
$inputDefinition = new InputDefinition([
new InputArgument('command', InputArgument::REQUIRED, 'The command to execute'),
]);
$this->command = new Mode($this->appConfig);
$this->command->setDefinition($inputDefinition);
}
/**
* @dataProvider dataModeCommand
*/
public function testModeCommand(string $mode): void {
$this->appConfig->expects($this->once())
->method('setValueString')
->with('core', 'backgroundjobs_mode', $mode);
$commandTester = new CommandTester($this->command);
$commandTester->execute(['command' => 'background:' . $mode]);
$commandTester->assertCommandIsSuccessful();
$output = $commandTester->getDisplay();
$this->assertStringContainsString($mode, $output);
}
public static function dataModeCommand(): array {
return [
'ajax' => ['ajax'],
'cron' => ['cron'],
'webcron' => ['webcron'],
];
}
}