SvnTest.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 » SvnTest.cs
using System;
using System.IO;
using System.Text;
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]
  public class SvnTest : ProcessExecutorTestFixtureBase
  {
    private Svn svn;
    private IMock mockHistoryParser;
    private DateTime from;
    private DateTime to;
    private DynamicMock mockFileSystem;

    [SetUp]
    protected void SetUp()
    {
      from = DateTime.Parse("2001-01-21 20:00:00Z");
      to = DateTime.Parse("2001-01-21 20:30:50Z");
      CreateProcessExecutorMock(Svn.DefaultExecutable);
      mockHistoryParser = new DynamicMock(typeof(IHistoryParser));
      mockFileSystem = new DynamicMock(typeof (IFileSystem));
      svn = new Svn((ProcessExecutor) mockProcessExecutor.MockInstance, (IHistoryParser) mockHistoryParser.MockInstance, (IFileSystem) mockFileSystem.MockInstance);
      svn.TrunkUrl = "svn://myserver/mypath";
      svn.TagBaseUrl = "svn://someserver/tags/foo";
      svn.WorkingDirectory = DefaultWorkingDirectory;
    }

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

    [Test]
    public void ShouldGetModificationsEvenWhenTrunkUrlIsNull()
    {
      svn.TrunkUrl = null;
      mockHistoryParser.ExpectAndReturn("Parse", new Modification[0], new IsAnything(), new IsAnything(), new IsAnything());
            ExpectToExecuteArguments("log -r \"{2001-01-21T20:00:00Z}:{2001-01-21T20:30:50Z}\" --verbose --xml --no-auth-cache --non-interactive");

      Modification[] modifications = svn.GetModifications(IntegrationResult(from), IntegrationResult(to));

      Assert.AreEqual(new Modification[0], modifications);
    }

    [Test]
    public void PopulateFromFullySpecifiedXml()
    {
      string xml = @"
<svn>
  <executable>c:\svn\svn.exe</executable>
  <trunkUrl>svn://myserver/mypath</trunkUrl>
  <timeout>5</timeout>
  <workingDirectory>c:\dev\src</workingDirectory>
  <username>user</username>
  <password>password</password>
  <tagOnSuccess>true</tagOnSuccess>
  <tagBaseUrl>svn://myserver/mypath/tags</tagBaseUrl>
  <autoGetSource>true</autoGetSource>
  <checkExternals>true</checkExternals>
</svn>";

      svn = (Svn) NetReflector.Read(xml);
      Assert.AreEqual(@"c:\svn\svn.exe", svn.Executable);
      Assert.AreEqual("svn://myserver/mypath", svn.TrunkUrl);
      Assert.AreEqual(new Timeout(5), svn.Timeout);
      Assert.AreEqual(@"c:\dev\src", svn.WorkingDirectory);
      Assert.AreEqual("user", svn.Username);
      Assert.AreEqual("password", svn.Password.PrivateValue);
      Assert.AreEqual(true, svn.TagOnSuccess);
      Assert.AreEqual(true, svn.AutoGetSource);
      Assert.AreEqual(true, svn.CheckExternals);
      Assert.AreEqual("svn://myserver/mypath/tags", svn.TagBaseUrl);
    }

    [Test]
    public void SpecifyFromMinimallySpecifiedXml()
    {
      string xml = @"<svn/>";
      svn = (Svn) NetReflector.Read(xml);
      Assert.AreEqual("svn", svn.Executable);      
    }

    [Test]
    public void CreatingHistoryProcessIncludesCorrectlyFormattedArguments()
    {
            ExpectToExecuteArguments("log svn://myserver/mypath -r \"{2001-01-21T20:00:00Z}:{2001-01-21T20:30:50Z}\" --verbose --xml --no-auth-cache --non-interactive");
      svn.GetModifications(IntegrationResult(from), IntegrationResult(to));
    }

    [Test]
    public void CreatingHistoryProcessIncludesCorrectlyFormattedArgumentsForUsernameAndPassword()
    {
            string args = @"log svn://myserver/mypath -r ""{2001-01-21T20:00:00Z}:{2001-01-21T20:30:50Z}"" --verbose --xml --username user --password password --no-auth-cache --non-interactive";
      ExpectToExecuteArguments(args);
      svn.Username = "user";
      svn.Password = "password";
      svn.GetModifications(IntegrationResult(from), IntegrationResult(to));
    }

    [Test]
    public void CreatingHistoryProcessShouldQuoteTrunkUrl()
    {
            ExpectToExecuteArguments("log \"svn://my server/mypath\" -r \"{2001-01-21T20:00:00Z}:{2001-01-21T20:30:50Z}\" --verbose --xml --no-auth-cache --non-interactive");
      svn.TrunkUrl = "svn://my server/mypath";
      svn.GetModifications(IntegrationResult(from), IntegrationResult(to));
    }

    [Test]
    public void CreatingHistoryProcessShouldHandleImplicitTrunkUrl()
    {
            ExpectToExecuteArguments("log -r \"{2001-01-21T20:00:00Z}:{2001-01-21T20:30:50Z}\" --verbose --xml --no-auth-cache --non-interactive");
      svn.TrunkUrl = null;
      svn.GetModifications(IntegrationResult(from), IntegrationResult(to));
    }

    [Test]
    public void ShouldRebaseWorkingDirectoryForHistory()
    {
            ExpectToExecuteArguments("log svn://myserver/mypath -r \"{2001-01-21T20:00:00Z}:{2001-01-21T20:30:50Z}\" --verbose --xml --no-auth-cache --non-interactive");
      svn.WorkingDirectory = DefaultWorkingDirectory;
      IIntegrationResult result = IntegrationResult(to);
      result.WorkingDirectory = DefaultWorkingDirectory;
      svn.GetModifications(IntegrationResult(from), result);
    }

    [Test]
    public void ShouldApplyLabelIfTagOnSuccessTrue()
    {
            ExpectToExecuteArguments(string.Format(@"copy -m ""CCNET build foo"" {0} svn://someserver/tags/foo/foo --no-auth-cache --non-interactive", StringUtil.AutoDoubleQuoteString(DefaultWorkingDirectory)));
      svn.TagOnSuccess = true;
      svn.LabelSourceControl(IntegrationResultMother.CreateSuccessful("foo"));
    }

    [Test]
    public void ShouldApplyLabelUsingRebasedWorkingDirectory()
    {
            ExpectToExecuteArguments(string.Format(@"copy -m ""CCNET build foo"" {0} svn://someserver/tags/foo/foo --no-auth-cache --non-interactive", StringUtil.AutoDoubleQuoteString(DefaultWorkingDirectory)));
      svn.TagOnSuccess = true;
      svn.WorkingDirectory = null;
      IIntegrationResult result = IntegrationResult(from);
      result.Label = "foo";
      svn.LabelSourceControl(result);      
    }

    [Test]
    public void CreatingLabelProcessPerformsServerToServerCopyWithRevisionWhenKnown()
    {
      IntegrationResult result = IntegrationResultMother.CreateSuccessful("foo");
            Modification mod = new Modification
            {
                ModifiedTime = new DateTime(2009, 1, 1),
                ChangeNumber = "5"
            };
      svn.latestRevision = 5;
      result.Modifications = new Modification[] { mod };
      svn.mods = result.Modifications;
            ExpectToExecuteArguments(@"copy -m ""CCNET build foo"" svn://myserver/mypath svn://someserver/tags/foo --revision 5 --no-auth-cache --non-interactive");

      svn.TagOnSuccess = true;
      svn.TagBaseUrl = "svn://someserver/tags";
      svn.LabelSourceControl(result);
    }

    [Test]
    public void ShouldNotApplyLabelIfTagOnSuccessFalse()
    {
      ExpectThatExecuteWillNotBeCalled();
      svn.TagOnSuccess = false;
      svn.LabelSourceControl(IntegrationResultMother.CreateSuccessful());
    }

    [Test]
    public void ShouldNotApplyLabelIfIntegrationFailed()
    {
      ExpectThatExecuteWillNotBeCalled();
      svn.TagOnSuccess = true;
      svn.LabelSourceControl(IntegrationResultMother.CreateFailed());
    }

    [Test]
    public void CreatingLabelProcessIncludesCorrectlyFormattedArgumentsForUsernameAndPassword()
    {
            string args = string.Format(@"copy -m ""CCNET build foo"" {0} svn://someserver/tags/foo --username user --password password --no-auth-cache --non-interactive", StringUtil.AutoDoubleQuoteString(DefaultWorkingDirectory));
      ExpectToExecuteArguments(args);

      IIntegrationResult result = IntegrationResult();
      result.Label = "foo";

      svn.TagOnSuccess = true;
      svn.Username = "user";
      svn.Password = "password";
      svn.TagBaseUrl = "svn://someserver/tags";
      svn.LabelSourceControl(result);
    }

    [Test]
    public void ShouldGetSourceWithAppropriateRevisionNumberIfTagOnSuccessTrueAndModificationsFound()
    {
      ExpectSvnDirectoryExists(true);
            ExpectToExecuteArguments(string.Format(@"update {0} --revision 10 --no-auth-cache --non-interactive", StringUtil.AutoDoubleQuoteString(DefaultWorkingDirectory)));

      IIntegrationResult result = IntegrationResult();
      Modification mod = new Modification();
      mod.ChangeNumber = "10";
      svn.latestRevision = 10;
      result.Modifications = new Modification[] {mod};
      svn.mods = result.Modifications;

      svn.AutoGetSource = true;
      svn.GetSource(result);
    }

    // This would happen, e.g., for force build
    [Test]
    public void ShouldGetSourceWithoutRevisionNumberIfTagOnSuccessTrueAndModificationsNotFound()
    {
      ExpectSvnDirectoryExists(true);
            ExpectToExecuteArguments(string.Format(@"update {0} --no-auth-cache --non-interactive", StringUtil.AutoDoubleQuoteString(DefaultWorkingDirectory)));
      svn.AutoGetSource = true;
      svn.GetSource(IntegrationResult());
    }

    [Test]
    public void ShouldGetSourceWithCredentialsIfSpecifiedIfAutoGetSourceTrue()
    {
      ExpectSvnDirectoryExists(true);
            ExpectToExecuteArguments(string.Format(@"update {0} --username ""Buck Rogers"" --password ""My Password"" --no-auth-cache --non-interactive", StringUtil.AutoDoubleQuoteString(DefaultWorkingDirectory)));
      svn.Username = "Buck Rogers";
      svn.Password = "My Password";
      svn.AutoGetSource = true;
      svn.GetSource(IntegrationResult());
    }

    [Test]
    public void ShouldGetSourceWithSpacesInPath()
    {
      mockFileSystem.ExpectAndReturn("DirectoryExists", true, Path.Combine(DefaultWorkingDirectoryWithSpaces, ".svn"));

            ExpectToExecuteArguments(string.Format(@"update {0} --no-auth-cache --non-interactive", StringUtil.AutoDoubleQuoteString(DefaultWorkingDirectoryWithSpaces)), DefaultWorkingDirectoryWithSpaces);
      svn.AutoGetSource = true;
      svn.WorkingDirectory = DefaultWorkingDirectoryWithSpaces;
      svn.GetSource(IntegrationResult());
    }

    [Test]
    public void ShouldNotGetSourceIfAutoGetSourceFalse()
    {
      ExpectThatExecuteWillNotBeCalled();
      svn.AutoGetSource = false;
      svn.GetSource(IntegrationResult());
    }
    
    [Test]
    public void ShouldCheckoutInsteadOfUpdateIfSVNFoldersDoNotExist()
    {
            ExpectToExecuteArguments(string.Format(@"checkout svn://myserver/mypath {0} --no-auth-cache --non-interactive", StringUtil.AutoDoubleQuoteString(DefaultWorkingDirectory)));
      ExpectSvnDirectoryExists(false);
      ExpectUnderscoreSvnDirectoryExists(false);

      svn.AutoGetSource = true;
      svn.WorkingDirectory = DefaultWorkingDirectory;
      svn.GetSource(IntegrationResult());
    }
    
    [Test]
    public void ShouldCheckoutWrappingTrunkUrlInDoubleQuotes()
    {
            ExpectToExecuteArguments(string.Format(@"checkout ""svn://myserver/my path"" {0} --no-auth-cache --non-interactive", StringUtil.AutoDoubleQuoteString(DefaultWorkingDirectory)));
      ExpectSvnDirectoryExists(false);
      ExpectUnderscoreSvnDirectoryExists(false);

      svn.TrunkUrl = "svn://myserver/my path";
      svn.AutoGetSource = true;
      svn.WorkingDirectory = DefaultWorkingDirectory;
      svn.GetSource(IntegrationResult());
    }
    
    [Test]
    public void ShouldNotCheckoutIfSVNFoldersWithAspNetHackExist()
    {
      ExpectSvnDirectoryExists(false);
      ExpectUnderscoreSvnDirectoryExists(true);
            ExpectToExecuteArguments(string.Format(@"update {0} --no-auth-cache --non-interactive", StringUtil.AutoDoubleQuoteString(DefaultWorkingDirectory)));

      svn.AutoGetSource = true;
      svn.WorkingDirectory = DefaultWorkingDirectory;
      svn.GetSource(IntegrationResult());
    }

    [Test]
    public void ShouldThrowExceptionIfTrunkUrlIsNotSpecifiedAndSVNFoldersDoNotExist()
    {
      ExpectSvnDirectoryExists(false);
      ExpectUnderscoreSvnDirectoryExists(false);
      
      svn.TrunkUrl = string.Empty;
      svn.AutoGetSource = true;
      svn.WorkingDirectory = DefaultWorkingDirectory;
            Assert.That(delegate { svn.GetSource(IntegrationResult()); },
                        Throws.TypeOf<ConfigurationException>());
    }

      [Test]
      public void SvnProcessInfoShouldSetEncodingToUTF8()
      {
            ExpectSvnDirectoryExists(false);
            ExpectUnderscoreSvnDirectoryExists(false);
          mockProcessExecutor.ExpectAndReturn("Execute", SuccessfulProcessResult(), new ProcessInfoEncodingValidator());

            svn.GetSource(IntegrationResult());
      }

    private void ExpectSvnDirectoryExists(bool doesSvnDirectoryExist)
    {
      mockFileSystem.ExpectAndReturn("DirectoryExists", doesSvnDirectoryExist, Path.Combine(DefaultWorkingDirectory, ".svn"));
    }

    private void ExpectUnderscoreSvnDirectoryExists(bool doesSvnDirectoryExist)
    {
      mockFileSystem.ExpectAndReturn("DirectoryExists", doesSvnDirectoryExist, Path.Combine(DefaultWorkingDirectory, "_svn"));
    }
  }

    internal class ProcessInfoEncodingValidator : BaseConstraint
    {
        public override bool Eval(object val)
        {
            ProcessInfo processInfo = (ProcessInfo) val;
            return Encoding.UTF8 == processInfo.StreamEncoding;
        }

        public override string Message
        {
            get { return "Wrong encoding specified."; }
        }
    }
}
www.java2v.com | Contact Us
Copyright 2009 - 12 Demo Source and Support. All rights reserved.
All other trademarks are property of their respective owners.