2006-12-07 Marek Sieradzki <marek.sieradzki@gmail.com>
[mono.git] / mcs / class / Microsoft.Build.Engine / Test / Microsoft.Build.BuildEngine / BuildPropertyGroupTest.cs
1 //
2 // BuildPropertyGroupTest.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 BuildPropertyGroupTest {
38                 
39                 BuildPropertyGroup      bpg;
40                 Engine                  engine;
41                 Project                 project;
42                 
43                 [Test]
44                 public void TestAssignment ()
45                 {
46                         bpg = new BuildPropertyGroup ();
47                         
48                         Assert.AreEqual (0, bpg.Count);
49                         Assert.AreEqual (false, bpg.IsImported);
50                 }
51
52                 [Test]
53                 [ExpectedException (typeof (InvalidOperationException),
54                         "This method is only valid for persisted <System.Object[]> elements.")]
55                 public void TestAddNewProperty1 ()
56                 {
57                         string name = "name";
58                         string value = "value";
59
60                         bpg = new BuildPropertyGroup ();
61
62                         bpg.AddNewProperty (name, value);
63                 }
64
65                 [Test]
66                 [ExpectedException (typeof (InvalidOperationException),
67                         "Properties in persisted property groups cannot be accessed by name.")]
68                 public void TestClone1 ()
69                 {
70                         string documentString = @"
71                                 <Project xmlns=""http://schemas.microsoft.com/developer/msbuild/2003"">
72                                         <PropertyGroup>
73                                                 <Name>Value</Name>
74                                         </PropertyGroup>
75                                 </Project>
76                         ";
77
78                         engine = new Engine (Consts.BinPath);
79
80                         project = engine.CreateNewProject ();
81                         project.LoadXml (documentString);
82
83                         IEnumerator en = project.PropertyGroups.GetEnumerator ();
84                         en.MoveNext ();
85                         bpg = (BuildPropertyGroup) en.Current;
86                         Assert.AreEqual ("Value", bpg ["Name"].Value, "A3");
87                 }
88
89                 [Test]
90                 public void TestClear ()
91                 {
92                         bpg = new BuildPropertyGroup ();
93                         
94                         bpg.SetProperty ("a", "b");
95                         Assert.AreEqual (1, bpg.Count, "A1");
96                         bpg.Clear ();
97                         Assert.AreEqual (0, bpg.Count, "A2");
98                 }
99
100                 [Test]
101                 [ExpectedException (typeof (InvalidOperationException),
102                         "Cannot set a condition on an object not represented by an XML element in the project file.")]
103                 public void TestCondition1 ()
104                 {
105                         string condition = "condition";
106                 
107                         bpg = new BuildPropertyGroup ();
108                 
109                         bpg.Condition = condition;
110                 }
111
112                 [Test]
113                 public void TestCondition2 ()
114                 {
115                         bpg = new BuildPropertyGroup ();
116                 
117                         Assert.AreEqual (String.Empty, bpg.Condition, "A1");
118                 }
119
120                 [Test]
121                 public void TestGetEnumerator ()
122                 {
123                         BuildPropertyGroup bpg = new BuildPropertyGroup ();
124                         bpg.SetProperty ("a", "c");
125                         bpg.SetProperty ("b", "d");
126
127                         IEnumerator e = bpg.GetEnumerator ();
128                         e.MoveNext ();
129                         Assert.AreEqual ("a", ((BuildProperty) e.Current).Name, "A1");
130                         Assert.AreEqual ("c", ((BuildProperty) e.Current).Value, "A2");
131                         Assert.AreEqual ("c", ((BuildProperty) e.Current).FinalValue, "A3");
132                         e.MoveNext ();
133                         Assert.AreEqual ("b", ((BuildProperty) e.Current).Name, "A4");
134                         Assert.AreEqual ("d", ((BuildProperty) e.Current).Value, "A5");
135                         Assert.AreEqual ("d", ((BuildProperty) e.Current).FinalValue, "A6");
136
137                         Assert.IsFalse (e.MoveNext ());
138                 }
139
140                 [Test]
141                 [Ignore ("NullRefException on MS .NET 2.0")]
142                 public void TestRemoveProperty1 ()
143                 {
144                         BuildPropertyGroup bpg = new BuildPropertyGroup ();
145                         bpg.RemoveProperty ((BuildProperty) null);
146                 }
147
148                 [Test]
149                 [ExpectedException (typeof (ArgumentNullException))]
150                 public void TestRemoveProperty2 ()
151                 {
152                         BuildPropertyGroup bpg = new BuildPropertyGroup ();
153                         bpg.SetProperty ("a", "b");
154                         bpg.SetProperty ("c", "d");
155
156                         bpg.RemoveProperty ((string) null);
157                 }
158
159                 [Test]
160                 public void TestRemoveProperty3 ()
161                 {
162                         BuildPropertyGroup bpg = new BuildPropertyGroup ();
163                         bpg.SetProperty ("a", "b");
164                         bpg.SetProperty ("c", "d");
165
166                         bpg.RemoveProperty ("value_not_in_group");
167                 }
168
169                 [Test]
170                 public void TestRemoveProperty4 ()
171                 {
172                         BuildPropertyGroup bpg = new BuildPropertyGroup ();
173                         bpg.SetProperty ("a", "b");
174                         bpg.SetProperty ("c", "d");
175
176                         bpg.RemoveProperty (new BuildProperty ("name", "value"));
177                 }
178
179                 [Test]
180                 [ExpectedException (typeof (ArgumentNullException))]
181                 public void TestSetProperty1 ()
182                 {
183                         BuildPropertyGroup bpg = new BuildPropertyGroup ();
184                         bpg.SetProperty (null, null);
185                 }
186
187                 [Test]
188                 [ExpectedException (typeof (ArgumentNullException))]
189                 public void TestSetProperty2 ()
190                 {
191                         BuildPropertyGroup bpg = new BuildPropertyGroup ();
192                         bpg.SetProperty ("name", null);
193                 }
194
195                 [Test]
196                 public void TestSetProperty3 ()
197                 {
198                         BuildPropertyGroup bpg = new BuildPropertyGroup ();
199                         
200                         bpg.SetProperty ("name", "$(A)");
201
202                         BuildProperty bp = bpg ["name"];
203
204                         Assert.AreEqual ("name", bp.Name, "A1");
205                         Assert.AreEqual ("$(A)", bp.Value, "A2");
206                         Assert.AreEqual ("$(A)", bp.FinalValue, "A3");
207                 }
208
209                 [Test]
210                 [Category ("NotWorking")]
211                 public void TestSetProperty4 ()
212                 {
213                         BuildPropertyGroup bpg = new BuildPropertyGroup ();
214
215                         bpg.SetProperty ("P1", "$(A)", true);
216                         bpg.SetProperty ("P2", "$(A)", false);
217
218                         BuildProperty b1 = bpg ["P1"];
219                         BuildProperty b2 = bpg ["P2"];
220
221                         Assert.AreEqual ("P1", b1.Name, "A1");
222                         Assert.AreEqual (Utilities.Escape ("$(A)"), b1.Value, "A2");
223                         Assert.AreEqual ("$(A)", b1.FinalValue, "A3");
224                         Assert.AreEqual ("P2", b2.Name, "A4");
225                         Assert.AreEqual ("$(A)", b2.Value, "A5");
226                         Assert.AreEqual ("$(A)", b2.FinalValue, "A6");
227                 }
228
229                 [Test]
230                 [ExpectedException (typeof (ArgumentException),
231                         "The name \"1\" contains an invalid character \"1\".")]
232                 [Category ("NotWorking")]
233                 public void TestSetProperty5 ()
234                 {
235                         BuildPropertyGroup bpg = new BuildPropertyGroup ();
236
237                         bpg.SetProperty ("1", "$(A)");
238                 }
239         }
240 }