123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283 |
- <?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']
- ];
- }
- }
|