New test.
[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                 string                  binPath;
41                 Engine                  engine;
42                 Project                 project;
43                 
44                 [SetUp]
45                 public void SetUp ()
46                 {
47                         binPath = "../../tools/xbuild/xbuild";
48                 }
49                 
50                 [Test]
51                 public void TestAssignment ()
52                 {
53                         bpg = new BuildPropertyGroup ();
54                         
55                         Assert.AreEqual (0, bpg.Count);
56                         Assert.AreEqual (false, bpg.IsImported);
57                 }
58                 
59                 [Test]
60                 [ExpectedException (typeof (InvalidOperationException),
61                         "Properties in persisted property groups cannot be accessed by name.")]
62                 public void TestClone1 ()
63                 {
64                         string documentString = @"
65                                 <Project xmlns=""http://schemas.microsoft.com/developer/msbuild/2003"">
66                                         <PropertyGroup>
67                                                 <Name>Value</Name>
68                                         </PropertyGroup>
69                                 </Project>
70                         ";
71
72                         engine = new Engine (binPath);
73
74                         project = engine.CreateNewProject ();
75                         project.LoadXml (documentString);
76
77                         IEnumerator en = project.PropertyGroups.GetEnumerator ();
78                         en.MoveNext ();
79                         bpg = (BuildPropertyGroup) en.Current;
80                         Assert.AreEqual ("Value", bpg ["Name"].Value, "A3");
81                 }
82
83                 [Test]
84                 [ExpectedException (typeof (InvalidOperationException),
85                         "This method is only valid for persisted <System.Object[]> elements.")]
86                 public void TestAddNewProperty1 ()
87                 {
88                         string name = "name";
89                         string value = "value";
90                 
91                         bpg = new BuildPropertyGroup ();
92                         
93                         bpg.AddNewProperty (name, value);
94                 }
95                 
96                 [Test]
97                 public void TestClear ()
98                 {
99                         bpg = new BuildPropertyGroup ();
100                         
101                         bpg.SetProperty ("a", "b");
102                         Assert.AreEqual (1, bpg.Count, "A1");
103                         bpg.Clear ();
104                         Assert.AreEqual (0, bpg.Count, "A2");
105                 }
106
107                 [Test]
108                 [ExpectedException (typeof (InvalidOperationException),
109                         "Cannot set a condition on an object not represented by an XML element in the project file.")]
110                 public void TestCondition1 ()
111                 {
112                         string condition = "condition";
113                 
114                         bpg = new BuildPropertyGroup ();
115                 
116                         bpg.Condition = condition;
117                 }
118
119                 [Test]
120                 public void TestCondition2 ()
121                 {
122                         bpg = new BuildPropertyGroup ();
123                 
124                         Assert.AreEqual (String.Empty, bpg.Condition, "A1");
125                 }
126         }
127 }