a575963da9
Former-commit-id: da6be194a6b1221998fc28233f2503bd61dd9d14
465 lines
15 KiB
C#
465 lines
15 KiB
C#
//
|
|
// BuildChoose.cs
|
|
//
|
|
// Author:
|
|
// Jonathan Chambers (joncham@gmail.com)
|
|
//
|
|
// (C) 2009 Jonathan Chambers
|
|
//
|
|
// 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.Collections;
|
|
using Microsoft.Build.BuildEngine;
|
|
using NUnit.Framework;
|
|
|
|
namespace MonoTests.Microsoft.Build.BuildEngine {
|
|
[TestFixture]
|
|
public class BuildChooseTest {
|
|
|
|
[Test]
|
|
public void TestEmptyWhen () {
|
|
Engine engine;
|
|
Project project;
|
|
BuildItemGroup[] groups = new BuildItemGroup[1];
|
|
|
|
string documentString = @"
|
|
<Project xmlns='http://schemas.microsoft.com/developer/msbuild/2003'>
|
|
<Choose>
|
|
<When Condition=""'$(Configuration)' == ''"">
|
|
<ItemGroup>
|
|
<A Include='a' />
|
|
</ItemGroup>
|
|
</When>
|
|
</Choose>
|
|
</Project>
|
|
";
|
|
|
|
engine = new Engine (Consts.BinPath);
|
|
project = engine.CreateNewProject ();
|
|
project.LoadXml (documentString);
|
|
|
|
//Assert.AreEqual (1, project.ItemGroups.Count, "A1");
|
|
Assert.AreEqual (0, project.PropertyGroups.Count, "A2");
|
|
Assert.AreEqual (1, project.EvaluatedItems.Count, "A3");
|
|
Assert.AreEqual (1, project.EvaluatedItemsIgnoringCondition.Count, "A4");
|
|
}
|
|
|
|
[Test]
|
|
public void TestFalseWhen () {
|
|
Engine engine;
|
|
Project project;
|
|
BuildItemGroup[] groups = new BuildItemGroup[1];
|
|
|
|
string documentString = @"
|
|
<Project xmlns='http://schemas.microsoft.com/developer/msbuild/2003'>
|
|
<Choose>
|
|
<When Condition=""'$(Configuration)' == 'False'"">
|
|
<ItemGroup>
|
|
<A Include='a' />
|
|
</ItemGroup>
|
|
</When>
|
|
</Choose>
|
|
</Project>
|
|
";
|
|
|
|
engine = new Engine (Consts.BinPath);
|
|
project = engine.CreateNewProject ();
|
|
project.LoadXml (documentString);
|
|
|
|
//Assert.AreEqual (1, project.ItemGroups.Count, "A1");
|
|
Assert.AreEqual (0, project.PropertyGroups.Count, "A2");
|
|
Assert.AreEqual (0, project.EvaluatedItems.Count, "A3");
|
|
Assert.AreEqual (0, project.EvaluatedItemsIgnoringCondition.Count, "A4");
|
|
}
|
|
|
|
[Test]
|
|
public void TestMultipleTrueWhen () {
|
|
Engine engine;
|
|
Project project;
|
|
BuildItemGroup[] groups = new BuildItemGroup[1];
|
|
|
|
string documentString = @"
|
|
<Project xmlns='http://schemas.microsoft.com/developer/msbuild/2003'>
|
|
<Choose>
|
|
<When Condition=""'$(Configuration)' == ''"">
|
|
<ItemGroup>
|
|
<A Include='a' />
|
|
</ItemGroup>
|
|
</When>
|
|
<When Condition=""'$(Configuration)' == ''"">
|
|
<ItemGroup>
|
|
<B Include='a' />
|
|
</ItemGroup>
|
|
</When>
|
|
</Choose>
|
|
</Project>
|
|
";
|
|
|
|
engine = new Engine (Consts.BinPath);
|
|
project = engine.CreateNewProject ();
|
|
project.LoadXml (documentString);
|
|
|
|
|
|
//Assert.AreEqual (2, project.ItemGroups.Count, "A1");
|
|
Assert.AreEqual (0, project.PropertyGroups.Count, "A2");
|
|
Assert.AreEqual (1, project.EvaluatedItems.Count, "A3");
|
|
Assert.AreEqual ("A", project.EvaluatedItems[0].Name, "A4");
|
|
Assert.AreEqual (1, project.EvaluatedItemsIgnoringCondition.Count, "A5");
|
|
}
|
|
|
|
[Test]
|
|
public void TestMultipleFalseWhen () {
|
|
Engine engine;
|
|
Project project;
|
|
BuildItemGroup[] groups = new BuildItemGroup[1];
|
|
|
|
string documentString = @"
|
|
<Project xmlns='http://schemas.microsoft.com/developer/msbuild/2003'>
|
|
<Choose>
|
|
<When Condition=""'$(Configuration)' == 'False'"">
|
|
<ItemGroup>
|
|
<A Include='a' />
|
|
</ItemGroup>
|
|
</When>
|
|
<When Condition=""'$(Configuration)' == 'False'"">
|
|
<ItemGroup>
|
|
<B Include='a' />
|
|
</ItemGroup>
|
|
</When>
|
|
</Choose>
|
|
</Project>
|
|
";
|
|
|
|
engine = new Engine (Consts.BinPath);
|
|
project = engine.CreateNewProject ();
|
|
project.LoadXml (documentString);
|
|
|
|
//Assert.AreEqual (2, project.ItemGroups.Count, "A1");
|
|
Assert.AreEqual (0, project.PropertyGroups.Count, "A2");
|
|
Assert.AreEqual (0, project.EvaluatedItems.Count, "A3");
|
|
Assert.AreEqual (0, project.EvaluatedItemsIgnoringCondition.Count, "A4");
|
|
}
|
|
|
|
[Test]
|
|
[ExpectedException (typeof (InvalidProjectFileException))]
|
|
public void TestMissingWhen () {
|
|
Engine engine;
|
|
Project project;
|
|
BuildItemGroup[] groups = new BuildItemGroup[1];
|
|
|
|
// a <Choose> requires at least one <When>
|
|
string documentString = @"
|
|
<Project xmlns='http://schemas.microsoft.com/developer/msbuild/2003'>
|
|
<Choose>
|
|
<Otherwise>
|
|
<ItemGroup>
|
|
<A Include='a' />
|
|
</ItemGroup>
|
|
</Otherwise>
|
|
</Choose>
|
|
</Project>
|
|
";
|
|
|
|
engine = new Engine (Consts.BinPath);
|
|
project = engine.CreateNewProject ();
|
|
project.LoadXml (documentString);
|
|
}
|
|
|
|
[Test]
|
|
[ExpectedException (typeof (InvalidProjectFileException))]
|
|
public void TestMissingConditionWhen () {
|
|
Engine engine;
|
|
Project project;
|
|
BuildItemGroup[] groups = new BuildItemGroup[1];
|
|
|
|
// a <When> requires a Condition
|
|
string documentString = @"
|
|
<Project xmlns='http://schemas.microsoft.com/developer/msbuild/2003'>
|
|
<Choose>
|
|
<When>
|
|
<ItemGroup>
|
|
<A Include='a' />
|
|
</ItemGroup>
|
|
</When>
|
|
</Choose>
|
|
</Project>
|
|
";
|
|
|
|
engine = new Engine (Consts.BinPath);
|
|
project = engine.CreateNewProject ();
|
|
project.LoadXml (documentString);
|
|
}
|
|
|
|
[Test]
|
|
public void TestWhenOtherwise1 () {
|
|
Engine engine;
|
|
Project project;
|
|
BuildItemGroup[] groups = new BuildItemGroup[1];
|
|
|
|
string documentString = @"
|
|
<Project xmlns='http://schemas.microsoft.com/developer/msbuild/2003'>
|
|
<Choose>
|
|
<When Condition=""'$(Configuration)' == ''"">
|
|
<ItemGroup>
|
|
<A Include='a' />
|
|
</ItemGroup>
|
|
</When>
|
|
<Otherwise>
|
|
<ItemGroup>
|
|
<B Include='a' />
|
|
</ItemGroup>
|
|
</Otherwise>
|
|
</Choose>
|
|
</Project>
|
|
";
|
|
|
|
engine = new Engine (Consts.BinPath);
|
|
project = engine.CreateNewProject ();
|
|
project.LoadXml (documentString);
|
|
|
|
//Assert.AreEqual (2, project.ItemGroups.Count, "A1");
|
|
Assert.AreEqual (0, project.PropertyGroups.Count, "A2");
|
|
Assert.AreEqual (1, project.EvaluatedItems.Count, "A3");
|
|
Assert.AreEqual ("A", project.EvaluatedItems[0].Name, "A4");
|
|
Assert.AreEqual (1, project.EvaluatedItemsIgnoringCondition.Count, "A5");
|
|
}
|
|
|
|
[Test]
|
|
public void TestWhenOtherwise2 () {
|
|
Engine engine;
|
|
Project project;
|
|
BuildItemGroup[] groups = new BuildItemGroup[1];
|
|
|
|
string documentString = @"
|
|
<Project xmlns='http://schemas.microsoft.com/developer/msbuild/2003'>
|
|
<Choose>
|
|
<When Condition=""'$(Configuration)' == 'False'"">
|
|
<ItemGroup>
|
|
<A Include='a' />
|
|
</ItemGroup>
|
|
</When>
|
|
<Otherwise>
|
|
<ItemGroup>
|
|
<B Include='a' />
|
|
</ItemGroup>
|
|
</Otherwise>
|
|
</Choose>
|
|
</Project>
|
|
";
|
|
|
|
engine = new Engine (Consts.BinPath);
|
|
project = engine.CreateNewProject ();
|
|
project.LoadXml (documentString);
|
|
|
|
//Assert.AreEqual (2, project.ItemGroups.Count, "A1");
|
|
Assert.AreEqual (0, project.PropertyGroups.Count, "A2");
|
|
Assert.AreEqual (1, project.EvaluatedItems.Count, "A3");
|
|
Assert.AreEqual ("B", project.EvaluatedItems[0].Name, "A4");
|
|
Assert.AreEqual (1, project.EvaluatedItemsIgnoringCondition.Count, "A5");
|
|
}
|
|
|
|
[Test]
|
|
public void ChooseWhenPropertyGroup () {
|
|
|
|
string documentString = @"
|
|
<Project xmlns='http://schemas.microsoft.com/developer/msbuild/2003'>
|
|
<Choose>
|
|
<When Condition=""'$(Configuration)' == ''"">
|
|
<PropertyGroup>
|
|
<Foo>Bar</Foo>
|
|
</PropertyGroup>
|
|
</When>
|
|
<Otherwise>
|
|
<PropertyGroup>
|
|
<Foo>Baz</Foo>
|
|
</PropertyGroup>
|
|
</Otherwise>
|
|
</Choose>
|
|
</Project>
|
|
";
|
|
|
|
Engine engine = new Engine (Consts.BinPath);
|
|
Project project = engine.CreateNewProject ();
|
|
project.LoadXml (documentString);
|
|
|
|
Assert.AreEqual ("Bar", project.GetEvaluatedProperty ("Foo"), "A1");
|
|
}
|
|
|
|
[Test]
|
|
public void ChooseOtherwisePropertyGroup () {
|
|
|
|
string documentString = @"
|
|
<Project xmlns='http://schemas.microsoft.com/developer/msbuild/2003'>
|
|
<Choose>
|
|
<When Condition=""'$(Configuration)' == 'dummy'"">
|
|
<PropertyGroup>
|
|
<Foo>Bar</Foo>
|
|
</PropertyGroup>
|
|
</When>
|
|
<Otherwise>
|
|
<PropertyGroup>
|
|
<Foo>Baz</Foo>
|
|
</PropertyGroup>
|
|
</Otherwise>
|
|
</Choose>
|
|
</Project>
|
|
";
|
|
|
|
Engine engine = new Engine (Consts.BinPath);
|
|
Project project = engine.CreateNewProject ();
|
|
project.LoadXml (documentString);
|
|
|
|
Assert.AreEqual ("Baz", project.GetEvaluatedProperty ("Foo"), "A1");
|
|
}
|
|
|
|
[Test]
|
|
public void NestedChooseInOtherwise () {
|
|
|
|
string documentString = @"
|
|
<Project xmlns='http://schemas.microsoft.com/developer/msbuild/2003'>
|
|
<Choose>
|
|
<When Condition=""'$(Configuration)' == 'dummy'"">
|
|
<PropertyGroup>
|
|
<Foo>Bar</Foo>
|
|
</PropertyGroup>
|
|
</When>
|
|
<Otherwise>
|
|
<Choose>
|
|
<When Condition="" 'foo' == 'bar' "">
|
|
<PropertyGroup>
|
|
<Foo>Baz</Foo>
|
|
</PropertyGroup>
|
|
</When>
|
|
<Otherwise>
|
|
<PropertyGroup>
|
|
<Foo>Baz</Foo>
|
|
</PropertyGroup>
|
|
</Otherwise>
|
|
</Choose>
|
|
</Otherwise>
|
|
</Choose>
|
|
</Project>
|
|
";
|
|
|
|
Engine engine = new Engine (Consts.BinPath);
|
|
Project project = engine.CreateNewProject ();
|
|
project.LoadXml (documentString);
|
|
|
|
Assert.AreEqual ("Baz", project.GetEvaluatedProperty ("Foo"), "A1");
|
|
}
|
|
|
|
|
|
[Test]
|
|
public void UndefinedPropertyInExistsCondition()
|
|
{
|
|
string documentString = @"
|
|
<Project xmlns='http://schemas.microsoft.com/developer/msbuild/2003'>
|
|
<PropertyGroup>
|
|
<Foo>Bar</Foo>
|
|
</PropertyGroup>
|
|
<Choose>
|
|
<When Condition = "" '$(teamcity_dotnet_nunitlauncher_msbuild_task)' == '' "" >
|
|
<Choose>
|
|
<When Condition=""Exists('$(UndefinedProperty)\Foo\Bar')"">
|
|
<PropertyGroup>
|
|
<Exists>yes</Exists>
|
|
</PropertyGroup>
|
|
</When>
|
|
<Otherwise>
|
|
<PropertyGroup>
|
|
<Exists>no</Exists>
|
|
</PropertyGroup>
|
|
</Otherwise>
|
|
</Choose>
|
|
</When>
|
|
</Choose>
|
|
</Project>
|
|
";
|
|
|
|
Engine engine = new Engine (Consts.BinPath);
|
|
Project project = engine.CreateNewProject ();
|
|
project.LoadXml (documentString);
|
|
|
|
Assert.AreEqual ("no", project.GetEvaluatedProperty ("Exists"), "A1");
|
|
}
|
|
|
|
[Test]
|
|
public void EmptyExistsCondition()
|
|
{
|
|
string documentString = @"
|
|
<Project xmlns='http://schemas.microsoft.com/developer/msbuild/2003'>
|
|
<Choose>
|
|
<When Condition=""Exists('$(UndefinedProperty)')"">
|
|
<PropertyGroup>
|
|
<Exists>yes</Exists>
|
|
</PropertyGroup>
|
|
</When>
|
|
<Otherwise>
|
|
<PropertyGroup>
|
|
<Exists>no</Exists>
|
|
</PropertyGroup>
|
|
</Otherwise>
|
|
</Choose>
|
|
</Project>
|
|
";
|
|
|
|
Engine engine = new Engine (Consts.BinPath);
|
|
Project project = engine.CreateNewProject ();
|
|
//assign a real filename to be used as base path for the Exists
|
|
project.FullFileName = typeof (BuildChooseTest).Assembly.Location;
|
|
|
|
project.LoadXml (documentString);
|
|
|
|
Assert.AreEqual ("no", project.GetEvaluatedProperty ("Exists"), "A1");
|
|
}
|
|
|
|
[Test]
|
|
public void EvaluationOrder ()
|
|
{
|
|
string documentString = @"
|
|
<Project xmlns='http://schemas.microsoft.com/developer/msbuild/2003'>
|
|
<Choose>
|
|
<When Condition=""true"">
|
|
<PropertyGroup>
|
|
<Foo>Bar</Foo>
|
|
</PropertyGroup>
|
|
</When>
|
|
<Otherwise>
|
|
<PropertyGroup>
|
|
<Foo>Baz</Foo>
|
|
</PropertyGroup>
|
|
</Otherwise>
|
|
</Choose>
|
|
|
|
<PropertyGroup>
|
|
<Test>$(Foo)</Test>
|
|
</PropertyGroup>
|
|
</Project>
|
|
";
|
|
|
|
Engine engine = new Engine (Consts.BinPath);
|
|
Project project = engine.CreateNewProject ();
|
|
project.LoadXml (documentString);
|
|
Assert.AreEqual ("Bar", project.GetEvaluatedProperty ("Test"));
|
|
}
|
|
}
|
|
}
|