Skip to content

Commit 3304559

Browse files
authored
Merge pull request #15 from Tiime-Software/improve-successful-routes
Allow to add not successfully tested routes in baseline
2 parents 42638c5 + b7ee87c commit 3304559

File tree

2 files changed

+16
-2
lines changed

2 files changed

+16
-2
lines changed

src/Command/CheckCommand.php

+1-1
Original file line numberDiff line numberDiff line change
@@ -54,8 +54,8 @@ protected function execute(InputInterface $input, OutputInterface $output): int
5454
}
5555

5656
$untestedRoutes = $this->routesChecker->getUntestedRoutes($routesToIgnore);
57-
$testedIgnoredRoutes = $this->routesChecker->getTestedIgnoredRoutes($routesToIgnore);
5857
$notSuccessfullyTestedRoutes = $this->routesChecker->getNotSuccessfullyTestedRoutes($routesToIgnore);
58+
$testedIgnoredRoutes = $this->routesChecker->getTestedIgnoredRoutes(array_merge($routesToIgnore, $notSuccessfullyTestedRoutes));
5959

6060
if (0 === $count = \count($untestedRoutes)) {
6161
if (0 < \count($testedIgnoredRoutes)) {

tests/Command/CheckCommandTest.php

+15-1
Original file line numberDiff line numberDiff line change
@@ -46,7 +46,6 @@ public function testWithUntestedRoutes(): void
4646
public function testWithNotSuccessfullyTestedRoutes(): void
4747
{
4848
$routesChecker = $this->createMock(RoutesChecker::class);
49-
$routesChecker->expects($this->once())->method('getUntestedRoutes')->willReturn([]);
5049
$routesChecker->expects($this->once())->method('getNotSuccessfullyTestedRoutes')->willReturn(['route3', 'route4']);
5150

5251
$commandTester = new CommandTester(new CheckCommand($routesChecker, 10, __DIR__.'/ignored_routes'));
@@ -58,4 +57,19 @@ public function testWithNotSuccessfullyTestedRoutes(): void
5857
$output = $commandTester->getDisplay();
5958
$this->assertStringContainsString('[WARNING] Found 2 routes which are not successfully tested', $output);
6059
}
60+
61+
public function testWithTestedIgnoredRoutes(): void
62+
{
63+
$routesChecker = $this->createMock(RoutesChecker::class);
64+
$routesChecker->expects($this->once())->method('getTestedIgnoredRoutes')->willReturn(['route2']);
65+
66+
$commandTester = new CommandTester(new CheckCommand($routesChecker, 10, __DIR__.'/ignored_routes'));
67+
68+
$commandTester->execute([]);
69+
70+
$this->assertSame(1, $commandTester->getStatusCode());
71+
72+
$output = $commandTester->getDisplay();
73+
$this->assertStringContainsString('[WARNING] Some ignored routes looks tested', $output);
74+
}
6175
}

0 commit comments

Comments
 (0)