CvsTest.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 » CvsTest.cs
using System;
using System.Globalization;
using System.IO;
using Exortech.NetReflector;
using NMock;
using NMock.Constraints;
using NUnit.Framework;
using ThoughtWorks.CruiseControl.Core;
using ThoughtWorks.CruiseControl.Core.Config;
using ThoughtWorks.CruiseControl.Core.Sourcecontrol;
using ThoughtWorks.CruiseControl.Core.Util;

namespace ThoughtWorks.CruiseControl.UnitTests.Core.Sourcecontrol{
  [TestFixture]
    [Ignore("Ignore until fixed!")]
  public class CvsTest : ProcessExecutorTestFixtureBase
  {
    private Cvs cvs;
    private IMock mockHistoryParser;
    private DateTime from;
    private DateTime to;
    private IMock mockFileSystem;
        private IExecutionEnvironment executionEnv;

    [SetUp]
    protected void CreateCvs()
    {
      mockHistoryParser = new DynamicMock(typeof (IHistoryParser));
      mockFileSystem = new DynamicMock(typeof (IFileSystem));
            executionEnv = new ExecutionEnvironment();
      CreateProcessExecutorMock(Cvs.DefaultCvsExecutable);
            cvs = new Cvs((IHistoryParser)mockHistoryParser.MockInstance, (ProcessExecutor)mockProcessExecutor.MockInstance, (IFileSystem)mockFileSystem.MockInstance, executionEnv);
      from = new DateTime(2001, 1, 21, 20, 0, 0);
      to = from.AddDays(1);
    }

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

    private const string xml = @"<sourceControl type=""cvs"" autoGetSource=""true"">
      <executable>..\tools\cvs.exe</executable>
      <workingDirectory>..</workingDirectory>
      <cvsroot>myCvsRoot</cvsroot>
    <branch>branch</branch>
    <module>module</module>
    <suppressRevisionHeader>true</suppressRevisionHeader>
    </sourceControl>";

    [Test]
    public void PopulateFromXml()
    {
      NetReflector.Read(xml, cvs);
      Assert.AreEqual(@"..\tools\cvs.exe", cvs.Executable);
      Assert.AreEqual("..", cvs.WorkingDirectory);
      Assert.AreEqual("myCvsRoot", cvs.CvsRoot);
      Assert.AreEqual("branch", cvs.Branch);
      Assert.AreEqual(true, cvs.AutoGetSource);
      Assert.AreEqual(true, cvs.CleanCopy);
      Assert.AreEqual("module", cvs.Module);
      Assert.AreEqual(true, cvs.SuppressRevisionHeader);
    }

    [Test]
    public void PopulateFromMinimalXml()
    {
      string minimalXml = @"<cvs><executable>c:\cvs\cvs.exe</executable><cvsroot>:local:C:\dev\CVSRoot</cvsroot><module>ccnet</module></cvs>";
      NetReflector.Read(minimalXml, cvs);
      Assert.AreEqual(@"c:\cvs\cvs.exe", cvs.Executable);
      Assert.AreEqual(@":local:C:\dev\CVSRoot", cvs.CvsRoot);
      Assert.AreEqual(@"ccnet", cvs.Module);
      Assert.IsFalse(cvs.SuppressRevisionHeader);
    }

    [Test]
    public void SerializeToXml()
    {
      NetReflector.Read(xml, cvs);
      string y = NetReflector.Write(cvs);
      XmlUtil.VerifyXmlIsWellFormed(y);
    }

    [Test]
    public void VerifyLogCommandArgumentsWithoutCvsRoot()
    {
      ExpectToExecuteArguments(string.Format(@"-q rlog -N -b ""-d>{0}"" module", cvs.FormatCommandDate(from)));
      ExpectToParseAndReturnNoModifications();

      cvs.Module = "module";
      cvs.WorkingDirectory = DefaultWorkingDirectory;
      cvs.GetModifications(IntegrationResult(from), IntegrationResult(to));
    }

    [Test]
    public void VerifyLogCommandArgsWithCvsRootAndBranch()
    {
      ExpectToExecuteArguments(string.Format(@"-d myCvsRoot -q rlog -N -rbranch ""-d>{0}"" module", cvs.FormatCommandDate(from)));
      ExpectToParseAndReturnNoModifications();

      cvs.CvsRoot = "myCvsRoot";
      cvs.Module = "module";
      cvs.Branch = "branch";
      cvs.WorkingDirectory = DefaultWorkingDirectory;
      cvs.GetModifications(IntegrationResult(from), IntegrationResult(to));
    }

