Implementation of the 2.0 session state model
[mono.git] / mcs / class / Microsoft.Build.Tasks / Test / Microsoft.Build.Tasks / CreateItemTest.cs
1 //
2 // CreateItemTest.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 CreateItemTest {
41                 [Test]
42                 public void TestAssignment ()
43                 {
44                         CreateItem ci = new CreateItem ();
45
46                         ci.AdditionalMetadata = new string [1] { "a=1" };
47                         ci.Include = new ITaskItem [1] { new TaskItem ("1") };
48                         ci.Exclude = new ITaskItem [1] { new TaskItem ("2") };
49
50                         Assert.AreEqual ("a=1", ci.AdditionalMetadata [0], "A1");
51                         Assert.AreEqual ("1", ci.Include [0].ItemSpec, "A2");
52                         Assert.AreEqual ("2", ci.Exclude [0].ItemSpec, "A3");
53                 }
54
55                 [Test]
56                 [Category ("NotWorking")]
57                 public void TestExecution1 ()
58                 {
59                         Engine engine;
60                         Project project;
61
62                         string documentString = @"
63                                 <Project xmlns=""http://schemas.microsoft.com/developer/msbuild/2003"">
64                                         <ItemGroup>
65                                                 <A Include='1;2;3;4'/>
66                                                 <B Include='1;3' />
67                                         </ItemGroup>
68                                         <Target Name='1'>
69                                                 <CreateItem
70                                                         AdditionalMetadata='a=1;b=2'
71                                                         Include='@(A)'
72                                                         Exclude='@(B)'
73                                                 >
74                                                         <Output
75                                                                 TaskParameter='Include'
76                                                                 ItemName='Include'
77                                                         />
78                                                 </CreateItem>
79                                         </Target>
80                                 </Project>
81                         ";
82
83                         engine = new Engine (Consts.BinPath);
84                         project = engine.CreateNewProject ();
85                         project.LoadXml (documentString);
86                         Assert.IsTrue (project.Build ("1"), "A1");
87
88                         BuildItemGroup include = project.GetEvaluatedItemsByName ("Include");
89                         Assert.AreEqual (2, include.Count, "A2");
90
91                         Assert.AreEqual ("Include", include [0].Name, "A3");
92                         Assert.AreEqual ("1", include [0].GetMetadata ("a"), "A4");
93                         Assert.AreEqual ("2", include [0].GetMetadata ("b"), "A5");
94                         Assert.AreEqual ("1", include [0].GetEvaluatedMetadata ("a"), "A6");
95                         Assert.AreEqual ("2", include [0].GetEvaluatedMetadata ("b"), "A7");
96                         Assert.AreEqual ("2", include [0].FinalItemSpec, "A8");
97
98                         Assert.AreEqual ("Include", include [0].Name, "A9");
99                         Assert.AreEqual ("1", include [1].GetMetadata ("a"), "A10");
100                         Assert.AreEqual ("2", include [1].GetMetadata ("b"), "A11");
101                         Assert.AreEqual ("1", include [1].GetEvaluatedMetadata ("a"), "A12");
102                         Assert.AreEqual ("2", include [1].GetEvaluatedMetadata ("b"), "A13");
103                         Assert.AreEqual ("4", include [1].FinalItemSpec, "A14");
104                 }
105         }
106 }