merge r67228-r67235, r67237, r67251 and r67256-67259 to trunk (they are
[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.Collections;
30 using System.Xml;
31 using Microsoft.Build.BuildEngine;
32 using NUnit.Framework;
33
34 namespace MonoTests.Microsoft.Build.BuildEngine {
35         [TestFixture]
36         public class ProjectTest {
37
38                 [Test]
39                 [ExpectedException (typeof (InvalidProjectFileException),
40                 @"The default XML namespace of the project must be the MSBuild XML namespace." + 
41                 " If the project is authored in the MSBuild 2003 format, please add " +
42                 "xmlns=\"http://schemas.microsoft.com/developer/msbuild/2003\" to the <Project> element. " +
43                 "If the project has been authored in the old 1.0 or 1.2 format, please convert it to MSBuild 2003 format.  ")]
44                 public void TestAssignment ()
45                 {
46                         Engine engine;
47                         Project project;
48                         string documentString =
49                                 "<Project></Project>";
50                         
51                         engine = new Engine (Consts.BinPath);
52                         project = engine.CreateNewProject ();
53                         project.LoadXml (documentString);
54                 }
55
56                 [Test]
57                 [Ignore ("Known bug")]
58                 public void TestBuild1 ()
59                 {
60                         Engine engine;
61                         Project project;
62                         IDictionary hashtable = new Hashtable ();
63                         
64                         string documentString = @"
65                                 <Project xmlns='http://schemas.microsoft.com/developer/msbuild/2003'>
66                                         <Target Name='Main'>
67                                                 <Message Text='Text' />
68                                         </Target>
69                                 </Project>
70                         ";
71                         
72                         engine = new Engine (Consts.BinPath);
73                         project = engine.CreateNewProject ();
74                         project.LoadXml (documentString);
75
76                         Assert.AreEqual (true, project.Build (new string[] { "Main" }, hashtable));
77                         
78                         Assert.AreEqual (1, hashtable.Count);
79                 }
80         }
81 }