    [Test]
    public void ShouldBuildCorrectLogProcessIfRestrictedLogins()
    {
      ExpectToExecuteArguments(string.Format(@"-d myCvsRoot -q rlog -N -b ""-d>{0}"" -wexortech -wmonkey module", cvs.FormatCommandDate(from)));
      ExpectToParseAndReturnNoModifications();

      cvs.CvsRoot = "myCvsRoot";
      cvs.Module = "module";      
      cvs.RestrictLogins = "exortech, monkey";
      cvs.WorkingDirectory = DefaultWorkingDirectory;
      cvs.GetModifications(IntegrationResult(from), IntegrationResult(to));
    }

    [Test]
    public void ShouldBuildCorrectLogProcessIfSuppressRevisionHeaderIsSelected()
    {
      ExpectToExecuteArguments(string.Format(@"-d myCvsRoot -q rlog -N -S -b ""-d>{0}"" module", cvs.FormatCommandDate(from)));
      ExpectToParseAndReturnNoModifications();

      cvs.CvsRoot = "myCvsRoot";
      cvs.Module = "module";
      cvs.SuppressRevisionHeader = true;
      cvs.WorkingDirectory = DefaultWorkingDirectory;
      cvs.GetModifications(IntegrationResult(from), IntegrationResult(to));
    }

    [Test]
    public void CvsShouldBeDefaultExecutable()
    {
      Assert.AreEqual("cvs", cvs.Executable);
    }

    [Test]
    public void VerifyDateIsFormatedCorrectly()
    {
      DateTime dt = DateTime.Parse("2003-01-01 01:01:01 GMT", CultureInfo.InvariantCulture);
      Assert.AreEqual("2003-01-01 01:01:01 GMT", cvs.FormatCommandDate(dt));
    }

    [Test]
    public void VerifyProcessInfoForGetSource()
    {
      ExpectToExecuteArguments(@"-q update -d -P -C");
      ExpectCvsDirectoryExists(true);

      cvs.AutoGetSource = true;
      cvs.CleanCopy = true; // set as default
      cvs.WorkingDirectory = DefaultWorkingDirectory;
      cvs.GetSource(IntegrationResult());
    }

    [Test]
    public void VerifyProcessInfoForGetSourceOnBranch()
    {
      ExpectToExecuteArguments(@"-q update -d -P -C -r branch");
      ExpectCvsDirectoryExists(true);

      cvs.AutoGetSource = true;
      cvs.Branch = "branch";
      cvs.CleanCopy = true; // set as default
      cvs.WorkingDirectory = DefaultWorkingDirectory;
      cvs.GetSource(IntegrationResult());
    }

    [Test]
    public void ShouldCheckoutInsteadOfUpdateIfCVSFoldersDoNotExist()
    {
            var lastDirectorySeparatorIndex = DefaultWorkingDirectory.TrimEnd().TrimEnd(Path.DirectorySeparatorChar).LastIndexOf(Path.DirectorySeparatorChar);
            var checkoutWd = DefaultWorkingDirectory.Substring(0, lastDirectorySeparatorIndex);
            var checkoutDir = DefaultWorkingDirectory.Substring(lastDirectorySeparatorIndex).Trim(Path.DirectorySeparatorChar);

        ExpectToExecuteArguments(
            string.Format(
                @"-d :pserver:anonymous@ccnet.cvs.sourceforge.net:/cvsroot/ccnet -q checkout -R -P -d {0} ccnet",
                    StringUtil.AutoDoubleQuoteString(checkoutDir)), checkoutWd);

      ExpectCvsDirectoryExists(false);

      cvs.CvsRoot = ":pserver:anonymous@ccnet.cvs.sourceforge.net:/cvsroot/ccnet";
      cvs.Module = "ccnet";
      cvs.AutoGetSource = true;
      cvs.WorkingDirectory = DefaultWorkingDirectory;
      cvs.GetSource(IntegrationResult());
    }

