mirror of
https://github.com/Icinga/icingadb-web.git
synced 2026-04-11 11:56:18 -04:00
Add SPDX license headers and mark source files as GPL-3.0-or-later to preserve the option to relicense under later GPL versions.
43 lines
1.5 KiB
PHP
43 lines
1.5 KiB
PHP
<?php
|
|
|
|
// SPDX-FileCopyrightText: 2024 Icinga GmbH <https://icinga.com>
|
|
// SPDX-License-Identifier: GPL-3.0-or-later
|
|
|
|
namespace Tests\Icinga\Module\Icingadb\Lib;
|
|
|
|
use Icinga\Application\Config;
|
|
use Icinga\Data\ConfigObject;
|
|
use Icinga\Module\Icingadb\Command\IcingaApiCommand;
|
|
use Icinga\Module\Icingadb\Command\Transport\ApiCommandTransport;
|
|
use Icinga\Module\Icingadb\Command\Transport\CommandTransport;
|
|
use Icinga\Module\Icingadb\Command\Transport\CommandTransportException;
|
|
|
|
class IntermittentlyFailingCommandTransport extends CommandTransport
|
|
{
|
|
public static $failAtAttemptNo = 2;
|
|
|
|
public static $attemptNo = 0;
|
|
|
|
public static function getConfig(): Config
|
|
{
|
|
return Config::fromArray(['endpoint1' => ['host' => 'endpointA'], 'endpoint2' => ['host' => 'endpointB']]);
|
|
}
|
|
|
|
public static function createTransport(ConfigObject $config): ApiCommandTransport
|
|
{
|
|
return (new class extends ApiCommandTransport {
|
|
protected function sendCommand(IcingaApiCommand $command)
|
|
{
|
|
$attemptNo = ++IntermittentlyFailingCommandTransport::$attemptNo;
|
|
$failAtAttemptNo = IntermittentlyFailingCommandTransport::$failAtAttemptNo;
|
|
|
|
if ($attemptNo === $failAtAttemptNo) {
|
|
throw (new CommandTransportException(sprintf('%s intermittently fails!', $this->getHost())))
|
|
->setCommand($command);
|
|
}
|
|
|
|
return $command->getData() + ['endpoint' => $this->getHost()];
|
|
}
|
|
})->setHost($config->host);
|
|
}
|
|
}
|