mirror of
https://github.com/klaussilveira/gitlist.git
synced 2025-11-17 19:20:56 +01:00
372 lines
14 KiB
PHP
372 lines
14 KiB
PHP
<?php
|
|
|
|
use Git\Client;
|
|
use Git\Repository;
|
|
|
|
spl_autoload_register(function($class)
|
|
{
|
|
if (0 === strpos($class, 'Git\\')) {
|
|
$file = __DIR__ . '/../lib/' . str_replace('\\', '/', $class) . '.php';
|
|
|
|
if (file_exists($file)) {
|
|
require_once $file;
|
|
return true;
|
|
}
|
|
}
|
|
});
|
|
|
|
function recursiveDelete($dir)
|
|
{
|
|
$files = scandir($dir);
|
|
|
|
foreach ($files as $file) {
|
|
if ($file == '.' || $file == '..') {
|
|
continue;
|
|
}
|
|
|
|
$path = "$dir/$file";
|
|
|
|
if (is_dir($path)) {
|
|
recursiveDelete($path);
|
|
} else {
|
|
unlink($path);
|
|
}
|
|
}
|
|
|
|
rmdir($dir);
|
|
}
|
|
|
|
class ClientTest extends PHPUnit_Framework_TestCase
|
|
{
|
|
protected $client;
|
|
protected $repoPath = '/tmp/gitlist/testrepo';
|
|
|
|
public static function setUpBeforeClass()
|
|
{
|
|
mkdir('/tmp/gitlist');
|
|
}
|
|
|
|
public function setUp()
|
|
{
|
|
if (!is_writable('/tmp/gitlist')) {
|
|
$this->markTestSkipped('There are no write permissions in order to create test repositories.');
|
|
}
|
|
|
|
$this->client = new Client('/usr/bin/git');
|
|
}
|
|
|
|
/**
|
|
* @expectedException RuntimeException
|
|
*/
|
|
public function testIsNotFindingRepositories()
|
|
{
|
|
$this->client->getRepositories($this->repoPath);
|
|
}
|
|
|
|
/**
|
|
* @expectedException RuntimeException
|
|
*/
|
|
public function testIsNotAbleToGetUnexistingRepository()
|
|
{
|
|
$this->client->getRepository($this->repoPath);
|
|
}
|
|
|
|
public function testIsCreatingRepository()
|
|
{
|
|
$repository = $this->client->createRepository($this->repoPath);
|
|
$this->assertRegExp("/nothing to commit/", $repository->getClient()->run($repository, 'status'));
|
|
}
|
|
|
|
/**
|
|
* @expectedException RuntimeException
|
|
*/
|
|
public function testIsNotAbleToCreateRepositoryDueToExistingOne()
|
|
{
|
|
$this->client->createRepository($this->repoPath);
|
|
}
|
|
|
|
public function testIsListingRepositories()
|
|
{
|
|
$this->client->createRepository($this->repoPath . '/../anothertestrepo');
|
|
$this->client->createRepository($this->repoPath . '/../bigbadrepo');
|
|
$repositories = $this->client->getRepositories($this->repoPath . '/../');
|
|
|
|
$this->assertEquals($repositories[0]['name'], 'anothertestrepo');
|
|
$this->assertEquals($repositories[1]['name'], 'bigbadrepo');
|
|
$this->assertEquals($repositories[2]['name'], 'testrepo');
|
|
}
|
|
|
|
public function testIsConfiguratingRepository()
|
|
{
|
|
$repository = $this->client->getRepository($this->repoPath);
|
|
$repository->setConfig('user.name', 'Luke Skywalker');
|
|
$repository->setConfig('user.email', 'luke@republic.com');
|
|
|
|
$this->assertEquals($repository->getConfig('user.name'), 'Luke Skywalker');
|
|
$this->assertEquals($repository->getConfig('user.email'), 'luke@republic.com');
|
|
}
|
|
|
|
/**
|
|
* @depends testIsCreatingRepository
|
|
*/
|
|
public function testIsAdding()
|
|
{
|
|
$repository = $this->client->getRepository($this->repoPath);
|
|
file_put_contents($this->repoPath . '/test_file.txt', 'Your mother is so ugly, glCullFace always returns TRUE.');
|
|
$repository->add('test_file.txt');
|
|
$this->assertRegExp("/new file: test_file.txt/", $repository->getClient()->run($repository, 'status'));
|
|
}
|
|
|
|
/**
|
|
* @depends testIsAdding
|
|
*/
|
|
public function testIsAddingDot()
|
|
{
|
|
$repository = $this->client->getRepository($this->repoPath);
|
|
|
|
file_put_contents($this->repoPath . '/test_file1.txt', 'Your mother is so ugly, glCullFace always returns TRUE.');
|
|
file_put_contents($this->repoPath . '/test_file2.txt', 'Your mother is so ugly, glCullFace always returns TRUE.');
|
|
file_put_contents($this->repoPath . '/test_file3.txt', 'Your mother is so ugly, glCullFace always returns TRUE.');
|
|
|
|
$repository->add();
|
|
|
|
$this->assertRegExp("/new file: test_file1.txt/", $repository->getClient()->run($repository, 'status'));
|
|
$this->assertRegExp("/new file: test_file2.txt/", $repository->getClient()->run($repository, 'status'));
|
|
$this->assertRegExp("/new file: test_file3.txt/", $repository->getClient()->run($repository, 'status'));
|
|
}
|
|
|
|
/**
|
|
* @depends testIsAddingDot
|
|
*/
|
|
public function testIsAddingAll()
|
|
{
|
|
$repository = $this->client->getRepository($this->repoPath);
|
|
|
|
file_put_contents($this->repoPath . '/test_file4.txt', 'Your mother is so ugly, glCullFace always returns TRUE.');
|
|
file_put_contents($this->repoPath . '/test_file5.txt', 'Your mother is so ugly, glCullFace always returns TRUE.');
|
|
file_put_contents($this->repoPath . '/test_file6.txt', 'Your mother is so ugly, glCullFace always returns TRUE.');
|
|
|
|
$repository->addAll();
|
|
|
|
$this->assertRegExp("/new file: test_file4.txt/", $repository->getClient()->run($repository, 'status'));
|
|
$this->assertRegExp("/new file: test_file5.txt/", $repository->getClient()->run($repository, 'status'));
|
|
$this->assertRegExp("/new file: test_file6.txt/", $repository->getClient()->run($repository, 'status'));
|
|
}
|
|
|
|
/**
|
|
* @depends testIsAddingAll
|
|
*/
|
|
public function testIsCommiting()
|
|
{
|
|
$repository = $this->client->getRepository($this->repoPath);
|
|
$repository->commit("The truth unveiled");
|
|
$this->assertRegExp("/The truth unveiled/", $repository->getClient()->run($repository, 'log'));
|
|
}
|
|
|
|
public function testIsCreatingBranches()
|
|
{
|
|
$repository = $this->client->getRepository($this->repoPath);
|
|
$repository->createBranch('issue12');
|
|
$repository->createBranch('issue42');
|
|
$branches = $repository->getBranches();
|
|
$this->assertContains('issue12', $branches);
|
|
$this->assertContains('issue42', $branches);
|
|
$this->assertContains('master', $branches);
|
|
}
|
|
|
|
public function testIsGettingCurrentBranch()
|
|
{
|
|
$repository = $this->client->getRepository($this->repoPath);
|
|
$branch = $repository->getCurrentBranch();
|
|
$this->assertTrue($branch === 'master');
|
|
}
|
|
|
|
/**
|
|
* @depends testIsCommiting
|
|
*/
|
|
public function testIsGettingCommits()
|
|
{
|
|
$repository = $this->client->getRepository($this->repoPath);
|
|
$commits = $repository->getCommits();
|
|
|
|
foreach ($commits as $commit) {
|
|
$this->assertInstanceOf('Git\Commit\Commit', $commit);
|
|
$this->assertTrue($commit->getMessage() === 'The truth unveiled');
|
|
$this->assertInstanceOf('Git\Commit\Author', $commit->getAuthor());
|
|
$this->assertEquals($commit->getAuthor()->getName(), 'Luke Skywalker');
|
|
$this->assertEquals($commit->getAuthor()->getEmail(), 'luke@republic.com');
|
|
$this->assertEquals($commit->getCommiter()->getName(), 'Luke Skywalker');
|
|
$this->assertEquals($commit->getCommiter()->getEmail(), 'luke@republic.com');
|
|
$this->assertEquals($commit->getParentHash(), '');
|
|
$this->assertInstanceOf('DateTime', $commit->getDate());
|
|
$this->assertInstanceOf('DateTime', $commit->getCommiterDate());
|
|
$this->assertRegExp('/[a-f0-9]+/', $commit->getHash());
|
|
$this->assertRegExp('/[a-f0-9]+/', $commit->getShortHash());
|
|
$this->assertRegExp('/[a-f0-9]+/', $commit->getTreeHash());
|
|
}
|
|
}
|
|
|
|
/**
|
|
* @depends testIsGettingCommits
|
|
*/
|
|
public function testIsGettingCommitsFromSpecificFile()
|
|
{
|
|
$repository = $this->client->getRepository($this->repoPath);
|
|
$commits = $repository->getCommits('test_file4.txt');
|
|
|
|
foreach ($commits as $commit) {
|
|
$this->assertInstanceOf('Git\Commit\Commit', $commit);
|
|
$this->assertTrue($commit->getMessage() === 'The truth unveiled');
|
|
$this->assertInstanceOf('Git\Commit\Author', $commit->getAuthor());
|
|
$this->assertEquals($commit->getAuthor()->getName(), 'Luke Skywalker');
|
|
$this->assertEquals($commit->getAuthor()->getEmail(), 'luke@republic.com');
|
|
}
|
|
}
|
|
|
|
public function testIsGettingTree()
|
|
{
|
|
$repository = $this->client->getRepository($this->repoPath);
|
|
$files = $repository->getTree('master');
|
|
|
|
foreach ($files as $file) {
|
|
$this->assertInstanceOf('Git\Model\Blob', $file);
|
|
$this->assertRegExp('/test_file[0-9]*.txt/', $file->getName());
|
|
$this->assertEquals($file->getSize(), '55');
|
|
$this->assertEquals($file->getMode(), '100644');
|
|
$this->assertRegExp('/[a-f0-9]+/', $file->getHash());
|
|
}
|
|
}
|
|
|
|
public function testIsGettingTreeOutput()
|
|
{
|
|
$repository = $this->client->getRepository($this->repoPath);
|
|
$files = $repository->getTree('master')->output();
|
|
|
|
foreach ($files as $file) {
|
|
$this->assertEquals('blob', $file['type']);
|
|
$this->assertRegExp('/test_file[0-9]*.txt/', $file['name']);
|
|
$this->assertEquals($file['size'], '55');
|
|
$this->assertEquals($file['mode'], '100644');
|
|
$this->assertRegExp('/[a-f0-9]+/', $file['hash']);
|
|
}
|
|
}
|
|
|
|
public function testIsGettingTreesWithinTree()
|
|
{
|
|
$repository = $this->client->getRepository($this->repoPath);
|
|
|
|
// Creating folders
|
|
mkdir($this->repoPath . '/MyFolder');
|
|
mkdir($this->repoPath . '/MyTest');
|
|
mkdir($this->repoPath . '/MyFolder/Tests');
|
|
|
|
// Populating created folders
|
|
file_put_contents($this->repoPath . '/MyFolder/crazy.php', 'Lorem ipsum dolor sit amet');
|
|
file_put_contents($this->repoPath . '/MyFolder/skywalker.php', 'Lorem ipsum dolor sit amet');
|
|
file_put_contents($this->repoPath . '/MyTest/fortytwo.php', 'Lorem ipsum dolor sit amet');
|
|
file_put_contents($this->repoPath . '/MyFolder/Tests/web.php', 'Lorem ipsum dolor sit amet');
|
|
file_put_contents($this->repoPath . '/MyFolder/Tests/cli.php', 'Lorem ipsum dolor sit amet');
|
|
|
|
// Adding and commiting
|
|
$repository->addAll();
|
|
$repository->commit("Creating folders for testIsGettingTreesWithinTrees");
|
|
|
|
// Checking tree
|
|
$files = $repository->getTree('master')->output();
|
|
|
|
$this->assertEquals('folder', $files[0]['type']);
|
|
$this->assertEquals('MyFolder', $files[0]['name']);
|
|
$this->assertEquals('', $files[0]['size']);
|
|
$this->assertEquals('040000', $files[0]['mode']);
|
|
$this->assertEquals('4143e982237f3bdf56b5350f862c334054aad69e', $files[0]['hash']);
|
|
|
|
$this->assertEquals('folder', $files[1]['type']);
|
|
$this->assertEquals('MyTest', $files[1]['name']);
|
|
$this->assertEquals('', $files[1]['size']);
|
|
$this->assertEquals('040000', $files[1]['mode']);
|
|
$this->assertEquals('632240595eabd59e4217d196d6c12efb81f9c011', $files[1]['hash']);
|
|
|
|
$this->assertEquals('blob', $files[2]['type']);
|
|
$this->assertEquals('test_file.txt', $files[2]['name']);
|
|
$this->assertEquals('55', $files[2]['size']);
|
|
$this->assertEquals('100644', $files[2]['mode']);
|
|
$this->assertEquals('a773bfc0fda6f878e3d17d78c667d18297c8831f', $files[2]['hash']);
|
|
}
|
|
|
|
public function testIsGettingBlobsWithinTrees()
|
|
{
|
|
$repository = $this->client->getRepository($this->repoPath);
|
|
$files = $repository->getTree('master:MyFolder/')->output();
|
|
|
|
$this->assertEquals('folder', $files[0]['type']);
|
|
$this->assertEquals('Tests', $files[0]['name']);
|
|
$this->assertEquals('', $files[0]['size']);
|
|
$this->assertEquals('040000', $files[0]['mode']);
|
|
$this->assertEquals('8542f67d011ff2ea5ec49a729ba81a52935676d1', $files[0]['hash']);
|
|
|
|
$this->assertEquals('blob', $files[1]['type']);
|
|
$this->assertEquals('crazy.php', $files[1]['name']);
|
|
$this->assertEquals('26', $files[1]['size']);
|
|
$this->assertEquals('100644', $files[1]['mode']);
|
|
$this->assertEquals('d781006b2d05cc31751954a0fb920c990e825aad', $files[1]['hash']);
|
|
|
|
$this->assertEquals('blob', $files[2]['type']);
|
|
$this->assertEquals('skywalker.php', $files[2]['name']);
|
|
$this->assertEquals('26', $files[2]['size']);
|
|
$this->assertEquals('100644', $files[2]['mode']);
|
|
$this->assertEquals('d781006b2d05cc31751954a0fb920c990e825aad', $files[2]['hash']);
|
|
}
|
|
|
|
public function testIsGettingBlobOutput()
|
|
{
|
|
$repository = $this->client->getRepository($this->repoPath);
|
|
$blob = $repository->getBlob('master:MyFolder/crazy.php')->output();
|
|
$this->assertEquals('Lorem ipsum dolor sit amet', $blob);
|
|
|
|
$blob = $repository->getBlob('master:test_file4.txt')->output();
|
|
$this->assertEquals('Your mother is so ugly, glCullFace always returns TRUE.', $blob);
|
|
}
|
|
|
|
public function testIsGettingStatistics()
|
|
{
|
|
$repository = $this->client->getRepository($this->repoPath);
|
|
$stats = $repository->getStatistics('master');
|
|
|
|
$this->assertEquals('7', $stats['extensions']['.txt']);
|
|
$this->assertEquals('5', $stats['extensions']['.php']);
|
|
$this->assertEquals('515', $stats['size']);
|
|
$this->assertEquals('12', $stats['files']);
|
|
}
|
|
|
|
public function testIsGettingAuthorStatistics()
|
|
{
|
|
$repository = $this->client->getRepository($this->repoPath);
|
|
$stats = $repository->getAuthorStatistics();
|
|
|
|
$this->assertEquals('Luke Skywalker', $stats[0]['name']);
|
|
$this->assertEquals('luke@republic.com', $stats[0]['email']);
|
|
$this->assertEquals('2', $stats[0]['commits']);
|
|
|
|
$repository->setConfig('user.name', 'Princess Leia');
|
|
$repository->setConfig('user.email', 'sexyleia@republic.com');
|
|
file_put_contents($this->repoPath . '/MyFolder/crazy.php', 'Lorem ipsum dolor sit AMET');
|
|
$repository->addAll();
|
|
$repository->commit("Fixing AMET case");
|
|
|
|
$stats = $repository->getAuthorStatistics();
|
|
|
|
$this->assertEquals('Luke Skywalker', $stats[0]['name']);
|
|
$this->assertEquals('luke@republic.com', $stats[0]['email']);
|
|
$this->assertEquals('2', $stats[0]['commits']);
|
|
|
|
$this->assertEquals('Princess Leia', $stats[1]['name']);
|
|
$this->assertEquals('sexyleia@republic.com', $stats[1]['email']);
|
|
$this->assertEquals('1', $stats[1]['commits']);
|
|
}
|
|
|
|
public static function tearDownAfterClass()
|
|
{
|
|
recursiveDelete('/tmp/gitlist');
|
|
}
|
|
}
|