    [Test]
    public void ShouldCheckoutFromBranchInsteadOfUpdateIfCVSFoldersDoNotExist()
    {
            var lastDirectorySeparatorIndex = DefaultWorkingDirectory.TrimEnd().TrimEnd(Path.DirectorySeparatorChar).LastIndexOf(Path.DirectorySeparatorChar);
            var checkoutWd = DefaultWorkingDirectory.Substring(0, lastDirectorySeparatorIndex);
            var checkoutDir = DefaultWorkingDirectory.Substring(lastDirectorySeparatorIndex).Trim(Path.DirectorySeparatorChar);

        ExpectToExecuteArguments(
            string.Format(
                @"-d :pserver:anonymous@ccnet.cvs.sourceforge.net:/cvsroot/ccnet -q checkout -R -P -r branch -d {0} ccnet",
                    StringUtil.AutoDoubleQuoteString(checkoutDir)), checkoutWd);

      ExpectCvsDirectoryExists(false);

      cvs.CvsRoot = ":pserver:anonymous@ccnet.cvs.sourceforge.net:/cvsroot/ccnet";
      cvs.Module = "ccnet";
      cvs.AutoGetSource = true;
      cvs.Branch = "branch";
      cvs.WorkingDirectory = DefaultWorkingDirectory;
      cvs.GetSource(IntegrationResult());
    }

    [Test]
    public void ShouldCheckoutOnWorkingDictionaryWithSpaces()
    {
            var lastDirectorySeparatorIndex = DefaultWorkingDirectoryWithSpaces.TrimEnd().TrimEnd(Path.DirectorySeparatorChar).LastIndexOf(Path.DirectorySeparatorChar);
            var checkoutWd = DefaultWorkingDirectoryWithSpaces.Substring(0, lastDirectorySeparatorIndex);
            var checkoutDir = DefaultWorkingDirectoryWithSpaces.Substring(lastDirectorySeparatorIndex).Trim(Path.DirectorySeparatorChar);

        ExpectToExecuteArguments(
            string.Format(
                @"-d :pserver:anonymous@ccnet.cvs.sourceforge.net:/cvsroot/ccnet -q checkout -R -P -r branch -d {0} ccnet",
                    StringUtil.AutoDoubleQuoteString(checkoutDir)), checkoutWd);

      mockFileSystem.ExpectAndReturn("DirectoryExists", false, Path.Combine(DefaultWorkingDirectoryWithSpaces, "CVS"));

      cvs.CvsRoot = ":pserver:anonymous@ccnet.cvs.sourceforge.net:/cvsroot/ccnet";
      cvs.Module = "ccnet";
      cvs.AutoGetSource = true;
      cvs.Branch = "branch";
      cvs.WorkingDirectory = DefaultWorkingDirectoryWithSpaces;
      cvs.GetSource(IntegrationResult());
    }

    [Test]
    public void ShouldThrowExceptionIfCVSRootIsNotSpecifiedAndCVSFoldersDoNotExist()
    {
      ExpectCvsDirectoryExists(false);
      
      cvs.AutoGetSource = true;
            Assert.That(delegate { cvs.GetSource(IntegrationResult()); },
                        Throws.TypeOf<ConfigurationException>());
    }

    [Test]
    public void ShouldUseCvsRootWithGetSource()
    {
      ExpectToExecuteArguments(@"-d myCvsRoot -q update -d -P -C");
      ExpectCvsDirectoryExists(true);

      cvs.AutoGetSource = true;
      cvs.CvsRoot = "myCvsRoot";
      cvs.GetSource(IntegrationResult());
    }

    [Test]
    public void ShouldNotGetSourceIfAutoGetSourceIsFalse()
    {
      ExpectThatExecuteWillNotBeCalled();

      cvs.AutoGetSource = false;
      cvs.GetSource(IntegrationResult());
    }

    [Test]
    public void ShouldRebaseWorkingDirectoryForGetSource()
    {
      ExpectToExecuteArguments(@"-q update -d -P -C", Path.Combine(DefaultWorkingDirectory, "myproject"));
      mockFileSystem.ExpectAndReturn("DirectoryExists", true, Path.Combine(Path.Combine(DefaultWorkingDirectory, "myproject"), "CVS"));

      cvs.AutoGetSource = true;
      cvs.CleanCopy = true; // set as default
      cvs.WorkingDirectory = "myproject";
      IntegrationResult result = new IntegrationResult();
      result.WorkingDirectory = DefaultWorkingDirectory;
      cvs.GetSource(result);
    }

