2006-12-05 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                         "Properties in persisted property groups cannot be accessed by name.")]
55                 public void TestClone1 ()
56                 {
57                         string documentString = @"
58                                 <Project xmlns=""http://schemas.microsoft.com/developer/msbuild/2003"">
59                                         <PropertyGroup>
60                                                 <Name>Value</Name>
61                                         </PropertyGroup>
62                                 </Project>
63                         ";
64
65                         engine = new Engine (Consts.BinPath);
66
67                         project = engine.CreateNewProject ();
68                         project.LoadXml (documentString);
69
70                         IEnumerator en = project.PropertyGroups.GetEnumerator ();
71                         en.MoveNext ();
72                         bpg = (BuildPropertyGroup) en.Current;
73                         Assert.AreEqual ("Value", bpg ["Name"].Value, "A3");
74                 }
75
76                 [Test]
77                 [ExpectedException (typeof (InvalidOperationException),
78                         "This method is only valid for persisted <System.Object[]> elements.")]
79                 public void TestAddNewProperty1 ()
80                 {
81                         string name = "name";
82                         string value = "value";
83                 
84                         bpg = new BuildPropertyGroup ();
85                         
86                         bpg.AddNewProperty (name, value);
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 }