Merge pull request #1057 from lextm/master
[mono.git] / mcs / class / System / Test / System.Diagnostics / TraceSourceTest.cs
1 //
2 // TraceSourceTest.cs
3 //
4 // Author:
5 //      Atsushi Enomoto  <atsushi@ximian.com>
6 //
7 // Copyright (C) 2007 Novell, Inc.
8 //
9
10 //
11 // Permission is hereby granted, free of charge, to any person obtaining
12 // a copy of this software and associated documentation files (the
13 // "Software"), to deal in the Software without restriction, including
14 // without limitation the rights to use, copy, modify, merge, publish,
15 // distribute, sublicense, and/or sell copies of the Software, and to
16 // permit persons to whom the Software is furnished to do so, subject to
17 // the following conditions:
18 // 
19 // The above copyright notice and this permission notice shall be
20 // included in all copies or substantial portions of the Software.
21 // 
22 // THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND,
23 // EXPRESS OR IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF
24 // MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE AND
25 // NONINFRINGEMENT. IN NO EVENT SHALL THE AUTHORS OR COPYRIGHT HOLDERS BE
26 // LIABLE FOR ANY CLAIM, DAMAGES OR OTHER LIABILITY, WHETHER IN AN ACTION
27 // OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, OUT OF OR IN CONNECTION
28 // WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE SOFTWARE.
29 //
30
31
32 #if !MOBILE
33
34 using NUnit.Framework;
35 using System;
36 using System.Text;
37 using System.Collections;
38 using System.Configuration;
39 using System.Diagnostics;
40
41 namespace MonoTests.System.Diagnostics
42 {
43         [TestFixture]
44         public class TraceSourceTest
45         {
46                 [Test]
47                 [ExpectedException (typeof (ArgumentNullException))]
48                 public void ConstructorNullName ()
49                 {
50                         new TraceSource (null);
51                 }
52
53                 [Test]
54                 [ExpectedException (typeof (ArgumentException))]
55                 public void ConstructorEmpty ()
56                 {
57                         new TraceSource ("");
58                 }
59                 
60                 [Test]
61                 public void DefaultValues ()
62                 {
63                         TraceSource ts = new TraceSource ("foo");
64                         Assert.AreEqual ("foo", ts.Name, "#1");
65                         Assert.IsNotNull (ts.Switch, "#2");
66                         Assert.AreEqual (SourceLevels.Off, ts.Switch.Level, "#3");
67                         Assert.IsNotNull (ts.Listeners, "#4");
68                         Assert.AreEqual (1, ts.Listeners.Count, "#5");
69                         Assert.IsNotNull (ts.Attributes, "#6");
70                         Assert.AreEqual (0, ts.Attributes.Count, "#7");
71                 }
72
73                 [Test]
74                 [ExpectedException (typeof (ArgumentNullException))]
75                 public void SetSourceSwitchNull ()
76                 {
77                         TraceSource ts = new TraceSource ("foo");
78                         ts.Switch = null;
79                 }
80                 
81                 [Test]
82                 public void SwitchLevel ()
83                 {
84                         TraceSource s = new TraceSource ("Source1");
85                         Assert.AreEqual (SourceLevels.Off, s.Switch.Level, "#1");
86
87                         s = new TraceSource("Source2", SourceLevels.All);
88                         Assert.AreEqual (SourceLevels.All, s.Switch.Level, "#2");
89
90                         s = new TraceSource("Source3");
91                         s.Switch.Level = SourceLevels.All;
92                         Assert.AreEqual (SourceLevels.All, s.Switch.Level, "#3");
93                 }
94         }
95 }
96
97 #endif