Skip to content

Commit 415b966

Browse files
committed
Parse refs as well
1 parent a33d1c7 commit 415b966

File tree

4 files changed

+38
-2
lines changed

4 files changed

+38
-2
lines changed

Logic/Commit.cs

+1
Original file line numberDiff line numberDiff line change
@@ -4,5 +4,6 @@ public class Commit
44
{
55
public string Hash { get; set; }
66
public string[] ParentHashes { get; set; }
7+
public string[] Refs { get; set; }
78
}
89
}

Logic/LogParser.cs

+12-2
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,7 @@
11
using System;
22
using System.Collections.Generic;
33
using System.IO;
4+
using System.Linq;
45
using System.Text.RegularExpressions;
56

67
namespace GitViz.Logic
@@ -20,7 +21,7 @@ public IEnumerable<Commit> ParseCommits(StreamReader gitLogOutput)
2021
gitLogOutput.Close();
2122
}
2223

23-
static readonly Regex ParseCommitRegex = new Regex(@"^(?<hash>\w{7})(?<parentHashes>( \w{7})+)?");
24+
static readonly Regex ParseCommitRegex = new Regex(@"^(?<hash>\w{7})(?<parentHashes>( \w{7})+)?([ ]+\((?<refs>.*?)\))?");
2425

2526
internal static Commit ParseCommit(string logOutputLine)
2627
{
@@ -30,10 +31,19 @@ internal static Commit ParseCommit(string logOutputLine)
3031
? match.Groups["parentHashes"].Value.Split(new[] {' '}, StringSplitOptions.RemoveEmptyEntries)
3132
: null;
3233

34+
var refs = match.Groups["refs"].Success
35+
? match.Groups["refs"]
36+
.Value
37+
.Split(new[] { ',' }, StringSplitOptions.RemoveEmptyEntries)
38+
.Select(r => r.Trim())
39+
.ToArray()
40+
: null;
41+
3342
return new Commit
3443
{
3544
Hash = match.Groups["hash"].Value,
36-
ParentHashes = parentHashes
45+
ParentHashes = parentHashes,
46+
Refs = refs
3747
};
3848
}
3949
}

Tests/LogParserTests/ParseCommit.cs

+8
Original file line numberDiff line numberDiff line change
@@ -10,6 +10,14 @@ public class ParseCommit
1010
"4be5ef1",
1111
Description = "Initial commit",
1212
Result = "{Hash:4be5ef1}")]
13+
[TestCase(
14+
"4be5ef1 (HEAD, master)",
15+
Description = "Initial commit with head and master",
16+
Result = "{Hash:4be5ef1,Refs:[HEAD,master]}")]
17+
[TestCase(
18+
"4be5ef1 (HEAD, origin/master, origin/HEAD, master)",
19+
Description = "Initial commit with head and remote master",
20+
Result = "{Hash:4be5ef1,Refs:[HEAD,origin/master,origin/HEAD,master]}")]
1321
[TestCase(
1422
"4e4224c 4be5ef1",
1523
Description = "Commit with one parent",

Tests/LogRetrieverTests.cs

+17
Original file line numberDiff line numberDiff line change
@@ -45,6 +45,23 @@ public void ShouldReturnSingleCommitWithHashButNoParents()
4545
}
4646
}
4747

48+
[Test]
49+
public void ShouldReturnSingleCommitWithLocalRefs()
50+
{
51+
using (var tempFolder = new TemporaryFolder())
52+
{
53+
var tempRepository = new TemporaryRepository(tempFolder);
54+
tempRepository.RunCommand("init");
55+
TouchFileAndCommit(tempRepository);
56+
57+
var executor = new GitCommandExecutor(tempFolder.Path);
58+
var log = new LogRetriever(executor).GetLog().ToArray();
59+
60+
var commit = log.Single();
61+
CollectionAssert.AreEqual(new[] { "HEAD", "master" }, commit.Refs);
62+
}
63+
}
64+
4865
[Test]
4966
public void ShouldReturnTwoCommits()
5067
{

0 commit comments

Comments
 (0)