    [Test]
    public void ShouldBuildCorrectLabelProcessInfo()
    {
      ExpectToExecuteArguments("tag ver-foo");
      cvs.LabelOnSuccess = true;
      cvs.WorkingDirectory = DefaultWorkingDirectory;
      cvs.LabelSourceControl(IntegrationResultMother.CreateSuccessful("foo"));
    }

    [Test]
    public void ShouldUseTagPrefixInLabelSpecificationIfSpecified()
    {
      ExpectToExecuteArguments("tag MyCustomPrefix_foo");

      cvs.TagPrefix = "MyCustomPrefix_";
      cvs.LabelOnSuccess = true;
      cvs.WorkingDirectory = DefaultWorkingDirectory;
      cvs.LabelSourceControl(IntegrationResultMother.CreateSuccessful("foo"));
    }

    [Test]
    public void ShouldBuildCorrectLabelProcessInfoIfCvsRootIsSpecified()
    {
      ExpectToExecuteArguments("-d myCvsRoot tag ver-foo");
      cvs.CvsRoot = "myCvsRoot";
      cvs.LabelOnSuccess = true;
      cvs.WorkingDirectory = DefaultWorkingDirectory;
      cvs.LabelSourceControl(IntegrationResultMother.CreateSuccessful("foo"));
    }

    [Test]
    public void ShouldConvertLabelsThatContainIllegalCharacters()
    {
      ExpectToExecuteArguments("-d myCvsRoot tag ver-2_1_4");
      cvs.CvsRoot = "myCvsRoot";
      cvs.LabelOnSuccess = true;
      cvs.WorkingDirectory = DefaultWorkingDirectory;
      cvs.LabelSourceControl(IntegrationResultMother.CreateSuccessful("2.1.4"));
    }

    [Test]
    public void ShouldStripRepositoryFolderFromModificationFolderNames()
    {
      ExpectToExecuteArguments(string.Format(@"-d :pserver:anonymous@cruisecontrol.cvs.sourceforge.net:/cvsroot/cruisecontrol -q rlog -N -b ""-d>{0}"" cruisecontrol", cvs.FormatCommandDate(from)));
      Modification mod = new Modification();
      mod.FolderName = @"/cvsroot/cruisecontrol/cruisecontrol/main";
      ExpectToParseAndReturnModifications(new Modification[]{ mod });

      cvs.CvsRoot = @":pserver:anonymous@cruisecontrol.cvs.sourceforge.net:/cvsroot/cruisecontrol";
      cvs.Module = "cruisecontrol";
      Modification[] modifications = cvs.GetModifications(IntegrationResult(from), IntegrationResult(to));
      Assert.AreEqual("main", modifications[0].FolderName);
    }

    [Test]
    public void ShouldStripRepositoryFolderFromModificationFolderNamesForLocalProtocol()
    {
      ExpectToExecuteArguments(string.Format(@"-d :local:C:\dev\CVSRoot -q rlog -N -b ""-d>{0}"" fitwebservice", cvs.FormatCommandDate(from)));
      Modification mod = new Modification();
      mod.FolderName = @"C:\dev\CVSRoot/fitwebservice/src/fitwebservice/src";
      ExpectToParseAndReturnModifications(new Modification[]{ mod });

      cvs.CvsRoot = @":local:C:\dev\CVSRoot";
      cvs.Module = "fitwebservice";
      Modification[] modifications = cvs.GetModifications(IntegrationResult(from), IntegrationResult(to));
      Assert.AreEqual("src/fitwebservice/src", modifications[0].FolderName);
    }

    private void ExpectToParseAndReturnNoModifications()
    {
      ExpectToParseAndReturnModifications(new Modification[0]);
    }

    private void ExpectToParseAndReturnModifications(Modification[] modifications)
    {
      mockHistoryParser.ExpectAndReturn("Parse", modifications, new IsAnything(), from, to);
    }

    private void ExpectCvsDirectoryExists(bool doesCvsDirectoryExist)
    {
      mockFileSystem.ExpectAndReturn("DirectoryExists", doesCvsDirectoryExist, Path.Combine(DefaultWorkingDirectory, "CVS"));
    }
  }
}
www.java2v.com | Contact Us
Copyright 2009 - 12 Demo Source and Support. All rights reserved.
All other trademarks are property of their respective owners.