2005-11-18 Chris Toshok <toshok@ximian.com>
authorChris Toshok <toshok@novell.com>
Fri, 18 Nov 2005 23:28:52 +0000 (23:28 -0000)
committerChris Toshok <toshok@novell.com>
Fri, 18 Nov 2005 23:28:52 +0000 (23:28 -0000)
* GlobalizationSectionTest.cs, HostingEnvironmentSectionTest.cs,
CacheSectionTest.cs, CustomErrorsSectionTest.cs,
HealthMonitoringSectionTest.cs, CompilationSectionTest.cs,
DeploymentSectionTest.cs, ClientTargetSectionTest.cs: new tests.

svn path=/trunk/mcs/; revision=53257

mcs/class/System.Web/Test/System.Web.Configuration/CacheSectionTest.cs [new file with mode: 0644]
mcs/class/System.Web/Test/System.Web.Configuration/ChangeLog
mcs/class/System.Web/Test/System.Web.Configuration/ClientTargetSectionTest.cs [new file with mode: 0644]
mcs/class/System.Web/Test/System.Web.Configuration/CompilationSectionTest.cs [new file with mode: 0644]
mcs/class/System.Web/Test/System.Web.Configuration/CustomErrorsSectionTest.cs [new file with mode: 0644]
mcs/class/System.Web/Test/System.Web.Configuration/DeploymentSectionTest.cs [new file with mode: 0644]
mcs/class/System.Web/Test/System.Web.Configuration/GlobalizationSectionTest.cs [new file with mode: 0644]
mcs/class/System.Web/Test/System.Web.Configuration/HealthMonitoringSectionTest.cs [new file with mode: 0644]
mcs/class/System.Web/Test/System.Web.Configuration/HostingEnvironmentSectionTest.cs [new file with mode: 0644]

diff --git a/mcs/class/System.Web/Test/System.Web.Configuration/CacheSectionTest.cs b/mcs/class/System.Web/Test/System.Web.Configuration/CacheSectionTest.cs
new file mode 100644 (file)
index 0000000..0591797
--- /dev/null
@@ -0,0 +1,74 @@
+//
+// CacheSectionTest.cs 
+//     - unit tests for System.Web.Configuration.CacheSection
+//
+// Author:
+//     Chris Toshok  <toshok@ximian.com>
+//
+// Copyright (C) 2005 Novell, Inc (http://www.novell.com)
+//
+// Permission is hereby granted, free of charge, to any person obtaining
+// a copy of this software and associated documentation files (the
+// "Software"), to deal in the Software without restriction, including
+// without limitation the rights to use, copy, modify, merge, publish,
+// distribute, sublicense, and/or sell copies of the Software, and to
+// permit persons to whom the Software is furnished to do so, subject to
+// the following conditions:
+// 
+// The above copyright notice and this permission notice shall be
+// included in all copies or substantial portions of the Software.
+// 
+// THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND,
+// EXPRESS OR IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF
+// MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE AND
+// NONINFRINGEMENT. IN NO EVENT SHALL THE AUTHORS OR COPYRIGHT HOLDERS BE
+// LIABLE FOR ANY CLAIM, DAMAGES OR OTHER LIABILITY, WHETHER IN AN ACTION
+// OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, OUT OF OR IN CONNECTION
+// WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE SOFTWARE.
+//
+
+#if NET_2_0
+
+using NUnit.Framework;
+
+using System;
+using System.Configuration;
+using System.Web.Configuration;
+using System.Web;
+using System.Web.Security;
+
+namespace MonoTests.System.Web.Configuration {
+
+       [TestFixture]
+       public class CacheSectionTest  {
+
+               [Test]
+               public void Defaults ()
+               {
+                       CacheSection c = new CacheSection ();
+                       Assert.AreEqual (false, c.DisableExpiration, "A1");
+                       Assert.AreEqual (false, c.DisableMemoryCollection, "A2");
+                       Assert.AreEqual (89, c.PercentagePhysicalMemoryUsedLimit, "A3");
+                       Assert.AreEqual (0, c.PrivateBytesLimit, "A4");
+                       Assert.AreEqual (TimeSpan.FromMinutes (2), c.PrivateBytesPollTime, "A4");
+               }
+
+               [Test]
+               [ExpectedException (typeof (ConfigurationErrorsException))]
+               public void PercentagePhysicalMemoryUsedLimit_validationFailure()
+               {
+                       CacheSection c = new CacheSection ();
+                       c.PercentagePhysicalMemoryUsedLimit = -1;
+               }
+
+               [Test]
+               [ExpectedException (typeof (ConfigurationErrorsException))]
+               public void PrivateBytesLimit_validationFailure ()
+               {
+                       CacheSection c = new CacheSection ();
+                       c.PrivateBytesLimit = -1L;
+               }
+       }
+}
+
+#endif
index dff1a5a6f9421a1d364ab84aedd848007c26bc8d..5ad8bbd9c015c3e26bf465131bbccb4888cf419e 100644 (file)
@@ -1,3 +1,11 @@
+2005-11-18  Chris Toshok  <toshok@ximian.com>
+
+       * GlobalizationSectionTest.cs, HostingEnvironmentSectionTest.cs,
+       CacheSectionTest.cs, CustomErrorsSectionTest.cs,
+       HealthMonitoringSectionTest.cs, CompilationSectionTest.cs,
+       DeploymentSectionTest.cs, ClientTargetSectionTest.cs: new tests.
+
+
 2005-11-14  Chris Toshok  <toshok@ximian.com>
 
        * AnonymousIdentificationSectionTest.cs: remove MS stacktrace
