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 205 206 207 208 209 210 211 212 213 214 215 216 217 218 219
|
// 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.Globalization;
using System.IO;
using NUnit.Framework;
using NAnt.Core;
using NAnt.Core.Tasks;
using Tests.NAnt.Core;
namespace Tests.NAnt.SourceControl.Tasks {
/// <summary>
/// Tests that the update task performs correctly and does
/// not return errors.
/// </summary>
[TestFixture]
public class UpdateTaskTest : BuildTestBase {
#region Private Instance Fields
private string destination;
private const bool TestUseSharpCvsLib = false;
private readonly string TestModule = "sharpcvslib";
private readonly string CheckFile = "lib/ICSharpCode.SharpZipLib.dll";
private readonly string TestCvsRoot =
":pserver:anonymous@cvs.sourceforge.net:/cvsroot/sharpcvslib";
private readonly string _checkoutXML = @"<?xml version='1.0'?>
<project>
<property name='sourcecontrol.usesharpcvslib' value='{0}'/>
<cvs-checkout module='{1}'
cvsroot='{2}'
destination='{3}'
tag='{4}'
usesharpcvslib='false' />
</project>";
/// <summary>
/// Project to update the working directory.
/// </summary>
private readonly string _updateXML = @"<?xml version='1.0'?>
<project>
<property name='sourcecontrol.usesharpcvslib' value='{0}'/>
<cvs-update module='{1}'
cvsroot='{2}'
destination='{3}'
tag='{4}'
usesharpcvslib='false' />
</project>";
/// <summary>
/// Filesets are not currently implemented in sharpcvslib so we default
/// to using the command line client for this test.
///
/// CDH: 2004/03/25
/// </summary>
/* private readonly string _updateFilesetsXML = @"<?xml version='1.0'?>
<project>
<property name='sourcecontrol.usesharpcvslib' value='false'/>
<cvs-update module='{0}'
cvsroot='{1}'
destination='{2}'
password='{3}'>
<fileset>
<include name='**//**.build'/>
</fileset>
</cvs-update>
</project>";
*/
private readonly string _updateOptionsXML = @"<?xml version='1.0'?>
<project>
<property name='sourcecontrol.usesharpcvslib' value='{0}'/>
<cvs-update module='{1}'
cvsroot='{2}'
destination='{3}'
builddirs='{4}'
pruneempty='{5}'
overwritelocal='{6}'
recursive='{7}'
usesharpcvslib='false'>
<fileset>
<include name='{8}'/>
</fileset>
</cvs-update>
</project>";
#endregion Private Instance Fields
#region Override implementation of BuildTestBase
/// <summary>
/// Run the checkout command so we have something to update.
/// </summary>
[SetUp]
protected override void SetUp () {
base.SetUp ();
this.destination = this.TempDirName;
object[] args = {TestUseSharpCvsLib.ToString(), TestModule,
TestCvsRoot, this.destination, string.Empty, string.Empty};
string checkoutBuild = FormatBuildFile(_checkoutXML, args);
this.RunBuild(checkoutBuild, Level.Info);
}
/// <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>
/// Test that a file deleted from the local working directory
/// is retrieved from the cvs repository during an update.
/// </summary>
[Test]
[Category("InetAccess")]
public void Test_CvsUpdate () {
string checkoutPath = Path.Combine(this.destination, this.TestModule);
string checkFilePath = Path.Combine(checkoutPath, this.CheckFile);
if (File.Exists(checkFilePath)) {
// Delete the file.
File.Delete(checkFilePath);
}
// Make sure the file does not exist before we start the test.
Assert.IsFalse(File.Exists(checkFilePath), "The check file should not be there.");
// Run the update to bring the file back down.
object[] args = {TestUseSharpCvsLib.ToString(), TestModule, TestCvsRoot, checkoutPath,
string.Empty};
this.RunBuild(FormatBuildFile(_updateXML, args),
Level.Info);
// Check that the file is back.
Assert.IsTrue(File.Exists(checkFilePath),
"File does not exist, update probably did not work.");
}
[Test]
[Category("InetAccess")]
public void TestUpdateClean () {
string checkoutPath = Path.Combine(this.destination, this.TestModule);
string checkFilePath = Path.Combine(checkoutPath, this.CheckFile);
string checkContents;
StreamReader reader = new StreamReader(File.Open(checkFilePath, FileMode.Open));
checkContents = reader.ReadToEnd();
reader.Close();
reader = null;
// Update the file with data
FileStream writer = File.Open(checkFilePath, FileMode.Append, FileAccess.Write);
string updateMsg = "UpdateTaskTest - overwrite local changes test.";
byte[] updateMsgBytes = System.Text.Encoding.ASCII.GetBytes(updateMsg);
writer.Write(updateMsgBytes, 0, updateMsgBytes.Length);
writer.Close();
writer = null;
// Run the update to bring the file back down.
bool buildDirs = false;
bool pruneEmpty = false;
bool overwriteLocal = true;
bool recursive = false;
object[] args = {TestUseSharpCvsLib.ToString(), TestModule, TestCvsRoot, checkoutPath,
buildDirs, pruneEmpty, overwriteLocal, recursive, checkFilePath};
string formattedBuildFile = FormatBuildFile(this._updateOptionsXML, args);
this.RunBuild(formattedBuildFile,
Level.Info);
// Check that the file is back.
Assert.IsTrue(File.Exists(checkFilePath),
"File does not exist, update probably did not work.");
StreamReader replacedReader = new StreamReader(File.Open(checkFilePath, FileMode.Open));
string checkContentsReplaced = replacedReader.ReadToEnd();
replacedReader.Close();
replacedReader = null;
Assert.AreEqual(checkContents, checkContentsReplaced);
}
#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
}
}
|