GitTest.cs :  » Build-Systems » CruiseControl.NET » ThoughtWorks » CruiseControl » UnitTests » Core » Sourcecontrol » C# / CSharp Open Source

Home
C# / CSharp Open Source
1.2.6.4 mono .net core
2.2.6.4 mono core
3.Aspect Oriented Frameworks
4.Bloggers
5.Build Systems
6.Business Application
7.Charting Reporting Tools
8.Chat Servers
9.Code Coverage Tools
10.Content Management Systems CMS
11.CRM ERP
12.Database
13.Development
14.Email
15.Forum
16.Game
17.GIS
18.GUI
19.IDEs
20.Installers Generators
21.Inversion of Control Dependency Injection
22.Issue Tracking
23.Logging Tools
24.Message
25.Mobile
26.Network Clients
27.Network Servers
28.Office
29.PDF
30.Persistence Frameworks
31.Portals
32.Profilers
33.Project Management
34.RSS RDF
35.Rule Engines
36.Script
37.Search Engines
38.Sound Audio
39.Source Control
40.SQL Clients
41.Template Engines
42.Testing
43.UML
44.Web Frameworks
45.Web Service
46.Web Testing
47.Wiki Engines
48.Windows Presentation Foundation
49.Workflows
50.XML Parsers
C# / C Sharp
C# / C Sharp by API
C# / CSharp Tutorial
C# / CSharp Open Source » Build Systems » CruiseControl.NET 
CruiseControl.NET » ThoughtWorks » CruiseControl » UnitTests » Core » Sourcecontrol » GitTest.cs
using NUnit.Framework;
using System;
using System.Collections.Generic;
using System.Text;
using ThoughtWorks.CruiseControl.Core.Util;
using System.IO;
using NMock;
using ThoughtWorks.CruiseControl.Core.Sourcecontrol;
using ThoughtWorks.CruiseControl.UnitTests.Core;
using Exortech.NetReflector;
using ThoughtWorks.CruiseControl.Core;
using NMock.Constraints;

namespace ThoughtWorks.CruiseControl.UnitTests.Core.Sourcecontrol{
  [TestFixture]
  public class GitTest : ProcessExecutorTestFixtureBase
  {
    const string GIT_CLONE = "clone xyz.git";
    const string GIT_FETCH = "fetch origin";
    const string GIT_REMOTE_HASH = "log origin/master --date-order -1 --pretty=format:\"%H\"";
    const string GIT_LOCAL_HASH = "log --date-order -1 --pretty=format:\"%H\"";
    string GIT_REMOTE_COMMITS = "log origin/master --date-order --name-status -c \"--after={0}\" \"--before={1}\" --pretty=format:\"Commit:%H%nTime:%ci%nAuthor:%an%nE-Mail:%ae%nMessage:%s%n%n%b%nChanges:\"";

    private Git git;
    private IMock mockHistoryParser;
    private DateTime from;
    private DateTime to;
    private IMock mockFileSystem;
    private IMock mockFileDirectoryDeleter;

    [SetUp]
    protected void CreateGit()
    {
      mockHistoryParser = new DynamicMock(typeof(IHistoryParser));
      mockFileSystem = new DynamicMock(typeof(IFileSystem));
      mockFileDirectoryDeleter = new DynamicMock(typeof(IFileDirectoryDeleter));
      CreateProcessExecutorMock("git");

      from = new DateTime(2001, 1, 21, 20, 0, 0, DateTimeKind.Local);
      to = from.AddDays(1);

      GIT_REMOTE_COMMITS = string.Format(GIT_REMOTE_COMMITS, from.ToUniversalTime().ToString("R"),
                         to.ToUniversalTime().ToString("R"));

      SetupGit((IFileSystem)mockFileSystem.MockInstance, (IFileDirectoryDeleter)mockFileDirectoryDeleter.MockInstance);
    }

    [TearDown]
    protected void VerifyAll()
    {
      Verify();
      mockHistoryParser.Verify();
      mockFileSystem.Verify();
    }

    [Test]
    public void GitShouldBeDefaultExecutable()
    {
      Assert.AreEqual("git", git.Executable, "#A1");
    }

