[xbuild] Copy metadata from Project items to target outputs.
[mono.git] / mcs / class / Microsoft.Build.Engine / Test / Microsoft.Build.BuildEngine / BuildItemGroupCollectionTest.cs
1 //
2 // BuildItemGroupCollectionTest.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 Microsoft.Build.BuildEngine;
31 using Microsoft.Build.Framework;
32 using Microsoft.Build.Utilities;
33 using NUnit.Framework;
34
35 namespace MonoTests.Microsoft.Build.BuildEngine {
36         [TestFixture]
37         public class BuildItemGroupCollectionTest {
38                 
39                 Engine                  engine;
40                 Project                 project;
41                 
42                 [Test]
43                 [Category ("NotDotNet")]
44                 [ExpectedException (typeof (ArgumentNullException))]
45                 public void TestCopyTo1 ()
46                 {
47                         string documentString = @"
48                                 <Project xmlns=""http://schemas.microsoft.com/developer/msbuild/2003"">
49                                         <ItemGroup>
50                                                 <Name Include='Value' />
51                                         </ItemGroup>
52                                 </Project>
53                         ";
54
55                         engine = new Engine (Consts.BinPath);
56
57                         project = engine.CreateNewProject ();
58                         project.LoadXml (documentString);
59                         
60                         project.ItemGroups.CopyTo (null, 0);
61                 }
62
63                 [Test]
64                 [ExpectedException (typeof (IndexOutOfRangeException))]
65                 public void TestCopyTo2 ()
66                 {
67                         string documentString = @"
68                                 <Project xmlns=""http://schemas.microsoft.com/developer/msbuild/2003"">
69                                         <ItemGroup>
70                                                 <Name Include='Value' />
71                                         </ItemGroup>
72                                 </Project>
73                         ";
74
75                         engine = new Engine (Consts.BinPath);
76
77                         project = engine.CreateNewProject ();
78                         project.LoadXml (documentString);
79                         
80                         project.ItemGroups.CopyTo (new BuildItemGroup [1], -1);
81                 }
82
83                 [Test]
84                 [ExpectedException (typeof (InvalidCastException))]
85                 public void TestCopyTo3 ()
86                 {
87                         string documentString = @"
88                                 <Project xmlns=""http://schemas.microsoft.com/developer/msbuild/2003"">
89                                         <ItemGroup>
90                                                 <Name Include='Value' />
91                                         </ItemGroup>
92                                 </Project>
93                         ";
94
95                         engine = new Engine (Consts.BinPath);
96
97                         project = engine.CreateNewProject ();
98                         project.LoadXml (documentString);
99                         
100                         project.ItemGroups.CopyTo (new BuildItemGroup [][] { new BuildItemGroup [] {
101                                 new BuildItemGroup ()}}, 0);
102                 }
103
104                 [Test]
105                 [ExpectedException (typeof (IndexOutOfRangeException))]
106                 public void TestCopyTo4 ()
107                 {
108                         string documentString = @"
109                                 <Project xmlns=""http://schemas.microsoft.com/developer/msbuild/2003"">
110                                         <ItemGroup>
111                                                 <Name Include='Value' />
112                                         </ItemGroup>
113                                 </Project>
114                         ";
115
116                         engine = new Engine (Consts.BinPath);
117
118                         project = engine.CreateNewProject ();
119                         project.LoadXml (documentString);
120                         
121                         project.ItemGroups.CopyTo (new BuildItemGroup [1], 2);
122                 }
123
124                 [Test]
125                 [ExpectedException (typeof (IndexOutOfRangeException))]
126                 public void TestCopyTo5 ()
127                 {
128                         string documentString = @"
129                                 <Project xmlns=""http://schemas.microsoft.com/developer/msbuild/2003"">
130                                         <ItemGroup>
131                                                 <Name Include='Value' />
132                                         </ItemGroup>
133                                 </Project>
134                         ";
135
136                         engine = new Engine (Consts.BinPath);
137
138                         project = engine.CreateNewProject ();
139                         project.LoadXml (documentString);
140                         
141                         project.ItemGroups.CopyTo (new BuildItemGroup [1], 1);
142                 }
143
144                 [Test]
145                 [ExpectedException (typeof (IndexOutOfRangeException))]
146                 public void TestCopyTo6 ()
147                 {
148                         string documentString = @"
149                                 <Project xmlns=""http://schemas.microsoft.com/developer/msbuild/2003"">
150                                         <ItemGroup>
151                                         </ItemGroup>
152                                         <ItemGroup>
153                                         </ItemGroup>
154                                 </Project>
155                         ";
156
157                         engine = new Engine (Consts.BinPath);
158
159                         project = engine.CreateNewProject ();
160                         project.LoadXml (documentString);
161
162                         project.ItemGroups.CopyTo (new BuildItemGroup [1], 0);
163                 }
164         }
165 }