// NAnt - A .NET build tool // Copyright (C) 2002 Ian MacLean (Ian_maclean@another.com) // // 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 // Ian MacLean (Ian_maclean@another.com) using System; using System.IO; using System.Reflection; using System.Text; using System.Xml; using System.Globalization; using NUnit.Framework; using NAnt.Core; namespace Tests.NAnt.Core.Tasks { /// /// Load Tasks Test. /// [TestFixture] public class LoadTasksTest : BuildTestBase { [SetUp] protected override void SetUp() { base.SetUp(); } [Test] public void Test_AssemblyNotExists() { const string _xml = @" "; try { RunBuild(_xml); Assert.Fail("Invalid assembly path did not generate an exception"); } catch (TestBuildException be) { if( be.InnerException.Message.IndexOf("'does not exist") != -1) { Assert.Fail("Wrong type of exception; does not contain words 'does not exist'! " + Environment.NewLine + be.ToString()); } } catch { Assert.Fail("Incorrect exception type !"); } } [Test] public void Test_IncorrectArgs() { const string _xml = @" "; try { RunBuild(_xml); Assert.Fail("Invalid attribute combination did not generate an exception"); } catch (TestBuildException e) { if (!(e.InnerException is BuildException)) Assert.Fail("Incorrect exception type !"); } catch { Assert.Fail("Incorrect exception type !"); } } /// /// Check whether the filename of the assembly that caused the failure /// is part of the build failure message. /// public void Test_AssemblyLoadFailure() { string tempFile = CreateTempFile("test.dll"); const string _xml = @" "; try { RunBuild(string.Format(CultureInfo.InvariantCulture, _xml, tempFile)); Assert.Fail("LoadTasks should have failed"); } catch (TestBuildException e) { if (!(e.InnerException is BuildException)) { Assert.Fail("Incorrect exception type !"); } else { BuildException buildError = (BuildException) e.InnerException; Assert.IsTrue(buildError.Message.IndexOf("test.dll") != -1, "Assembly causing failure is not part of message."); } } } } }