In class/Microsoft.Build.Tasks:
[mono.git] / mcs / class / Microsoft.Build.Tasks / Test / Microsoft.Build.Tasks / LCTest.cs
1 //
2 // LCTest.cs
3 //
4 // Author:
5 //   Ankit Jain (jankit@novell.com)
6 //
7 // Copyright 2010 Novell, Inc (http://www.novell.com)
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.IO;
31 using Microsoft.Build.BuildEngine;
32 using Microsoft.Build.Framework;
33 using Microsoft.Build.Tasks;
34 using Microsoft.Build.Utilities;
35 using NUnit.Framework;
36
37 namespace MonoTests.Microsoft.Build.Tasks {
38
39         class LCExtended : LC {
40                 public LCExtended ()
41                         : base ()
42                 {
43                 }
44
45                 public void ACLC (CommandLineBuilderExtension commandLine)
46                 {
47                         base.AddCommandLineCommands (commandLine);
48                 }
49
50                 public string TN {
51                         get { return base.ToolName; }
52                 }
53         }
54
55         [TestFixture]
56         public class LCTest {
57
58                 [Test]
59                 public void TestAssignment1 ()
60                 {
61                         LC lc = new LC ();
62
63                         lc.LicenseTarget = new TaskItem ("bar.exe");
64                         lc.NoLogo = true;
65                         lc.OutputDirectory = "abc\\def";
66                         lc.OutputLicense = new TaskItem ("bar.exe.licenses");
67                         lc.ReferencedAssemblies = new ITaskItem [] { new TaskItem ("Test.dll") };
68                         lc.Sources = new ITaskItem [] { new TaskItem ("foo.licx") };
69
70                         Assert.AreEqual ("bar.exe", lc.LicenseTarget.ItemSpec, "LicenseTarget");
71                         Assert.AreEqual (true, lc.NoLogo, "NoLogo");
72                         Assert.AreEqual ("abc\\def", lc.OutputDirectory, "OutputDirectory");
73                         Assert.AreEqual ("bar.exe.licenses", lc.OutputLicense.ItemSpec, "OutputLicense");
74
75                         Assert.AreEqual (1, lc.ReferencedAssemblies.Length, "Number of ReferenceAssemblies");
76                         Assert.AreEqual ("Test.dll", lc.ReferencedAssemblies [0].ItemSpec, "ReferencedAssemblies[0]");
77
78                         Assert.AreEqual (1, lc.Sources.Length, "Number of Sources");
79                         Assert.AreEqual ("foo.licx", lc.Sources [0].ItemSpec, "Sources [0]");
80                 }
81
82                 [Test]
83                 public void TestDefaults ()
84                 {
85                         LC lc = new LC ();
86
87                         lc.LicenseTarget = new TaskItem ("bar.exe");
88                         lc.Sources = new ITaskItem [] { new TaskItem ("foo.licx") };
89
90                         Assert.AreEqual ("bar.exe", lc.LicenseTarget.ItemSpec, "LicenseTarget");
91                         Assert.AreEqual (false, lc.NoLogo, "NoLogo");
92                         Assert.IsNull (lc.OutputDirectory, "OutputDirectory");
93                         Assert.AreEqual (null, lc.OutputLicense, "OutputLicense");
94
95                         Assert.IsNull (lc.ReferencedAssemblies, "ReferencedAssemblies");
96
97                         Assert.AreEqual (1, lc.Sources.Length, "Number of Sources");
98                         Assert.AreEqual ("foo.licx", lc.Sources [0].ItemSpec, "Sources [0]");
99                 }
100         }
101 }