File: /var/www/vhost/disk-apps/magento.bikenow.co/vendor/sebastian/phpcpd/tests/tests/PMDTest.php
<?php declare(strict_types=1);
/*
* This file is part of PHP Copy/Paste Detector (PHPCPD).
*
* (c) Sebastian Bergmann <sebastian@phpunit.de>
*
* For the full copyright and license information, please view the LICENSE
* file that was distributed with this source code.
*/
namespace SebastianBergmann\PHPCPD\Log;
use PHPUnit\Framework\TestCase;
use SebastianBergmann\PHPCPD\CodeClone;
use SebastianBergmann\PHPCPD\CodeCloneFile;
use SebastianBergmann\PHPCPD\CodeCloneMap;
/**
* @covers \SebastianBergmann\PHPCPD\Log\PMD
* @covers \SebastianBergmann\PHPCPD\Log\AbstractXmlLogger
*
* @uses \SebastianBergmann\PHPCPD\CodeClone
* @uses \SebastianBergmann\PHPCPD\CodeCloneFile
* @uses \SebastianBergmann\PHPCPD\CodeCloneMap
* @uses \SebastianBergmann\PHPCPD\CodeCloneMapIterator
*/
class PMDTest extends TestCase
{
/** @var string */
private $testFile1;
/** @var @var string */
private $testFile2;
/** @var string */
private $pmdLogFile;
/** @var string */
private $expectedPmdLogFile;
/** @var \SebastianBergmann\PHPCPD\Log\PMD */
private $pmdLogger;
protected function setUp(): void
{
$this->testFile1 = __DIR__ . '/../fixture/with_ascii_escape.php';
$this->testFile2 = __DIR__ . '/../fixture/with_ascii_escape2.php';
$this->pmdLogFile = \tempnam(\sys_get_temp_dir(), 'pmd');
$this->expectedPmdLogFile = \tempnam(\sys_get_temp_dir(), 'pmd');
$expectedPmdLogTemplate = __DIR__ . '/../fixture/pmd_expected.xml';
$expectedPmdLogContents = \strtr(
\file_get_contents($expectedPmdLogTemplate),
[
'%file1%' => $this->testFile1,
'%file2%' => $this->testFile2,
]
);
\file_put_contents($this->expectedPmdLogFile, $expectedPmdLogContents);
$this->pmdLogger = new PMD($this->pmdLogFile);
}
protected function tearDown(): void
{
if (\file_exists($this->pmdLogFile)) {
\unlink($this->pmdLogFile);
}
if (\file_exists($this->expectedPmdLogFile)) {
\unlink($this->expectedPmdLogFile);
}
}
public function testSubstitutesDisallowedCharacters(): void
{
$file1 = new CodeCloneFile($this->testFile1, 8);
$file2 = new CodeCloneFile($this->testFile2, 8);
$clone = new CodeClone($file1, $file2, 4, 4);
$cloneMap = new CodeCloneMap();
$cloneMap->addClone($clone);
$this->pmdLogger->processClones($cloneMap);
$this->assertXmlFileEqualsXmlFile(
$this->expectedPmdLogFile,
$this->pmdLogFile
);
}
}