// // Conditions.cs: Tests various conditions by checking if a property // is added to EvaluatedProperties. // // Author: // Marek Sieradzki (marek.sieradzki@gmail.com) // // (C) 2006 Marek Sieradzki // // Permission is hereby granted, free of charge, to any person obtaining // a copy of this software and associated documentation files (the // "Software"), to deal in the Software without restriction, including // without limitation the rights to use, copy, modify, merge, publish, // distribute, sublicense, and/or sell copies of the Software, and to // permit persons to whom the Software is furnished to do so, subject to // the following conditions: // // The above copyright notice and this permission notice shall be // included in all copies or substantial portions of the Software. // // THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, // EXPRESS OR IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF // MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE AND // NONINFRINGEMENT. IN NO EVENT SHALL THE AUTHORS OR COPYRIGHT HOLDERS BE // LIABLE FOR ANY CLAIM, DAMAGES OR OTHER LIABILITY, WHETHER IN AN ACTION // OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, OUT OF OR IN CONNECTION // WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE SOFTWARE. using System; using System.Xml; using Microsoft.Build.BuildEngine; using NUnit.Framework; namespace MonoTests.Microsoft.Build.BuildEngine.Various { [TestFixture] public class Conditions { [Test] public void TestCondition1 () { Engine engine = new Engine (Consts.BinPath); Project proj = engine.CreateNewProject (); string documentString = @" A "; proj.LoadXml (documentString); Assert.IsNotNull (proj.EvaluatedProperties ["A"], "A1"); Assert.IsNull (proj.EvaluatedProperties ["B"], "A2"); Assert.IsNotNull (proj.EvaluatedProperties ["C"], "A3"); Assert.IsNull (proj.EvaluatedProperties ["D"], "A4"); Assert.IsNotNull (proj.EvaluatedProperties ["E"], "A5"); } [Test] public void TestCondition2 () { Engine engine = new Engine (Consts.BinPath); Project proj = engine.CreateNewProject (); string documentString = @" "; proj.LoadXml (documentString); Assert.IsNotNull (proj.EvaluatedProperties ["A"], "A1"); Assert.IsNull (proj.EvaluatedProperties ["B"], "A2"); Assert.IsNotNull (proj.EvaluatedProperties ["C"], "A3"); Assert.IsNotNull (proj.EvaluatedProperties ["D"], "A4"); } [Test] public void TestCondition3 () { Engine engine = new Engine (Consts.BinPath); Project proj = engine.CreateNewProject (); string documentString = @" "; proj.LoadXml (documentString); Assert.IsNotNull (proj.EvaluatedProperties ["A"], "A1"); Assert.IsNull (proj.EvaluatedProperties ["B"], "A2"); Assert.IsNull (proj.EvaluatedProperties ["C"], "A3"); Assert.IsNull (proj.EvaluatedProperties ["D"], "A4"); } [Test] public void TestCondition4 () { Engine engine = new Engine (Consts.BinPath); Project proj = engine.CreateNewProject (); string documentString = @" "; proj.LoadXml (documentString); Assert.IsNull (proj.EvaluatedProperties ["A"], "A1"); Assert.IsNotNull (proj.EvaluatedProperties ["B"], "A2"); } [Test] public void TestCondition5 () { Engine engine = new Engine (Consts.BinPath); Project proj = engine.CreateNewProject (); string documentString = @" "; proj.LoadXml (documentString); Assert.IsNotNull (proj.EvaluatedProperties ["a"], "A1"); Assert.IsNotNull (proj.EvaluatedProperties ["b"], "A2"); Assert.IsNotNull (proj.EvaluatedProperties ["c"], "A3"); Assert.IsNotNull (proj.EvaluatedProperties ["d"], "A4"); Assert.IsNull (proj.EvaluatedProperties ["e"], "A5"); Assert.IsNotNull (proj.EvaluatedProperties ["f"], "A6"); Assert.IsNotNull (proj.EvaluatedProperties ["g"], "A7"); Assert.IsNull (proj.EvaluatedProperties ["h"], "A8"); Assert.IsNotNull (proj.EvaluatedProperties ["i"], "A1"); Assert.IsNotNull (proj.EvaluatedProperties ["j"], "A2"); Assert.IsNull (proj.EvaluatedProperties ["k"], "A3"); Assert.IsNull (proj.EvaluatedProperties ["l"], "A4"); } [Test] [Category ("NotWorking")] public void TestCondition6 () { Engine engine = new Engine (Consts.BinPath); Project proj = engine.CreateNewProject (); string documentString = @" true false "; proj.LoadXml (documentString); Assert.IsNotNull (proj.EvaluatedProperties ["C"], "A1"); Assert.IsNull (proj.EvaluatedProperties ["D"], "A2"); Assert.IsNotNull (proj.EvaluatedProperties ["E"], "A3"); Assert.IsNull (proj.EvaluatedProperties ["F"], "A4"); } [Test] [Category ("NotWorking")] public void TestCondition7 () { Engine engine = new Engine (Consts.BinPath); Project proj = engine.CreateNewProject (); string documentString = @" true "; proj.LoadXml (documentString); Assert.IsTrue (proj.Build ("1"), "A1"); } [Test] public void TestCondition8 () { Engine engine = new Engine (Consts.BinPath); Project proj = engine.CreateNewProject (); string documentString = @" "; proj.LoadXml (documentString); Assert.IsNotNull (proj.EvaluatedProperties ["A"], "A1"); Assert.IsNull (proj.EvaluatedProperties ["B"], "A2"); Assert.IsNotNull (proj.EvaluatedProperties ["C"], "A3"); Assert.IsNull (proj.EvaluatedProperties ["D"], "A4"); Assert.IsNotNull (proj.EvaluatedProperties ["E"], "A5"); } [Test] public void TestCondition9 () { Engine engine = new Engine (Consts.BinPath); Project proj = engine.CreateNewProject (); string documentString = @" "; proj.LoadXml (documentString); Assert.IsNotNull (proj.EvaluatedProperties ["A"], "A1"); Assert.IsNotNull (proj.EvaluatedProperties ["B"], "A2"); Assert.IsNotNull (proj.EvaluatedProperties ["C"], "A3"); Assert.IsNull (proj.EvaluatedProperties ["D"], "A4"); } [Test] [Category ("NotDotNet")] public void TestCondition10 () { Engine engine = new Engine (Consts.BinPath); Project proj = engine.CreateNewProject (); string documentString = @" "; proj.LoadXml (documentString); Assert.IsNull (proj.EvaluatedProperties ["A"], "A1"); Assert.IsNotNull (proj.EvaluatedProperties ["B"], "A2"); Assert.IsNotNull (proj.EvaluatedProperties ["C"], "A3"); Assert.IsNotNull (proj.EvaluatedProperties ["D"], "A4"); Assert.IsNotNull (proj.EvaluatedProperties ["E"], "A5"); } [Test] public void TestCondition11 () { Engine engine = new Engine (Consts.BinPath); Project proj = engine.CreateNewProject (); string documentString = @" true '%(Extension)a(foo', ',')' == '.exea(foo'"" /> '%(Extension)', ',') == '.exe'"" /> "; proj.LoadXml (documentString); BuildItemGroup bgp = proj.GetEvaluatedItemsByName ("List1"); Assert.IsNotNull (bgp, "Expected values in List1"); Assert.AreEqual (3, bgp.Count, "A1"); Assert.AreEqual ("fr_a.txt", bgp [0].FinalItemSpec, "A2"); Assert.AreEqual ("fr_b.txt", bgp [1].FinalItemSpec, "A3"); Assert.AreEqual ("fr_c.txt", bgp [2].FinalItemSpec, "A4"); } // Test shortcircuiting [Test] public void TestCondition12 () { Engine engine = new Engine (Consts.BinPath); Project proj = engine.CreateNewProject (); string documentString = @" "; proj.LoadXml (documentString); Assert.IsNull (proj.EvaluatedProperties ["A"], "A1"); } [Test] public void TestHasTrailingSlash1 () { Engine engine = new Engine (Consts.BinPath); Project proj = engine.CreateNewProject (); string documentString = @" foo\ foo/ Foo "; proj.LoadXml (documentString); Assert.IsNull (proj.EvaluatedProperties ["A"], "A1"); Assert.IsNotNull (proj.EvaluatedProperties ["B"], "A2"); Assert.IsNotNull (proj.EvaluatedProperties ["C"], "A3"); Assert.IsNull (proj.EvaluatedProperties ["D"], "A4"); Assert.IsNull (proj.EvaluatedProperties ["E"], "A5"); } [Test] [ExpectedException (typeof (InvalidProjectFileException))] public void TestUnknownFunction () { Engine engine = new Engine (Consts.BinPath); Project proj = engine.CreateNewProject (); string documentString = @" "; proj.LoadXml (documentString); } [Test] [ExpectedException (typeof (InvalidProjectFileException))] public void TestIncorrectCondition1 () { Engine engine = new Engine (Consts.BinPath); Project proj = engine.CreateNewProject (); string documentString = @" A "; proj.LoadXml (documentString); } // A reference to an item list at position 1 is not allowed in this condition "@(A)". [Test] [ExpectedException (typeof (InvalidProjectFileException))] [Category ("NotWorking")] public void TestIncorrectCondition2 () { Engine engine = new Engine (Consts.BinPath); Project proj = engine.CreateNewProject (); string documentString = @" A "; proj.LoadXml (documentString); } // Found an unexpected character '%' at position 0 in condition \%(A)\. [Test] [ExpectedException (typeof (InvalidProjectFileException))] [Category ("NotWorking")] public void TestIncorrectCondition3 () { Engine engine = new Engine (Consts.BinPath); Project proj = engine.CreateNewProject (); string documentString = @" A "; proj.LoadXml (documentString); } // Found an unexpected character '%' at position 0 in condition "%(A)\. [Test] [ExpectedException (typeof (InvalidProjectFileException))] [Category ("NotWorking")] public void TestIncorrectCondition4 () { Engine engine = new Engine (Consts.BinPath); Project proj = engine.CreateNewProject (); string documentString = @" "; proj.LoadXml (documentString); } [Test] [ExpectedException (typeof (InvalidProjectFileException))] public void TestIncorrectCondition5 () { Engine engine = new Engine (Consts.BinPath); Project proj = engine.CreateNewProject (); string documentString = @" "; proj.LoadXml (documentString); } [Test] [ExpectedException (typeof (InvalidProjectFileException))] public void TestIncorrectCondition6 () { Engine engine = new Engine (Consts.BinPath); Project proj = engine.CreateNewProject (); string documentString = @" "; proj.LoadXml (documentString); } } }