Forgot to commmit the .cs file.
[mono.git] / mcs / class / Microsoft.Build.Tasks / Test / Microsoft.Build.Tasks / CombinePathTest.cs
1 //
2 // CombinePath.cs
3 //
4 // Author:
5 //   Marek Sieradzki (marek.sieradzki@gmail.com)
6 //
7 // (C) 2006 Marek Sieradzki
8 //
9 // Permission is hereby granted, free of charge, to any person obtaining
10 // a copy of this software and associated documentation files (the
11 // "Software"), to deal in the Software without restriction, including
12 // without limitation the rights to use, copy, modify, merge, publish,
13 // distribute, sublicense, and/or sell copies of the Software, and to
14 // permit persons to whom the Software is furnished to do so, subject to
15 // the following conditions:
16 //
17 // The above copyright notice and this permission notice shall be
18 // included in all copies or substantial portions of the Software.
19 //
20 // THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND,
21 // EXPRESS OR IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF
22 // MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE AND
23 // NONINFRINGEMENT. IN NO EVENT SHALL THE AUTHORS OR COPYRIGHT HOLDERS BE
24 // LIABLE FOR ANY CLAIM, DAMAGES OR OTHER LIABILITY, WHETHER IN AN ACTION
25 // OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, OUT OF OR IN CONNECTION
26 // WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE SOFTWARE.
27
28 using System;
29 using System.Collections;
30 using System.IO;
31 using Microsoft.Build.BuildEngine;
32 using Microsoft.Build.Framework;
33 using Microsoft.Build.Tasks;
34 using Microsoft.Build.Utilities;
35 using NUnit.Framework;
36
37 namespace MonoTests.Microsoft.Build.Tasks {
38
39         [TestFixture]
40         public class CombinePathTest {
41
42                 [Test]
43                 public void TestAssignment ()
44                 {
45                         CombinePath cp = new CombinePath ();
46
47                         cp.BasePath = "a";
48                         cp.Paths = new ITaskItem [] { new TaskItem ("b")};
49
50                         Assert.AreEqual ("a", cp.BasePath, "A1");
51                         Assert.AreEqual ("b", cp.Paths [0].ItemSpec, "A2");
52                 }
53
54                 [Test]
55                 public void TestExecution1 ()
56                 {
57                         Engine engine;
58                         Project project;
59
60                         string documentString = @"
61                                 <Project xmlns=""http://schemas.microsoft.com/developer/msbuild/2003"">
62                                         <ItemGroup>
63                                                 <Dir Include='b' />
64                                                 <Dir Include='c' />
65                                                 <Dir Include='d\e' />
66                                         </ItemGroup>
67                                         <Target Name='1'>
68                                                 <CombinePath BasePath='a' Paths='@(Dir)'>
69                                                         <Output
70                                                                 TaskParameter='CombinedPaths'
71                                                                 ItemName='Out'
72                                                         />
73                                                 </CombinePath>
74                                         </Target>
75                                 </Project>
76                         ";
77
78                         engine = new Engine (Consts.BinPath);
79                         project = engine.CreateNewProject ();
80                         project.LoadXml (documentString);
81                         Assert.IsTrue (project.Build ("1"), "A1");
82
83                         BuildItemGroup output = project.GetEvaluatedItemsByName ("Out");
84                         Assert.AreEqual (3, output.Count, "A2");
85                         Assert.AreEqual (Path.Combine ("a", "b"), output [0].FinalItemSpec, "A3");
86                         Assert.AreEqual (Path.Combine ("a", "c"), output [1].FinalItemSpec, "A4");
87                         Assert.AreEqual (Path.Combine ("a", Path.Combine ("d", "e")), output [2].FinalItemSpec, "A5");
88
89                 }
90
91                 [Test]
92                 public void TestExecution2 ()
93                 {
94                         Engine engine;
95                         Project project;
96
97                         string documentString = @"
98                                 <Project xmlns=""http://schemas.microsoft.com/developer/msbuild/2003"">
99                                         <ItemGroup>
100                                                 <Dir Include='a\b' />
101                                         </ItemGroup>
102                                         <Target Name='1'>
103                                                 <CombinePath Paths='@(Dir)'>
104                                                         <Output
105                                                                 TaskParameter='CombinedPaths'
106                                                                 ItemName='Out'
107                                                         />
108                                                 </CombinePath>
109                                         </Target>
110                                 </Project>
111                         ";
112
113                         engine = new Engine (Consts.BinPath);
114                         project = engine.CreateNewProject ();
115                         project.LoadXml (documentString);
116                         Assert.IsTrue (project.Build ("1"), "A1");
117
118                         BuildItemGroup output = project.GetEvaluatedItemsByName ("Out");
119                         Assert.AreEqual (1, output.Count, "A2");
120                         Assert.AreEqual (Path.Combine ("a", "b"), output [0].FinalItemSpec, "A3");
121                 }
122         }
123 }
124