In class/Microsoft.Build.Tasks:
[mono.git] / mcs / class / Microsoft.Build.Tasks / Test / Microsoft.Build.Tasks / RemoveDuplicatesTest.cs
1 //
2 // RemoveDuplicatesTest.cs
3 //
4 // Author:
5 //   Ankit Jain (jankit@novell.com)
6 //
7 // Copyright 2009 Novell, Inc (http://www.novell.com)
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.Generic;
30 using System.Text;
31 using NUnit.Framework;
32
33 using Microsoft.Build.BuildEngine;
34 using Microsoft.Build.Framework;
35 using Microsoft.Build.Tasks;
36 using Microsoft.Build.Utilities;
37
38 namespace MonoTests.Microsoft.Build.Tasks
39 {
40         [TestFixture]
41         public class RemoveDuplicatesTest
42         {
43                 [Test]
44                 public void Test1 ()
45                 {
46                         string documentString = @"
47                                 <Project xmlns=""http://schemas.microsoft.com/developer/msbuild/2003"" ToolsVersion='3.5'>
48                                 
49                                 <ItemGroup>
50                                         <Items Include='A'>
51                                                 <MD>Value1</MD>
52                                         </Items>
53                                         <Items Include='A'>
54                                                 <MD>Value1</MD>
55                                         </Items>
56
57                                         <Items Include='A'>
58                                                 <MD>Value2</MD>
59                                                 <MD2>Value2</MD2>
60                                         </Items>
61
62                                         <Items Include='B'>
63                                                 <MD>Value1</MD>
64                                         </Items>
65                                         <Items Include='B'>
66                                                 <MD>Value1</MD>
67                                         </Items>
68                                         <Items Include='C'>
69                                                 <MD>Value1</MD>
70                                         </Items>
71                                         <Items Include='A'>
72                                                 <MD>Value3</MD>
73                                                 <MD3>Value3</MD3>
74                                         </Items>
75                                 </ItemGroup>
76
77                                         <Target Name='Main'>
78                                                 <RemoveDuplicates Inputs='@(Items)'>
79                                                         <Output TaskParameter='Filtered' ItemName='Filtered'/>
80                                                 </RemoveDuplicates>
81                                                 <Message Text=""Filtered items: %(Filtered.Identity) MD: %(Filtered.MD) MD2: %(Filtered.MD2) MD3: %(Filtered.MD3)""/>
82                                         </Target>
83                                 </Project>
84                         ";
85
86                         Engine engine = new Engine (Consts.BinPath);
87
88                         TestMessageLogger testLogger = new TestMessageLogger ();
89                         engine.RegisterLogger (testLogger);
90
91                         Project project = engine.CreateNewProject ();
92                         project.LoadXml (documentString);
93                         if (!project.Build ("Main")) {
94                                 testLogger.DumpMessages ();
95                                 Assert.Fail ("Build failed");
96                         }
97
98                         testLogger.CheckLoggedMessageHead ("Filtered items: A MD: Value1 MD2:  MD3: ", "A1");
99                         testLogger.CheckLoggedMessageHead ("Filtered items: B MD: Value1 MD2:  MD3: ", "A2");
100                         testLogger.CheckLoggedMessageHead ("Filtered items: C MD: Value1 MD2:  MD3: ", "A3");
101                         Assert.AreEqual (0, testLogger.NormalMessageCount, "Unexpected extra messages found");
102                 }
103         }
104 }