* (c) Julien DIDIER * * This source file is subject to the MIT license that is bundled * with this source code in the file LICENSE. */ namespace Gitonomy\Git\Tests; class BlameTest extends AbstractTest { /** * @dataProvider provideFoobar */ public function testBlame($repository) { $blame = $repository->getBlame(self::LONGFILE_COMMIT, 'README.md'); $this->assertCount(7, $blame); $this->assertEquals('alice', $blame->getLine(1)->getCommit()->getAuthorName()); $this->assertEquals(self::INITIAL_COMMIT, $blame->getLine(1)->getCommit()->getHash()); $this->assertEquals('alice', $blame->getLine(5)->getCommit()->getAuthorName()); $this->assertNotEquals(self::INITIAL_COMMIT, $blame->getLine(5)->getCommit()->getHash()); } /** * @dataProvider provideFoobar */ public function testGroupedBlame($repository) { $blame = $repository->getBlame(self::LONGFILE_COMMIT, 'README.md')->getGroupedLines(); $this->assertCount(3, $blame); $this->assertEquals(self::INITIAL_COMMIT, $blame[0][0]->getHash()); } }