|
Apache/2.4.41 (Ubuntu) Linux vmi616275.contaboserver.net 5.4.0-84-generic #94-Ubuntu SMP Thu Aug 26 20:27:37 UTC 2021 x86_64 uid=33(www-data) gid=33(www-data) groups=33(www-data) server ip : 62.171.164.128 | your ip : 127.0.0.1 safemode OFF > / home / a / home / dev2.destoffenstraat.com / vendor / sebastian / phpcpd / tests / |
Filename | /home/a/home/dev2.destoffenstraat.com/vendor/sebastian/phpcpd/tests/DetectorTest.php |
Size | 7.55 kb |
Permission | rw-r--r-- |
Owner | root : root |
Create time | 21-Aug-2025 12:26 |
Last modified | 16-Nov-2017 09:49 |
Last accessed | 22-Aug-2025 12:46 |
Actions | edit | rename | delete | download (gzip) |
View | text | code | image |
<?php
/*
* 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.
*/
if (!defined('TEST_FILES_PATH')) {
define(
'TEST_FILES_PATH',
dirname(__FILE__) . DIRECTORY_SEPARATOR . '_files' . DIRECTORY_SEPARATOR
);
}
use PHPUnit\Framework\TestCase;
class PHPCPD_DetectorTest extends TestCase
{
/**
* @covers SebastianBergmann\PHPCPD\Detector\Detector::copyPasteDetection
* @covers SebastianBergmann\PHPCPD\CodeClone::getLines
* @dataProvider strategyProvider
*/
public function testDetectingSimpleClonesWorks($strategy)
{
$detector = new SebastianBergmann\PHPCPD\Detector\Detector(new $strategy);
$clones = $detector->copyPasteDetection(
[TEST_FILES_PATH . 'Math.php']
);
$clones = $clones->getClones();
$files = $clones[0]->getFiles();
$file = current($files);
$this->assertEquals(TEST_FILES_PATH . 'Math.php', $file->getName());
$this->assertEquals(75, $file->getStartLine());
$file = next($files);
$this->assertEquals(TEST_FILES_PATH . 'Math.php', $file->getName());
$this->assertEquals(139, $file->getStartLine());
$this->assertEquals(59, $clones[0]->getSize());
$this->assertEquals(136, $clones[0]->getTokens());
$this->assertEquals(
' public function div($v1, $v2)
{
$v3 = $v1 / ($v2 + $v1);
if ($v3 > 14)
{
$v4 = 0;
for ($i = 0; $i < $v3; $i++)
{
$v4 += ($v2 * $i);
}
}
$v5 = ($v4 < $v3 ? ($v3 - $v4) : ($v4 - $v3));
$v6 = ($v1 * $v2 * $v3 * $v4 * $v5);
$d = array($v1, $v2, $v3, $v4, $v5, $v6);
$v7 = 1;
for ($i = 0; $i < $v6; $i++)
{
shuffle( $d );
$v7 = $v7 + $i * end($d);
}
$v8 = $v7;
foreach ( $d as $x )
{
$v8 *= $x;
}
$v3 = $v1 / ($v2 + $v1);
if ($v3 > 14)
{
$v4 = 0;
for ($i = 0; $i < $v3; $i++)
{
$v4 += ($v2 * $i);
}
}
$v5 = ($v4 < $v3 ? ($v3 - $v4) : ($v4 - $v3));
$v6 = ($v1 * $v2 * $v3 * $v4 * $v5);
$d = array($v1, $v2, $v3, $v4, $v5, $v6);
$v7 = 1;
for ($i = 0; $i < $v6; $i++)
{
shuffle( $d );
$v7 = $v7 + $i * end($d);
}
$v8 = $v7;
foreach ( $d as $x )
{
$v8 *= $x;
}
return $v8;
',
$clones[0]->getLines()
);
}
/**
* @covers SebastianBergmann\PHPCPD\Detector\Detector::copyPasteDetection
* @dataProvider strategyProvider
*/
public function testDetectingExactDuplicateFilesWorks($strategy)
{
$detector = new SebastianBergmann\PHPCPD\Detector\Detector(new $strategy);
$clones = $detector->copyPasteDetection([
TEST_FILES_PATH . 'a.php',
TEST_FILES_PATH . 'b.php'
], 20, 60);
$clones = $clones->getClones();
$files = $clones[0]->getFiles();
$file = current($files);
$this->assertCount(1, $clones);
$this->assertEquals(TEST_FILES_PATH . 'a.php', $file->getName());
$this->assertEquals(4, $file->getStartLine());
$file = next($files);
$this->assertEquals(TEST_FILES_PATH . 'b.php', $file->getName());
$this->assertEquals(4, $file->getStartLine());
$this->assertEquals(20, $clones[0]->getSize());
$this->assertEquals(60, $clones[0]->getTokens());
}
/**
* @covers SebastianBergmann\PHPCPD\Detector\Detector::copyPasteDetection
* @dataProvider strategyProvider
*/
public function testDetectingClonesInMoreThanTwoFiles($strategy)
{
$detector = new SebastianBergmann\PHPCPD\Detector\Detector(new $strategy);
$clones = $detector->copyPasteDetection(
[
TEST_FILES_PATH . 'a.php',
TEST_FILES_PATH . 'b.php',
TEST_FILES_PATH . 'c.php',
],
20,
60
);
$clones = $clones->getClones();
$files = $clones[0]->getFiles();
sort($files);
$file = current($files);
$this->assertCount(1, $clones);
$this->assertEquals(TEST_FILES_PATH . 'a.php', $file->getName());
$this->assertEquals(4, $file->getStartLine());
$file = next($files);
$this->assertEquals(TEST_FILES_PATH . 'b.php', $file->getName());
$this->assertEquals(4, $file->getStartLine());
$file = next($files);
$this->assertEquals(TEST_FILES_PATH . 'c.php', $file->getName());
$this->assertEquals(4, $file->getStartLine());
}
/**
* @covers SebastianBergmann\PHPCPD\Detector\Detector::copyPasteDetection
* @dataProvider strategyProvider
*/
public function testClonesAreIgnoredIfTheySpanLessTokensThanMinTokens($strategy)
{
$detector = new SebastianBergmann\PHPCPD\Detector\Detector(new $strategy);
$clones = $detector->copyPasteDetection(
[
TEST_FILES_PATH . 'a.php',
TEST_FILES_PATH . 'b.php'
],
20,
61
);
$this->assertCount(0, $clones->getClones());
}
/**
* @covers SebastianBergmann\PHPCPD\Detector\Detector::copyPasteDetection
* @dataProvider strategyProvider
*/
public function testClonesAreIgnoredIfTheySpanLessLinesThanMinLines($strategy)
{
$detector = new SebastianBergmann\PHPCPD\Detector\Detector(new $strategy);
$clones = $detector->copyPasteDetection(
[
TEST_FILES_PATH . 'a.php',
TEST_FILES_PATH . 'b.php'
],
21,
60
);
$this->assertCount(0, $clones->getClones());
}
/**
* @covers SebastianBergmann\PHPCPD\Detector\Detector::copyPasteDetection
* @dataProvider strategyProvider
*/
public function testFuzzyClonesAreFound($strategy)
{
$detector = new SebastianBergmann\PHPCPD\Detector\Detector(new $strategy);
$clones = $detector->copyPasteDetection(
[
TEST_FILES_PATH . 'a.php',
TEST_FILES_PATH . 'd.php'
],
5,
20,
true
);
$clones = $clones->getClones();
$this->assertCount(1, $clones);
}
/**
* @covers SebastianBergmann\PHPCPD\Detector\Detector::copyPasteDetection
* @dataProvider strategyProvider
*/
public function testStripComments($strategy)
{
$detector = new SebastianBergmann\PHPCPD\Detector\Detector(new $strategy);
$clones = $detector->copyPasteDetection(
[
TEST_FILES_PATH . 'e.php',
TEST_FILES_PATH . 'f.php'
],
8,
10,
true
);
$clones = $clones->getClones();
$this->assertCount(0, $clones);
$clones = $detector->copyPasteDetection(
[
TEST_FILES_PATH . 'e.php',
TEST_FILES_PATH . 'f.php'
],
7,
10,
true
);
$clones = $clones->getClones();
$this->assertCount(1, $clones);
}
public function strategyProvider()
{
return [
['SebastianBergmann\\PHPCPD\\Detector\\Strategy\\DefaultStrategy']
];
}
}
/*
* 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.
*/
if (!defined('TEST_FILES_PATH')) {
define(
'TEST_FILES_PATH',
dirname(__FILE__) . DIRECTORY_SEPARATOR . '_files' . DIRECTORY_SEPARATOR
);
}
use PHPUnit\Framework\TestCase;
class PHPCPD_DetectorTest extends TestCase
{
/**
* @covers SebastianBergmann\PHPCPD\Detector\Detector::copyPasteDetection
* @covers SebastianBergmann\PHPCPD\CodeClone::getLines
* @dataProvider strategyProvider
*/
public function testDetectingSimpleClonesWorks($strategy)
{
$detector = new SebastianBergmann\PHPCPD\Detector\Detector(new $strategy);
$clones = $detector->copyPasteDetection(
[TEST_FILES_PATH . 'Math.php']
);
$clones = $clones->getClones();
$files = $clones[0]->getFiles();
$file = current($files);
$this->assertEquals(TEST_FILES_PATH . 'Math.php', $file->getName());
$this->assertEquals(75, $file->getStartLine());
$file = next($files);
$this->assertEquals(TEST_FILES_PATH . 'Math.php', $file->getName());
$this->assertEquals(139, $file->getStartLine());
$this->assertEquals(59, $clones[0]->getSize());
$this->assertEquals(136, $clones[0]->getTokens());
$this->assertEquals(
' public function div($v1, $v2)
{
$v3 = $v1 / ($v2 + $v1);
if ($v3 > 14)
{
$v4 = 0;
for ($i = 0; $i < $v3; $i++)
{
$v4 += ($v2 * $i);
}
}
$v5 = ($v4 < $v3 ? ($v3 - $v4) : ($v4 - $v3));
$v6 = ($v1 * $v2 * $v3 * $v4 * $v5);
$d = array($v1, $v2, $v3, $v4, $v5, $v6);
$v7 = 1;
for ($i = 0; $i < $v6; $i++)
{
shuffle( $d );
$v7 = $v7 + $i * end($d);
}
$v8 = $v7;
foreach ( $d as $x )
{
$v8 *= $x;
}
$v3 = $v1 / ($v2 + $v1);
if ($v3 > 14)
{
$v4 = 0;
for ($i = 0; $i < $v3; $i++)
{
$v4 += ($v2 * $i);
}
}
$v5 = ($v4 < $v3 ? ($v3 - $v4) : ($v4 - $v3));
$v6 = ($v1 * $v2 * $v3 * $v4 * $v5);
$d = array($v1, $v2, $v3, $v4, $v5, $v6);
$v7 = 1;
for ($i = 0; $i < $v6; $i++)
{
shuffle( $d );
$v7 = $v7 + $i * end($d);
}
$v8 = $v7;
foreach ( $d as $x )
{
$v8 *= $x;
}
return $v8;
',
$clones[0]->getLines()
);
}
/**
* @covers SebastianBergmann\PHPCPD\Detector\Detector::copyPasteDetection
* @dataProvider strategyProvider
*/
public function testDetectingExactDuplicateFilesWorks($strategy)
{
$detector = new SebastianBergmann\PHPCPD\Detector\Detector(new $strategy);
$clones = $detector->copyPasteDetection([
TEST_FILES_PATH . 'a.php',
TEST_FILES_PATH . 'b.php'
], 20, 60);
$clones = $clones->getClones();
$files = $clones[0]->getFiles();
$file = current($files);
$this->assertCount(1, $clones);
$this->assertEquals(TEST_FILES_PATH . 'a.php', $file->getName());
$this->assertEquals(4, $file->getStartLine());
$file = next($files);
$this->assertEquals(TEST_FILES_PATH . 'b.php', $file->getName());
$this->assertEquals(4, $file->getStartLine());
$this->assertEquals(20, $clones[0]->getSize());
$this->assertEquals(60, $clones[0]->getTokens());
}
/**
* @covers SebastianBergmann\PHPCPD\Detector\Detector::copyPasteDetection
* @dataProvider strategyProvider
*/
public function testDetectingClonesInMoreThanTwoFiles($strategy)
{
$detector = new SebastianBergmann\PHPCPD\Detector\Detector(new $strategy);
$clones = $detector->copyPasteDetection(
[
TEST_FILES_PATH . 'a.php',
TEST_FILES_PATH . 'b.php',
TEST_FILES_PATH . 'c.php',
],
20,
60
);
$clones = $clones->getClones();
$files = $clones[0]->getFiles();
sort($files);
$file = current($files);
$this->assertCount(1, $clones);
$this->assertEquals(TEST_FILES_PATH . 'a.php', $file->getName());
$this->assertEquals(4, $file->getStartLine());
$file = next($files);
$this->assertEquals(TEST_FILES_PATH . 'b.php', $file->getName());
$this->assertEquals(4, $file->getStartLine());
$file = next($files);
$this->assertEquals(TEST_FILES_PATH . 'c.php', $file->getName());
$this->assertEquals(4, $file->getStartLine());
}
/**
* @covers SebastianBergmann\PHPCPD\Detector\Detector::copyPasteDetection
* @dataProvider strategyProvider
*/
public function testClonesAreIgnoredIfTheySpanLessTokensThanMinTokens($strategy)
{
$detector = new SebastianBergmann\PHPCPD\Detector\Detector(new $strategy);
$clones = $detector->copyPasteDetection(
[
TEST_FILES_PATH . 'a.php',
TEST_FILES_PATH . 'b.php'
],
20,
61
);
$this->assertCount(0, $clones->getClones());
}
/**
* @covers SebastianBergmann\PHPCPD\Detector\Detector::copyPasteDetection
* @dataProvider strategyProvider
*/
public function testClonesAreIgnoredIfTheySpanLessLinesThanMinLines($strategy)
{
$detector = new SebastianBergmann\PHPCPD\Detector\Detector(new $strategy);
$clones = $detector->copyPasteDetection(
[
TEST_FILES_PATH . 'a.php',
TEST_FILES_PATH . 'b.php'
],
21,
60
);
$this->assertCount(0, $clones->getClones());
}
/**
* @covers SebastianBergmann\PHPCPD\Detector\Detector::copyPasteDetection
* @dataProvider strategyProvider
*/
public function testFuzzyClonesAreFound($strategy)
{
$detector = new SebastianBergmann\PHPCPD\Detector\Detector(new $strategy);
$clones = $detector->copyPasteDetection(
[
TEST_FILES_PATH . 'a.php',
TEST_FILES_PATH . 'd.php'
],
5,
20,
true
);
$clones = $clones->getClones();
$this->assertCount(1, $clones);
}
/**
* @covers SebastianBergmann\PHPCPD\Detector\Detector::copyPasteDetection
* @dataProvider strategyProvider
*/
public function testStripComments($strategy)
{
$detector = new SebastianBergmann\PHPCPD\Detector\Detector(new $strategy);
$clones = $detector->copyPasteDetection(
[
TEST_FILES_PATH . 'e.php',
TEST_FILES_PATH . 'f.php'
],
8,
10,
true
);
$clones = $clones->getClones();
$this->assertCount(0, $clones);
$clones = $detector->copyPasteDetection(
[
TEST_FILES_PATH . 'e.php',
TEST_FILES_PATH . 'f.php'
],
7,
10,
true
);
$clones = $clones->getClones();
$this->assertCount(1, $clones);
}
public function strategyProvider()
{
return [
['SebastianBergmann\\PHPCPD\\Detector\\Strategy\\DefaultStrategy']
];
}
}