diff --git a/mcs/class/System.Web/Test/System.Web.Configuration/ClientTargetSectionTest.cs b/mcs/class/System.Web/Test/System.Web.Configuration/ClientTargetSectionTest.cs
new file mode 100644 (file)
index 0000000..9519a64
--- /dev/null
@@ -0,0 +1,56 @@
+//
+// ClientTargetSectionTest.cs 
+//     - unit tests for System.Web.Configuration.ClientTargetSection
+//
+// Author:
+//     Chris Toshok  <toshok@ximian.com>
+//
+// Copyright (C) 2005 Novell, Inc (http://www.novell.com)
+//
+// Permission is hereby granted, free of charge, to any person obtaining
+// a copy of this software and associated documentation files (the
+// "Software"), to deal in the Software without restriction, including
+// without limitation the rights to use, copy, modify, merge, publish,
+// distribute, sublicense, and/or sell copies of the Software, and to
+// permit persons to whom the Software is furnished to do so, subject to
+// the following conditions:
+// 
+// The above copyright notice and this permission notice shall be
+// included in all copies or substantial portions of the Software.
+// 
+// THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND,
+// EXPRESS OR IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF
+// MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE AND
+// NONINFRINGEMENT. IN NO EVENT SHALL THE AUTHORS OR COPYRIGHT HOLDERS BE
+// LIABLE FOR ANY CLAIM, DAMAGES OR OTHER LIABILITY, WHETHER IN AN ACTION
+// OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, OUT OF OR IN CONNECTION
+// WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE SOFTWARE.
+//
+
+#if NET_2_0
+
+using NUnit.Framework;
+
+using System;
+using System.Configuration;
+using System.Web.Configuration;
+using System.Web;
+using System.Web.Security;
+
+namespace MonoTests.System.Web.Configuration {
+
+       [TestFixture]
+       public class ClientTargetSectionTest  {
+
+               [Test]
+               public void Defaults ()
+               {
+                       ClientTargetSection c = new ClientTargetSection ();
+
+                       Assert.IsNotNull (c.ClientTargets, "A1");
+                       Assert.AreEqual (typeof (ClientTargetCollection), c.ClientTargets.GetType(), "A2");
+               }
+       }
+}
+
+#endif
diff --git a/mcs/class/System.Web/Test/System.Web.Configuration/CompilationSectionTest.cs b/mcs/class/System.Web/Test/System.Web.Configuration/CompilationSectionTest.cs
new file mode 100644 (file)
index 0000000..707dd24
--- /dev/null
@@ -0,0 +1,74 @@
+//
+// CompilationSectionTest.cs 
+//     - unit tests for System.Web.Configuration.CompilationSection
+//
+// Author:
+//     Chris Toshok  <toshok@ximian.com>
+//
+// Copyright (C) 2005 Novell, Inc (http://www.novell.com)
+//
+// Permission is hereby granted, free of charge, to any person obtaining
+// a copy of this software and associated documentation files (the
+// "Software"), to deal in the Software without restriction, including
+// without limitation the rights to use, copy, modify, merge, publish,
+// distribute, sublicense, and/or sell copies of the Software, and to
+// permit persons to whom the Software is furnished to do so, subject to
+// the following conditions:
+// 
+// The above copyright notice and this permission notice shall be
+// included in all copies or substantial portions of the Software.
+// 
+// THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND,
+// EXPRESS OR IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF
+// MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE AND
+// NONINFRINGEMENT. IN NO EVENT SHALL THE AUTHORS OR COPYRIGHT HOLDERS BE
+// LIABLE FOR ANY CLAIM, DAMAGES OR OTHER LIABILITY, WHETHER IN AN ACTION
+// OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, OUT OF OR IN CONNECTION
+// WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE SOFTWARE.
+//
+
+#if NET_2_0
+
+using NUnit.Framework;
+
+using System;
+using System.Configuration;
+using System.Web.Configuration;
+using System.Web;
+using System.Web.Security;
+
+namespace MonoTests.System.Web.Configuration {
+
+       [TestFixture]
+       public class CompilationSectionTest  {
+
+               [Test]
+               public void Defaults ()
+               {
+                       CompilationSection c = new CompilationSection ();
+
+                       Assert.IsNotNull (c.Assemblies, "A1");
+
+                       Assert.AreEqual ("", c.AssemblyPostProcessorType, "A2");
+                       Assert.IsTrue   (c.Batch, "A3");
+                       Assert.AreEqual (TimeSpan.FromMinutes (15), c.BatchTimeout, "A4");
+
+                       Assert.IsNotNull (c.BuildProviders, "A5");
+                       Assert.IsNotNull (c.CodeSubDirectories, "A6");
+                       Assert.IsNotNull (c.Compilers, "A7");
+
+                       Assert.IsFalse (c.Debug, "A8");
+                       Assert.AreEqual ("vb", c.DefaultLanguage, "A9");
+                       Assert.IsTrue (c.Explicit, "A10");
+                       
+                       Assert.IsNotNull (c.ExpressionBuilders, "A11");
+                       Assert.AreEqual (1000, c.MaxBatchSize, "A12");
+                       Assert.AreEqual (15, c.NumRecompilesBeforeAppRestart, "A13");
+                       Assert.IsFalse  (c.Strict, "A14");
+                       Assert.AreEqual ("", c.TempDirectory, "A15");
+                       Assert.IsFalse (c.UrlLinePragmas, "A16");
+               }
+       }
+}
+
+#endif
diff --git a/mcs/class/System.Web/Test/System.Web.Configuration/CustomErrorsSectionTest.cs b/mcs/class/System.Web/Test/System.Web.Configuration/CustomErrorsSectionTest.cs
new file mode 100644 (file)
index 0000000..07c914b
--- /dev/null
@@ -0,0 +1,57 @@
+//
+// CustomErrorsSectionTest.cs 
+//     - unit tests for System.Web.Configuration.CustomErrorsSection
+//
+// Author:
+//     Chris Toshok  <toshok@ximian.com>
+//
+// Copyright (C) 2005 Novell, Inc (http://www.novell.com)
+//
+// Permission is hereby granted, free of charge, to any person obtaining
+// a copy of this software and associated documentation files (the
+// "Software"), to deal in the Software without restriction, including
+// without limitation the rights to use, copy, modify, merge, publish,
+// distribute, sublicense, and/or sell copies of the Software, and to
+// permit persons to whom the Software is furnished to do so, subject to
+// the following conditions:
+// 
+// The above copyright notice and this permission notice shall be
+// included in all copies or substantial portions of the Software.
+// 
+// THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND,
+// EXPRESS OR IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF
+// MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE AND
+// NONINFRINGEMENT. IN NO EVENT SHALL THE AUTHORS OR COPYRIGHT HOLDERS BE
+// LIABLE FOR ANY CLAIM, DAMAGES OR OTHER LIABILITY, WHETHER IN AN ACTION
+// OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, OUT OF OR IN CONNECTION
+// WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE SOFTWARE.
+//
+
+#if NET_2_0
+
+using NUnit.Framework;
+
+using System;
+using System.Configuration;
+using System.Web.Configuration;
+using System.Web;
+using System.Web.Security;
+
+namespace MonoTests.System.Web.Configuration {
+
+       [TestFixture]
+       public class CustomErrorsSectionTest  {
+
+               [Test]
+               public void Defaults ()
+               {
+                       CustomErrorsSection c = new CustomErrorsSection ();
+
+                       Assert.IsNull (c.DefaultRedirect, "A1");
+                       Assert.IsNotNull (c.Errors, "A2");
+                       Assert.AreEqual (CustomErrorsMode.RemoteOnly, c.Mode, "A3");
+               }
+       }
+}
+
+#endif
diff --git a/mcs/class/System.Web/Test/System.Web.Configuration/DeploymentSectionTest.cs b/mcs/class/System.Web/Test/System.Web.Configuration/DeploymentSectionTest.cs
new file mode 100644 (file)
index 0000000..ab7097c
--- /dev/null
@@ -0,0 +1,55 @@
+//
+// DeploymentSectionTest.cs 
+//     - unit tests for System.Web.Configuration.DeploymentSection
+//
+// Author:
+//     Chris Toshok  <toshok@ximian.com>
+//
+// Copyright (C) 2005 Novell, Inc (http://www.novell.com)
+//
+// Permission is hereby granted, free of charge, to any person obtaining
+// a copy of this software and associated documentation files (the
+// "Software"), to deal in the Software without restriction, including
+// without limitation the rights to use, copy, modify, merge, publish,
+// distribute, sublicense, and/or sell copies of the Software, and to
+// permit persons to whom the Software is furnished to do so, subject to
+// the following conditions:
+// 
+// The above copyright notice and this permission notice shall be
+// included in all copies or substantial portions of the Software.
+// 
+// THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND,
+// EXPRESS OR IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF
+// MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE AND
+// NONINFRINGEMENT. IN NO EVENT SHALL THE AUTHORS OR COPYRIGHT HOLDERS BE
+// LIABLE FOR ANY CLAIM, DAMAGES OR OTHER LIABILITY, WHETHER IN AN ACTION
+// OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, OUT OF OR IN CONNECTION
+// WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE SOFTWARE.
+//
+
+#if NET_2_0
+
+using NUnit.Framework;
+
+using System;
+using System.Configuration;
+using System.Web.Configuration;
+using System.Web;
+using System.Web.Security;
+
+namespace MonoTests.System.Web.Configuration {
+
+       [TestFixture]
+       public class DeploymentSectionTest  {
+
+               [Test]
+               public void Defaults ()
+               {
+                       DeploymentSection d = new DeploymentSection ();
+
+                       Assert.IsFalse (d.Retail, "A1");
+               }
+       }
+}
+
+#endif
diff --git a/mcs/class/System.Web/Test/System.Web.Configuration/GlobalizationSectionTest.cs b/mcs/class/System.Web/Test/System.Web.Configuration/GlobalizationSectionTest.cs
new file mode 100644 (file)
index 0000000..ae9c17c
--- /dev/null
@@ -0,0 +1,65 @@
+//
+// GlobalizationSectionTest.cs 
+//     - unit tests for System.Web.Configuration.GlobalizationSection
+//
+// Author:
+//     Chris Toshok  <toshok@ximian.com>
+//
+// Copyright (C) 2005 Novell, Inc (http://www.novell.com)
+//
+// Permission is hereby granted, free of charge, to any person obtaining
+// a copy of this software and associated documentation files (the
+// "Software"), to deal in the Software without restriction, including
+// without limitation the rights to use, copy, modify, merge, publish,
+// distribute, sublicense, and/or sell copies of the Software, and to
+// permit persons to whom the Software is furnished to do so, subject to
+// the following conditions:
+// 
+// The above copyright notice and this permission notice shall be
+// included in all copies or substantial portions of the Software.
+// 
+// THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND,
+// EXPRESS OR IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF
+// MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE AND
+// NONINFRINGEMENT. IN NO EVENT SHALL THE AUTHORS OR COPYRIGHT HOLDERS BE
+// LIABLE FOR ANY CLAIM, DAMAGES OR OTHER LIABILITY, WHETHER IN AN ACTION
+// OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, OUT OF OR IN CONNECTION
+// WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE SOFTWARE.
+//
+
+#if NET_2_0
+
+using NUnit.Framework;
+
+using System;
+using System.Configuration;
+using System.Text;
+using System.Web.Configuration;
+using System.Web;
+using System.Web.Security;
+
+namespace MonoTests.System.Web.Configuration {
+
+       [TestFixture]
+       public class GlobalizationSectionTest  {
+
+               [Test]
+               public void Defaults ()
+               {
+                       GlobalizationSection g = new GlobalizationSection ();
+
+                       Assert.AreEqual ("", g.Culture, "A1");
+                       Assert.IsFalse (g.EnableBestFitResponseEncoding, "A2");
+                       Assert.IsFalse (g.EnableClientBasedCulture, "A3");
+
+                       // XXX FileEncoding?
+
+                       Assert.AreEqual (Encoding.UTF8, g.RequestEncoding, "A5");
+                       Assert.AreEqual ("", g.ResourceProviderFactoryType, "A6");
+                       Assert.AreEqual (Encoding.UTF8, g.ResponseHeaderEncoding, "A7");
+                       Assert.AreEqual ("", g.UICulture, "A8");
+               }
+       }
+}
+
+#endif
diff --git a/mcs/class/System.Web/Test/System.Web.Configuration/HealthMonitoringSectionTest.cs b/mcs/class/System.Web/Test/System.Web.Configuration/HealthMonitoringSectionTest.cs
new file mode 100644 (file)
index 0000000..46b209c
--- /dev/null
@@ -0,0 +1,61 @@
+//
+// HealthMonitoringSectionTest.cs 
+//     - unit tests for System.Web.Configuration.HealthMonitoringSection
+//
+// Author:
+//     Chris Toshok  <toshok@ximian.com>
+//
+// Copyright (C) 2005 Novell, Inc (http://www.novell.com)
+//
+// Permission is hereby granted, free of charge, to any person obtaining
+// a copy of this software and associated documentation files (the
+// "Software"), to deal in the Software without restriction, including
+// without limitation the rights to use, copy, modify, merge, publish,
+// distribute, sublicense, and/or sell copies of the Software, and to
+// permit persons to whom the Software is furnished to do so, subject to
+// the following conditions:
+// 
+// The above copyright notice and this permission notice shall be
+// included in all copies or substantial portions of the Software.
+// 
+// THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND,
+// EXPRESS OR IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF
+// MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE AND
+// NONINFRINGEMENT. IN NO EVENT SHALL THE AUTHORS OR COPYRIGHT HOLDERS BE
+// LIABLE FOR ANY CLAIM, DAMAGES OR OTHER LIABILITY, WHETHER IN AN ACTION
+// OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, OUT OF OR IN CONNECTION
+// WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE SOFTWARE.
+//
+
+#if NET_2_0
+
+using NUnit.Framework;
+
+using System;
+using System.Configuration;
+using System.Web.Configuration;
+using System.Web;
+using System.Web.Security;
+
+namespace MonoTests.System.Web.Configuration {
+
+       [TestFixture]
+       public class HealthMonitoringSectionTest  {
+
+               [Test]
+               public void Defaults ()
+               {
+                       HealthMonitoringSection s = new HealthMonitoringSection ();
+
+                       Assert.IsNotNull (s.BufferModes, "A1");
+                       Assert.IsTrue (s.Enabled, "A2");
+                       Assert.IsNotNull (s.EventMappings, "A3");
+                       Assert.AreEqual (TimeSpan.Zero, s.HeartbeatInterval, "A4");
+                       Assert.IsNotNull (s.Profiles, "A5");
+                       Assert.IsNotNull (s.Providers, "A6");
+                       Assert.IsNotNull (s.Rules, "A7");
+               }
+       }
+}
+
+#endif
diff --git a/mcs/class/System.Web/Test/System.Web.Configuration/HostingEnvironmentSectionTest.cs b/mcs/class/System.Web/Test/System.Web.Configuration/HostingEnvironmentSectionTest.cs
new file mode 100644 (file)
index 0000000..81a1752
--- /dev/null
@@ -0,0 +1,73 @@
+//
+// HostingEnvironmentSectionTest.cs 
+//     - unit tests for System.Web.Configuration.HostingEnvironmentSection
+//
+// Author:
+//     Chris Toshok  <toshok@ximian.com>
+//
+// Copyright (C) 2005 Novell, Inc (http://www.novell.com)
+//
+// Permission is hereby granted, free of charge, to any person obtaining
+// a copy of this software and associated documentation files (the
+// "Software"), to deal in the Software without restriction, including
+// without limitation the rights to use, copy, modify, merge, publish,
+// distribute, sublicense, and/or sell copies of the Software, and to
+// permit persons to whom the Software is furnished to do so, subject to
+// the following conditions:
+// 
+// The above copyright notice and this permission notice shall be
+// included in all copies or substantial portions of the Software.
+// 
+// THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND,
+// EXPRESS OR IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF
+// MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE AND
+// NONINFRINGEMENT. IN NO EVENT SHALL THE AUTHORS OR COPYRIGHT HOLDERS BE
+// LIABLE FOR ANY CLAIM, DAMAGES OR OTHER LIABILITY, WHETHER IN AN ACTION
+// OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, OUT OF OR IN CONNECTION
+// WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE SOFTWARE.
+//
+
+#if NET_2_0
+
+using NUnit.Framework;
+
+using System;
+using System.Configuration;
+using System.Web.Configuration;
+using System.Web;
+using System.Web.Security;
+
+namespace MonoTests.System.Web.Configuration {
+
+       [TestFixture]
+       public class HostingEnvironmentSectionTest  {
+
+               [Test]
+               public void Defaults ()
+               {
+                       HostingEnvironmentSection s = new HostingEnvironmentSection ();
+
+                       Assert.AreEqual (TimeSpan.MaxValue, s.IdleTimeout, "A1");
+                       Assert.IsTrue (s.ShadowCopyBinAssemblies, "A2");
+                       Assert.AreEqual (TimeSpan.FromSeconds (30), s.ShutdownTimeout, "A3");
+               }
+
+               [Test]
+               [ExpectedException (typeof (ConfigurationErrorsException))]
+               public void IdleTimeout_validationFailure ()
+               {
+                       HostingEnvironmentSection s = new HostingEnvironmentSection ();
+                       s.IdleTimeout = TimeSpan.FromSeconds (-1);
+               }
+
+               [Test]
+               [ExpectedException (typeof (ConfigurationErrorsException))]
+               public void ShutdownTimeout_validationFailure ()
+               {
+                       HostingEnvironmentSection s = new HostingEnvironmentSection ();
+                       s.ShutdownTimeout = TimeSpan.FromSeconds (-1);
+               }
+       }
+}
+
+#endif