    [Test]
    public void PopulateFromFullySpecifiedXml()
    {
      const string xml = @"
<git>
  <executable>git</executable>
  <repository>c:\git\ccnet\mygitrepo</repository>
  <branch>master</branch>
  <timeout>5</timeout>
  <workingDirectory>c:\git\working</workingDirectory>
  <tagOnSuccess>true</tagOnSuccess>
  <commitBuildModifications>true</commitBuildModifications>
  <commitUntrackedFiles>true</commitUntrackedFiles>
  <autoGetSource>true</autoGetSource>
  <tagCommitMessage>CCNet Test Build {0}</tagCommitMessage>
  <tagNameFormat>{0}</tagNameFormat>
  <committerName>Max Mustermann</committerName>
  <committerEMail>max.mustermann@gmx.de</committerEMail>
</git>";

      git = (Git)NetReflector.Read(xml);
      Assert.AreEqual("git", git.Executable, "#B1");
      Assert.AreEqual(@"c:\git\ccnet\mygitrepo", git.Repository, "#B2");
      Assert.AreEqual("master", git.Branch, "#B3");
      Assert.AreEqual(new Timeout(5), git.Timeout, "#B4");
      Assert.AreEqual(@"c:\git\working", git.WorkingDirectory, "#B5");
      Assert.AreEqual(true, git.TagOnSuccess, "#B6");
      Assert.AreEqual(true, git.AutoGetSource, "#B7");
      Assert.AreEqual("CCNet Test Build {0}", git.TagCommitMessage, "#B8");
      Assert.AreEqual("{0}", git.TagNameFormat, "#B9");
      Assert.AreEqual("Max Mustermann", git.CommitterName, "#B10");
      Assert.AreEqual("max.mustermann@gmx.de", git.CommitterEMail, "#B11");
      Assert.AreEqual(true, git.CommitBuildModifications, "#B12");
      Assert.AreEqual(true, git.CommitUntrackedFiles, "#B13");
    }

    [Test]
    public void PopulateFromMinimallySpecifiedXml()
    {
      const string xml = @"
<git>
    <repository>c:\git\ccnet\mygitrepo</repository>
</git>";
      git = (Git)NetReflector.Read(xml);
      Assert.AreEqual(@"git", git.Executable, "#C1");
      Assert.AreEqual(@"c:\git\ccnet\mygitrepo", git.Repository, "#C2");
      Assert.AreEqual(@"master", git.Branch, "#C3");
      Assert.AreEqual(new Timeout(600000), git.Timeout, "#C4");
      Assert.AreEqual(null, git.WorkingDirectory, "#C5");
      Assert.AreEqual(false, git.TagOnSuccess, "#C6");
      Assert.AreEqual(true, git.AutoGetSource, "#C7");
      Assert.AreEqual("CCNet Build {0}", git.TagCommitMessage, "#C8");
      Assert.AreEqual("CCNet-Build-{0}", git.TagNameFormat, "#C9");
      Assert.AreEqual(null, git.CommitterName, "#C10");
      Assert.AreEqual(null, git.CommitterEMail, "#C11");
      Assert.AreEqual(false, git.CommitBuildModifications, "#C12");
      Assert.AreEqual(false, git.CommitUntrackedFiles, "#C13");
    }

    [Test]
    public void ShouldApplyLabelIfTagOnSuccessTrue()
    {
      git.TagOnSuccess = true;

      ExpectToExecuteArguments(@"tag -a -m ""CCNet Build foo"" CCNet-Build-foo");
      ExpectToExecuteArguments(@"push origin tag CCNet-Build-foo");

      git.LabelSourceControl(IntegrationResultMother.CreateSuccessful("foo"));
    }

    [Test]
    public void ShouldCommitBuildModificationsAndApplyLabelIfCommitBuildModificationsAndTagOnSuccessIsTrue()
    {
      git.TagOnSuccess = true;
      git.CommitBuildModifications = true;

      ExpectToExecuteArguments(@"commit --all --allow-empty -m ""CCNet Build foo""");
      ExpectToExecuteArguments(@"tag -a -m ""CCNet Build foo"" CCNet-Build-foo");
      ExpectToExecuteArguments(@"push origin tag CCNet-Build-foo");

      git.LabelSourceControl(IntegrationResultMother.CreateSuccessful("foo"));
    }

