2006-12-04 Marek Sieradzki <marek.sieradzki@gmail.com>
[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                 [Ignore ("NullRefException on MS NET 2.0")]
44                 public void TestCopyTo1 ()
45                 {
46                         string documentString = @"
47                                 <Project xmlns=""http://schemas.microsoft.com/developer/msbuild/2003"">
48                                         <ItemGroup>
49                                                 <Name Include='Value' />
50                                         </ItemGroup>
51                                 </Project>
52                         ";
53
54                         engine = new Engine (Consts.BinPath);
55
56                         project = engine.CreateNewProject ();
57                         project.LoadXml (documentString);
58                         
59                         project.ItemGroups.CopyTo (null, 0);
60                 }
61
62                 [Test]
63                 [ExpectedException (typeof (IndexOutOfRangeException),
64                         "Index was outside the bounds of the array.")]
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                 [Ignore ("Throws InvalidCastException on MS NET 2.0")]
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                         "Index was outside the bounds of the array.")]
107                 public void TestCopyTo4 ()
108                 {
109                         string documentString = @"
110                                 <Project xmlns=""http://schemas.microsoft.com/developer/msbuild/2003"">
111                                         <ItemGroup>
112                                                 <Name Include='Value' />
113                                         </ItemGroup>
114                                 </Project>
115                         ";
116
117                         engine = new Engine (Consts.BinPath);
118
119                         project = engine.CreateNewProject ();
120                         project.LoadXml (documentString);
121                         
122                         project.ItemGroups.CopyTo (new BuildItemGroup [1], 2);
123                 }
124
125                 [Test]
126                 [ExpectedException (typeof (IndexOutOfRangeException),
127                         "Index was outside the bounds of the array.")]
128                 public void TestCopyTo5 ()
129                 {
130                         string documentString = @"
131                                 <Project xmlns=""http://schemas.microsoft.com/developer/msbuild/2003"">
132                                         <ItemGroup>
133                                                 <Name Include='Value' />
134                                         </ItemGroup>
135                                 </Project>
136                         ";
137
138                         engine = new Engine (Consts.BinPath);
139
140                         project = engine.CreateNewProject ();
141                         project.LoadXml (documentString);
142                         
143                         project.ItemGroups.CopyTo (new BuildItemGroup [1], 1);
144                 }
145
146         }
147 }