-
Notifications
You must be signed in to change notification settings - Fork 20
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Added tests to check direct use of core dependencies, #PG-3334
- Loading branch information
1 parent
257933a
commit f4bb176
Showing
2 changed files
with
52 additions
and
0 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,50 @@ | ||
<?php | ||
/** | ||
* Piwik - free/libre analytics platform | ||
* | ||
* @link http://piwik.org | ||
* @license http://www.gnu.org/licenses/gpl-3.0.html GPL v3 or later | ||
*/ | ||
|
||
namespace Piwik\Plugins\CustomAlerts\tests\System; | ||
|
||
use Piwik\Plugins\TestRunner\Commands\CheckDirectDependencyUse; | ||
use Piwik\Tests\Framework\TestCase\SystemTestCase; | ||
use Piwik\Version; | ||
use Symfony\Component\Console\Input\ArrayInput; | ||
use Symfony\Component\Console\Output\NullOutput; | ||
|
||
class CheckDirectDependencyUseCommandTest extends SystemTestCase | ||
{ | ||
public function testCommand() | ||
{ | ||
if (version_compare(Version::VERSION, '5.0.3', '<=') && !file_exists(PIWIK_INCLUDE_PATH . '/plugins/TestRunner/Commands/CheckDirectDependencyUse.php')) { | ||
$this->markTestSkipped('tests:check-direct-dependency-use is not available in this version'); | ||
} | ||
|
||
$pluginName = 'CustomAlerts'; | ||
|
||
$checkDirectDependencyUse = new CheckDirectDependencyUse(); | ||
|
||
$console = new \Piwik\Console(self::$fixture->piwikEnvironment); | ||
$console->addCommands([$checkDirectDependencyUse]); | ||
$command = $console->find('tests:check-direct-dependency-use'); | ||
$arguments = [ | ||
'command' => 'tests:check-direct-dependency-use', | ||
'--plugin' => $pluginName, | ||
'--grep-vendor', | ||
]; | ||
|
||
$inputObject = new ArrayInput($arguments); | ||
$command->run($inputObject, new NullOutput()); | ||
|
||
$this->assertEquals([ | ||
'Symfony\Component\Console' => [ | ||
'CustomAlerts/tests/System/CheckDirectDependencyUseCommandTest.php' | ||
], | ||
'PHPMailer\PHPMailer' => [ | ||
'CustomAlerts/tests/Integration/NotifierTest.php' | ||
], | ||
], $checkDirectDependencyUse->usesFoundList[$pluginName]); | ||
} | ||
} |