2006-03-21 Marek Sieradzki <marek.sieradzki@gmail.com>
[mono.git] / mcs / class / Microsoft.Build.Engine / Test / Microsoft.Build.BuildEngine / ProjectTest.cs
1 //
2 // ProjectTest.cs:
3 //
4 // Author:
5 //   Marek Sieradzki (marek.sieradzki@gmail.com)
6 //
7 // (C) 2005 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.Xml;
30 using Microsoft.Build.BuildEngine;
31 using NUnit.Framework;
32
33 namespace MonoTests.Microsoft.Build.BuildEngine {
34         [TestFixture]
35         public class ProjectTest {
36
37         string binPath;
38
39         [SetUp]
40         public void SetUp ()
41         {
42             binPath = "binPath";
43         }
44
45                 // Clones a project by reloading from original.Xml
46                 private Project CloneProject (Project original)
47                 {
48                         Project clone;
49                         
50                         clone = original.ParentEngine.CreateNewProject ();
51                         clone.LoadXml (original.Xml);
52
53                         return clone;
54                 }
55
56                 [Test]
57         [ExpectedException (typeof (InvalidProjectFileException),
58         @"The default XML namespace of the project must be the MSBuild XML namespace." + 
59         " If the project is authored in the MSBuild 2003 format, please add " +
60         "xmlns=\"http://schemas.microsoft.com/developer/msbuild/2003\" to the <Project> element. " +
61         "If the project has been authored in the old 1.0 or 1.2 format, please convert it to MSBuild 2003 format.  ")]
62                 public void TestAssignment ()
63                 {
64                         Engine engine;
65                         Project project;
66                         string documentString =
67                                 "<Project></Project>";
68                         
69                         engine = new Engine (binPath);
70                         project = engine.CreateNewProject ();
71                         project.LoadXml (documentString);
72                 }
73
74                 [Test]
75                 public void TestDefaultTargets ()
76                 {
77                         Engine engine;
78                         Project proj;
79                         Project cproj;
80                         string documentString = @"
81                 <Project xmlns=""http://schemas.microsoft.com/developer/msbuild/2003"" DefaultTargets=""Build;Compile"">
82                 </Project>
83             ";
84                         
85                         engine = new Engine (binPath);
86                         proj = engine.CreateNewProject ();
87                         proj.LoadXml (documentString);
88                         
89                         Assert.AreEqual ("Build; Compile", proj.DefaultTargets, "A1");
90                         proj.DefaultTargets = "Build";
91                         Assert.AreEqual ("Build", proj.DefaultTargets, "A2");
92                         cproj = CloneProject (proj);
93                         Assert.AreEqual (proj.DefaultTargets, cproj.DefaultTargets, "A3");
94                 }
95
96                 [Test]
97                 public void TestListProperties ()
98                 {
99                         Engine engine = new Engine (binPath);
100                         Project proj = engine.CreateNewProject ();
101
102                         string documentString = @"
103                                 <Project xmlns=""http://schemas.microsoft.com/developer/msbuild/2003"">
104                                         <PropertyGroup>
105                                                 <Prop1>value1</Prop1>
106                                         </PropertyGroup>
107                                 </Project>
108                         ";
109
110                         proj.LoadXml (documentString);
111                         Assert.AreEqual (proj.PropertyGroups.Count, 1, "A1");
112                 }
113         }
114 }