    [Test]
    public void ShouldAddAndCommitBuildModificationsAndApplyLabelIfCommitUntrackedFilesAndCommitBuildModificationsAndTagOnSuccessIsTrue()
    {
      git.TagOnSuccess = true;
      git.CommitBuildModifications = true;
      git.CommitUntrackedFiles = true;

      ExpectToExecuteArguments(@"add --all");
      ExpectToExecuteArguments(@"commit --all --allow-empty -m ""CCNet Build foo""");
      ExpectToExecuteArguments(@"tag -a -m ""CCNet Build foo"" CCNet-Build-foo");
      ExpectToExecuteArguments(@"push origin tag CCNet-Build-foo");

      git.LabelSourceControl(IntegrationResultMother.CreateSuccessful("foo"));
    }

    [Test]
    public void ShouldApplyLabelIfTagOnSuccessTrueAndNotAddFilesIfCommitBuildModificationsIsFalseAndCommitUntrackedFilesIsTrue()
    {
      git.TagOnSuccess = true;
      git.CommitBuildModifications = false;
      git.CommitUntrackedFiles = true;

      ExpectToExecuteArguments(@"tag -a -m ""CCNet Build foo"" CCNet-Build-foo");
      ExpectToExecuteArguments(@"push origin tag CCNet-Build-foo");

      git.LabelSourceControl(IntegrationResultMother.CreateSuccessful("foo"));
    }

    [Test]
    public void ShouldApplyLabelWithCustomMessageIfTagOnSuccessTrueAndACustomMessageIsSpecified()
    {
      git.TagOnSuccess = true;
      git.TagCommitMessage = "a---- {0} ----a";

      ExpectToExecuteArguments(@"tag -a -m ""a---- foo ----a"" CCNet-Build-foo");
      ExpectToExecuteArguments(@"push origin tag CCNet-Build-foo");

      git.LabelSourceControl(IntegrationResultMother.CreateSuccessful("foo"));
    }

    [Test]
    public void ShouldApplyTagNameFormatWithCustomFormatIfTagOnSuccessTrueAndATagNameFormatIsSpecified()
    {
      git.TagOnSuccess = true;
      git.TagNameFormat = "Build/{0}";

      ExpectToExecuteArguments(@"tag -a -m ""CCNet Build foo"" Build/foo");
      ExpectToExecuteArguments(@"push origin tag Build/foo");

      git.LabelSourceControl(IntegrationResultMother.CreateSuccessful("foo"));
    }

    [Test]
    public void ShouldCloneIfDirectoryDoesntExist()
    {
      mockFileSystem.ExpectAndReturn("DirectoryExists", false, DefaultWorkingDirectory);

      ExpectToExecuteArguments(string.Concat(GIT_CLONE, " ", StringUtil.AutoDoubleQuoteString(DefaultWorkingDirectory)), Path.GetDirectoryName(DefaultWorkingDirectory.TrimEnd(Path.DirectorySeparatorChar)));

      ExpectToExecuteArguments("config --get user.name");
      ExpectToExecuteArguments("config --get user.email");

      ExpectToExecuteArguments("log origin/master --date-order -1 --pretty=format:\"%H\"");

      ExpectToExecuteArguments(GIT_REMOTE_COMMITS);

      git.GetModifications(IntegrationResult(from), IntegrationResult(to));
    }

    [Test]
    [Ignore("Does not correctly work")]
    public void ShouldCloneAndDeleteWorkingDirIfGitDirectoryDoesntExist()
    {
      mockFileSystem.ExpectAndReturn("DirectoryExists", true, DefaultWorkingDirectory);
      mockFileSystem.ExpectAndReturn("DirectoryExists", false, Path.Combine(DefaultWorkingDirectory, ".git"));

      ExpectToExecuteArguments(string.Concat(GIT_CLONE, " ", StringUtil.AutoDoubleQuoteString(DefaultWorkingDirectory)), Path.GetDirectoryName(DefaultWorkingDirectory.TrimEnd(Path.DirectorySeparatorChar)));

      ExpectToExecuteArguments("log origin/master --date-order -1 --pretty=format:\"%H\"");

      ExpectToExecuteArguments(GIT_REMOTE_COMMITS);

      git.GetModifications(IntegrationResult(from), IntegrationResult(to));
    }

