1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 52 53 54 55 56 57 58 59 60 61 62 63 64 65 66 67 68 69 70 71 72 73 74 75 76 77 78 79 80 81 82 83 84 85 86 87 88 89 90 91 92 93 94 95 96 97 98 99 100 101 102 103 104 105 106 107 108 109 110 111 112 113 114 115 116 117 118 119 120 121 122 123 124 125 126 127 128 129 130 131 132 133 134 135 136 137 138 139 140 141 142 143 144 145 146 147 148 149 150 151 152 153 154 155 156 157 158 159 160 161 162 163 164 165 166 167 168 169 170 171 172 173 174 175 176 177 178 179 180 181 182 183 184 185 186 187 188 189 190 191 192 193 194 195 196 197 198 199 200 201 202 203 204
|
// NAnt - A .NET build tool
// Copyright (C) 2001-2003 Gerry Shaw
//
// This program is free software; you can redistribute it and/or modify
// it under the terms of the GNU General Public License as published by
// the Free Software Foundation; either version 2 of the License, or
// (at your option) any later version.
//
// This program is distributed in the hope that it will be useful,
// but WITHOUT ANY WARRANTY; without even the implied warranty of
// MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
// GNU General Public License for more details.
//
// You should have received a copy of the GNU General Public License
// along with this program; if not, write to the Free Software
// Foundation, Inc., 59 Temple Place, Suite 330, Boston, MA 02111-1307 USA
//
// Clayton Harbour (claytonharbour@sporadicism.com)
using System;
using System.Globalization;
using System.IO;
using NUnit.Framework;
using NAnt.Core;
using NAnt.Core.Tasks;
using Tests.NAnt.Core;
namespace Tests.NAnt.SourceControl.Tasks {
/// <summary>
/// Test that the checkout command brings down the master.build
/// file from the nant repository to the specified directory.
/// </summary>
[TestFixture]
public class CheckoutTaskTest : BuildTestBase {
#region Private Instance Fields
private string destination;
#endregion Private Instance Fields
#region Private Static Fields
private const string TestModule = "sharpcvslib";
private const string CheckFile = "lib/ICSharpCode.SharpZipLib.dll";
private const string TestCvsRoot =
":pserver:anonymous@cvs.sourceforge.net:/cvsroot/sharpcvslib";
private const string NAntModule = "nant";
private const string NAntCvsRoot = ":pserver:anonymous@cvs.sourceforge.net:/cvsroot/nant";
private const string _projectXML = @"<?xml version='1.0'?>
<project>
<cvs-checkout module='{0}'
cvsroot='{1}'
destination='{2}'
revision='{3}'
usesharpcvslib='false'/>
</project>";
private const string _checkoutByDateProjectXML = @"<?xml version='1.0'?>
<project>
<cvs-checkout module='{0}'
cvsroot='{1}'
destination='{2}'
date='{3}'
overridedir='{4}'
usesharpcvslib='false' />
</project>";
private const string _testReadonly = @"<?xml version='1.0'?>
<project name='Test checkout' default='checkout'>
<property name='sourcecontrol.usesharpcvslib' value='{0}' />
<target name='checkout'>
<cvs-checkout module='{1}'
cvsroot='{2}'
destination='{3}'
readonly='true'
quiet='true'
commandline='-n'
/>
</target>
</project>";
#endregion Private Static Fields
#region Override implementation of BuildTestBase
/// <summary>
/// Create the directory needed for the test if it does not exist.
/// </summary>
[SetUp]
protected override void SetUp () {
base.SetUp ();
destination = TempDirName;
}
/// <summary>
/// Remove the directory created by the checkout/ update.
/// </summary>
[TearDown]
protected override void TearDown () {
base.TearDown ();
}
#endregion Override implementation of BuildTestBase
#region Public Instance Methods
/// <summary>
/// Tests that the directory for the cvs checkout gets created and
/// that at least the master.build file comes down from the
/// repository.
/// </summary>
[Test]
[Category("InetAccess")]
public void Test_CvsCheckout_HEAD () {
object[] args = {NAntModule, NAntCvsRoot, TempDirName, string.Empty};
string checkoutPath = Path.Combine(TempDirName, NAntModule);
string checkFilePath = Path.Combine(checkoutPath, "src/NAnt.Compression/Tasks/TarTask.cs");
RunBuild(FormatBuildFile(_projectXML, args));
Assert.IsTrue(File.Exists(checkFilePath), "File does not exist, checkout probably did not work.");
}
[Test]
[Category("InetAccess")]
public void Test_CvsCheckout_Revision () {
object[] args = {NAntModule, NAntCvsRoot, TempDirName, "EE-patches"};
string checkoutPath = Path.Combine(TempDirName, NAntModule);
string checkFilePath = Path.Combine(checkoutPath, "src/NAnt.Compression/Tasks/TarTask.cs");
RunBuild(FormatBuildFile(_projectXML, args));
Assert.IsFalse(File.Exists(checkFilePath), "File '" + checkFilePath
+ "' should not exist.");
Assert.IsTrue(File.Exists(Path.Combine(checkoutPath, "NAnt.build")),
"File does not exist, checkout probably did not work.");
}
/// <summary>
/// Test that a checkout is performed for the given date.
/// </summary>
[Test]
[Category("InetAccess")]
public void TestCheckoutDate () {
object[] args = {
TestModule, TestCvsRoot, destination, "2003/08/16", "2003_08_16"};
string checkoutPath = Path.Combine(destination, "2003_08_16");
string checkFilePath = Path.Combine(checkoutPath, CheckFile);
RunBuild(FormatBuildFile(_checkoutByDateProjectXML,
args), Level.Info);
Assert.IsTrue(File.Exists(checkFilePath), "File \"{0}\" does not exist.", checkFilePath);
}
/// <summary>
/// Test that a checkout is performed for the given date.
/// </summary>
[Test]
[Category("InetAccess")]
public void TestCheckoutReadonly () {
object[] args = {
false, TestModule, TestCvsRoot, destination, "2003/08/16", "2003_08_16"};
string checkoutPath = Path.Combine(destination, TestModule);
string checkFilePath = Path.Combine(checkoutPath, CheckFile);
RunBuild(FormatBuildFile(_testReadonly, args),
Level.Info);
Assert.IsTrue(File.Exists(checkFilePath), "File \"{0}\" does not exist.", checkFilePath);
FileAttributes attributes = File.GetAttributes(checkFilePath);
Assert.IsTrue(attributes.CompareTo(FileAttributes.ReadOnly) > 0);
}
/// <summary>
/// Test that the validations for the module attribute are carried out
/// correctly.
/// </summary>
[Test]
[ExpectedException(typeof(TestBuildException))]
public void TestModuleValidation_Bad() {
object[] args = { string.Format("{0}/bad/module", TestModule),
TestCvsRoot, destination, "2003/08/16", "2003_08_16"};
RunBuild(FormatBuildFile(_checkoutByDateProjectXML, args), Level.Info);
}
#endregion Public Instance Methods
#region Private Instance Methods
private string FormatBuildFile(string baseFile, object[] args) {
return string.Format(CultureInfo.InvariantCulture, baseFile, args);
}
#endregion Private Instance Methods
}
}
|