Skip to content

CLI-1120: Clean up docs (#1573) #1817

CLI-1120: Clean up docs (#1573)

CLI-1120: Clean up docs (#1573) #1817

Triggered via push August 9, 2023 16:43
Status Success
Total duration 13m 2s
Artifacts

mutation.yml

on: push
Fit to window
Zoom out
Zoom in

Annotations

10 warnings
Mutation Testing: src/AcsfApi/AcsfClient.php#L15
Escaped Mutant for Mutator "IncrementInteger": --- Original +++ New @@ @@ public function processResponse(ResponseInterface $response) : mixed { $bodyJson = $response->getBody(); - $body = json_decode((string) $bodyJson, FALSE, 512, JSON_THROW_ON_ERROR); + $body = json_decode((string) $bodyJson, FALSE, 513, JSON_THROW_ON_ERROR); // ACSF sometimes returns an array rather than an object. if (is_array($body)) { return $body;
Mutation Testing: src/AcsfApi/AcsfClient.php#L15
Escaped Mutant for Mutator "DecrementInteger": --- Original +++ New @@ @@ public function processResponse(ResponseInterface $response) : mixed { $bodyJson = $response->getBody(); - $body = json_decode((string) $bodyJson, FALSE, 512, JSON_THROW_ON_ERROR); + $body = json_decode((string) $bodyJson, FALSE, 511, JSON_THROW_ON_ERROR); // ACSF sometimes returns an array rather than an object. if (is_array($body)) { return $body;
Mutation Testing: src/AcsfApi/AcsfClient.php#L30
Escaped Mutant for Mutator "LogicalAnd": --- Original +++ New @@ @@ throw new ApiErrorException($body); } // Throw error for 4xx and 5xx responses. - if (property_exists($body, 'message') && in_array(substr((string) $response->getStatusCode(), 0, 1), ['4', '5'], TRUE)) { + if (property_exists($body, 'message') || in_array(substr((string) $response->getStatusCode(), 0, 1), ['4', '5'], TRUE)) { $body->error = $response->getStatusCode(); throw new ApiErrorException($body); }
Mutation Testing: src/AcsfApi/AcsfClientService.php#L18
Escaped Mutant for Mutator "MethodCallRemoval": --- Original +++ New @@ @@ public function getClient() : AcsfClient { $client = AcsfClient::factory($this->connector); - $this->configureClient($client); + return $client; } protected function checkAuthentication() : bool
Mutation Testing: src/AcsfApi/AcsfConnector.php#L21
Escaped Mutant for Mutator "ArrayItemRemoval": --- Original +++ New @@ @@ public function __construct(array $config, string $baseUri = NULL, string $urlAccessToken = NULL) { parent::__construct($config, $baseUri, $urlAccessToken); - $this->client = new GuzzleClient(['auth' => [$config['key'], $config['secret']], 'base_uri' => $this->getBaseUri()]); + $this->client = new GuzzleClient(['base_uri' => $this->getBaseUri()]); } /** * @param array<string> $options
Mutation Testing: src/AcsfApi/AcsfConnector.php#L22
Escaped Mutant for Mutator "ArrayItemRemoval": --- Original +++ New @@ @@ public function __construct(array $config, string $baseUri = NULL, string $urlAccessToken = NULL) { parent::__construct($config, $baseUri, $urlAccessToken); - $this->client = new GuzzleClient(['auth' => [$config['key'], $config['secret']], 'base_uri' => $this->getBaseUri()]); + $this->client = new GuzzleClient(['auth' => [$config['secret']], 'base_uri' => $this->getBaseUri()]); } /** * @param array<string> $options
Mutation Testing: src/AcsfApi/AcsfConnector.php#L26
Escaped Mutant for Mutator "ArrayItem": --- Original +++ New @@ @@ public function __construct(array $config, string $baseUri = NULL, string $urlAccessToken = NULL) { parent::__construct($config, $baseUri, $urlAccessToken); - $this->client = new GuzzleClient(['auth' => [$config['key'], $config['secret']], 'base_uri' => $this->getBaseUri()]); + $this->client = new GuzzleClient(['auth' => [$config['key'], $config['secret']], 'base_uri' > $this->getBaseUri()]); } /** * @param array<string> $options
Mutation Testing: src/Application.php#L40
Escaped Mutant for Mutator "MethodCallRemoval": --- Original +++ New @@ @@ if ($this->getHelpMessages()) { $io = new SymfonyStyle(new ArrayInput([]), $output); $outputStyle = new OutputFormatterStyle('white', 'blue'); - $output->getFormatter()->setStyle('help', $outputStyle); + $io->block($this->getHelpMessages(), 'help', 'help', ' ', TRUE, FALSE); } } }
Mutation Testing: src/Application.php#L41
Escaped Mutant for Mutator "TrueValue": --- Original +++ New @@ @@ $io = new SymfonyStyle(new ArrayInput([]), $output); $outputStyle = new OutputFormatterStyle('white', 'blue'); $output->getFormatter()->setStyle('help', $outputStyle); - $io->block($this->getHelpMessages(), 'help', 'help', ' ', TRUE, FALSE); + $io->block($this->getHelpMessages(), 'help', 'help', ' ', false, FALSE); } } }
Mutation Testing: src/Application.php#L41
Escaped Mutant for Mutator "FalseValue": --- Original +++ New @@ @@ $io = new SymfonyStyle(new ArrayInput([]), $output); $outputStyle = new OutputFormatterStyle('white', 'blue'); $output->getFormatter()->setStyle('help', $outputStyle); - $io->block($this->getHelpMessages(), 'help', 'help', ' ', TRUE, FALSE); + $io->block($this->getHelpMessages(), 'help', 'help', ' ', TRUE, true); } } }