    [Test]
    public void ShouldNotGetModificationsWhenHashsMatch()
    {
      mockFileSystem.ExpectAndReturn("DirectoryExists", true, DefaultWorkingDirectory);
      mockFileSystem.ExpectAndReturn("DirectoryExists", true, Path.Combine(DefaultWorkingDirectory, ".git"));

      ExpectToExecuteArguments(GIT_FETCH);

      ExpectToExecuteWithArgumentsAndReturn(GIT_REMOTE_HASH, new ProcessResult("abcdef", "", 0, false));
      ExpectToExecuteWithArgumentsAndReturn(GIT_LOCAL_HASH, new ProcessResult("abcdef", "", 0, false));

      Modification[] mods = git.GetModifications(IntegrationResult(from), IntegrationResult(to));

      Assert.AreEqual(0, mods.Length);
    }

    private void ExpectToExecuteWithArgumentsAndReturn(string args, ProcessResult returnValue)
    {
      mockProcessExecutor.ExpectAndReturn("Execute", returnValue, NewProcessInfo(args, DefaultWorkingDirectory));
    }

    [Test]
    public void ShouldGetSourceIfModificationsFound()
    {
      git.AutoGetSource = true;

      ExpectToExecuteArguments("checkout -q -f origin/master");
      ExpectToExecuteArguments("clean -d -f -x");

      git.GetSource(IntegrationResult());
    }

    [Test]
    public void ShouldNotApplyLabelIfIntegrationFailed()
    {
      git.TagOnSuccess = true;

      ExpectThatExecuteWillNotBeCalled();

      git.LabelSourceControl(IntegrationResultMother.CreateFailed());
    }

    [Test]
    public void ShouldNotApplyLabelIfTagOnSuccessFalse()
    {
      git.TagOnSuccess = false;

      ExpectThatExecuteWillNotBeCalled();

      git.LabelSourceControl(IntegrationResultMother.CreateSuccessful());
    }

    [Test]
    public void ShouldNotGetSourceIfAutoGetSourceFalse()
    {
      git.AutoGetSource = false;

      ExpectThatExecuteWillNotBeCalled();

      git.GetSource(IntegrationResult());
    }

    [Test]
    public void ShouldReturnModificationsWhenHashsDifferent()
    {
      mockFileSystem.ExpectAndReturn("DirectoryExists", true, DefaultWorkingDirectory);
      mockFileSystem.ExpectAndReturn("DirectoryExists", true, Path.Combine(DefaultWorkingDirectory, ".git"));

      Modification[] modifications = new Modification[2] { new Modification(), new Modification() };

      ExpectToExecuteArguments(GIT_FETCH);

      ExpectToExecuteWithArgumentsAndReturn(GIT_REMOTE_HASH, new ProcessResult("abcdef", "", 0, false));
      ExpectToExecuteWithArgumentsAndReturn(GIT_LOCAL_HASH, new ProcessResult("ghijkl", "", 0, false));

      ExpectToExecuteArguments(GIT_REMOTE_COMMITS);

      mockHistoryParser.ExpectAndReturn("Parse", modifications, new IsAnything(), from, new IsAnything());

      Modification[] result = git.GetModifications(IntegrationResult(from), IntegrationResult(to));
      Assert.AreEqual(modifications, result);
    }

    private void SetupGit(IFileSystem filesystem, IFileDirectoryDeleter fileDirectoryDeleter)
    {
      git = new Git((IHistoryParser)mockHistoryParser.MockInstance, (ProcessExecutor)mockProcessExecutor.MockInstance, filesystem, fileDirectoryDeleter);
      git.Repository = @"xyz.git";
      git.WorkingDirectory = DefaultWorkingDirectory;
    }
  }
}
www.java2v.com | Contact Us
Copyright 2009 - 12 Demo Source and Support. All rights reserved.
All other trademarks are property of their respective owners.