new tests
authorChris Toshok <toshok@novell.com>
Thu, 5 Jan 2006 17:21:17 +0000 (17:21 -0000)
committerChris Toshok <toshok@novell.com>
Thu, 5 Jan 2006 17:21:17 +0000 (17:21 -0000)
svn path=/trunk/mcs/; revision=55106

mcs/class/System.Web.Services/Test/System.Web.Services.Configuration/DiagnosticsElementTest.cs [new file with mode: 0644]
mcs/class/System.Web.Services/Test/System.Web.Services.Configuration/ProtocolElementTest.cs [new file with mode: 0644]
mcs/class/System.Web.Services/Test/System.Web.Services.Configuration/SoapEnvelopeProcessingElementTest.cs [new file with mode: 0644]
mcs/class/System.Web.Services/Test/System.Web.Services.Configuration/SoapExtensionTypeElementTest.cs [new file with mode: 0644]
mcs/class/System.Web.Services/Test/System.Web.Services.Configuration/TypeElementTest.cs [new file with mode: 0644]
mcs/class/System.Web.Services/Test/System.Web.Services.Configuration/WsdlHelpGeneratorElementTest.cs [new file with mode: 0644]
mcs/class/System.Web.Services/Test/System.Web.Services.Configuration/WsiProfilesElementTest.cs [new file with mode: 0644]

diff --git a/mcs/class/System.Web.Services/Test/System.Web.Services.Configuration/DiagnosticsElementTest.cs b/mcs/class/System.Web.Services/Test/System.Web.Services.Configuration/DiagnosticsElementTest.cs
new file mode 100644 (file)
index 0000000..ad9b292
--- /dev/null
@@ -0,0 +1,61 @@
+//
+// System.Web.Services.Configuration.DiagnosticsElementTest.cs - Unit tests
+// for System.Web.Services.Configuration.DiagnosticsElement
+//
+// Author:
+//     Chris Toshok  <toshok@ximian.com>
+//
+// Copyright (C) 2006 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 System;
+using System.Web.Services.Configuration;
+using NUnit.Framework;
+
+namespace MonoTests.System.Web.Services {
+       [TestFixture]
+       public class DiagnosticsElementTest
+       {
+               [Test]
+               public void Defaults ()
+               {
+                       DiagnosticsElement el = new DiagnosticsElement ();
+
+                       Assert.IsFalse (el.SuppressReturningExceptions, "A1");
+               }
+
+               [Test]
+               public void GetSet ()
+               {
+                       DiagnosticsElement el = new DiagnosticsElement ();
+
+                       el.SuppressReturningExceptions = true;
+                       Assert.IsTrue (el.SuppressReturningExceptions, "A1");
+                       el.SuppressReturningExceptions = false;
+                       Assert.IsFalse (el.SuppressReturningExceptions, "A2");
+               }
+       }
+}
+
+#endif
diff --git a/mcs/class/System.Web.Services/Test/System.Web.Services.Configuration/ProtocolElementTest.cs b/mcs/class/System.Web.Services/Test/System.Web.Services.Configuration/ProtocolElementTest.cs
new file mode 100644 (file)
index 0000000..4bf5638
--- /dev/null
@@ -0,0 +1,63 @@
+//
+// System.Web.Services.Configuration.ProtocolElementTest.cs - Unit tests
+// for System.Web.Services.Configuration.ProtocolElement
+//
+// Author:
+//     Chris Toshok  <toshok@ximian.com>
+//
+// Copyright (C) 2006 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 System;
+using System.Web.Services.Configuration;
+using NUnit.Framework;
+
+namespace MonoTests.System.Web.Services {
+       [TestFixture]
+       public class ProtocolElementTest
+       {
+               [Test]
+               public void Ctors ()
+               {
+                       ProtocolElement el = new ProtocolElement ();
+
+                       Assert.AreEqual (WebServiceProtocols.Unknown, el.Name, "A1");
+
+                       el = new ProtocolElement (WebServiceProtocols.HttpPost);
+
+                       Assert.AreEqual (WebServiceProtocols.HttpPost, el.Name, "A2");
+               }
+
+               [Test]
+               public void GetSet ()
+               {
+                       ProtocolElement el = new ProtocolElement ();
+
+                       el.Name = WebServiceProtocols.HttpGet;
+                       Assert.AreEqual (WebServiceProtocols.HttpGet, el.Name, "A1");
+               }
+       }
+}
+
+#endif
diff --git a/mcs/class/System.Web.Services/Test/System.Web.Services.Configuration/SoapEnvelopeProcessingElementTest.cs b/mcs/class/System.Web.Services/Test/System.Web.Services.Configuration/SoapEnvelopeProcessingElementTest.cs
new file mode 100644 (file)
index 0000000..5a09758
--- /dev/null
@@ -0,0 +1,70 @@
+//
+// System.Web.Services.Configuration.SoapEnvelopeProcessingElementTest.cs - Unit tests
+// for System.Web.Services.Configuration.SoapEnvelopeProcessingElement
+//
+// Author:
+//     Chris Toshok  <toshok@ximian.com>
+//
+// Copyright (C) 2006 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 System;
+using System.Web.Services.Configuration;
+using NUnit.Framework;
+
+namespace MonoTests.System.Web.Services {
+       [TestFixture]
+       public class SoapEnvelopeProcessingElementTest
+       {
+               [Test]
+               public void Ctors ()
+               {
+                       SoapEnvelopeProcessingElement el = new SoapEnvelopeProcessingElement ();
+                       Assert.IsFalse (el.IsStrict, "A1");
+                       Assert.AreEqual (Int32.MaxValue, el.ReadTimeout, "A2");
+
+                       el = new SoapEnvelopeProcessingElement (500);
+                       Assert.IsFalse (el.IsStrict, "A3");
+                       Assert.AreEqual (500, el.ReadTimeout, "A4");
+
+                       el = new SoapEnvelopeProcessingElement (500, true);
+                       Assert.IsTrue (el.IsStrict, "A5");
+                       Assert.AreEqual (500, el.ReadTimeout, "A6");
+               }
+
+               [Test]
+               public void GetSet ()
+               {
+                       SoapEnvelopeProcessingElement el = new SoapEnvelopeProcessingElement ();
+
+                       el.IsStrict = true;
+                       Assert.IsTrue (el.IsStrict, "A1");
+
+                       el.ReadTimeout = 500;
+                       Assert.AreEqual (500, el.ReadTimeout, "A2");
+               }
+       }
+}
+
+#endif
diff --git a/mcs/class/System.Web.Services/Test/System.Web.Services.Configuration/SoapExtensionTypeElementTest.cs b/mcs/class/System.Web.Services/Test/System.Web.Services.Configuration/SoapExtensionTypeElementTest.cs
new file mode 100644 (file)
index 0000000..718b48d
--- /dev/null
@@ -0,0 +1,77 @@
+//
+// System.Web.Services.Configuration.SoapExtensionTypeElementTest.cs - Unit tests
+// for System.Web.Services.Configuration.SoapExtensionTypeElement
+//
+// Author:
+//     Chris Toshok  <toshok@ximian.com>
+//
+// Copyright (C) 2006 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 System;
+using System.Web.Services.Configuration;
+using NUnit.Framework;
+
+namespace MonoTests.System.Web.Services {
+       [TestFixture]
+       public class SoapExtensionTypeElementTest
+       {
+               [Test]
+               public void Ctors ()
+               {
+                       SoapExtensionTypeElement el = new SoapExtensionTypeElement ();
+
+                       Assert.AreEqual (PriorityGroup.Low, el.Group, "A1");
+                       Assert.AreEqual (0, el.Priority, "A2");
+                       Assert.IsNull (el.Type, "A3");
+
+                       el = new SoapExtensionTypeElement (typeof (string), 5, PriorityGroup.High);
+                       Assert.AreEqual (PriorityGroup.High, el.Group, "A4");
+                       Assert.AreEqual (5, el.Priority, "A5");
+                       Assert.AreEqual (typeof (string), el.Type, "A6");
+
+                       el = new SoapExtensionTypeElement ("System.String", 5, PriorityGroup.High);
+                       Assert.AreEqual (PriorityGroup.High, el.Group, "A7");
+                       Assert.AreEqual (5, el.Priority, "A8");
+                       Assert.AreEqual (typeof (string), el.Type, "A9");
+               }
+
+               [Test]
+               public void GetSet ()
+               {
+                       SoapExtensionTypeElement el = new SoapExtensionTypeElement ();
+
+                       el.Group = PriorityGroup.High;
+                       Assert.AreEqual (PriorityGroup.High, el.Group, "A1");
+
+                       el.Priority = 2;
+                       Assert.AreEqual (2, el.Priority, "A2");
+
+                       el.Type = typeof (string);
+                       Assert.AreEqual (typeof (string), el.Type, "A3");
+               }
+       }
+}
+
+#endif
diff --git a/mcs/class/System.Web.Services/Test/System.Web.Services.Configuration/TypeElementTest.cs b/mcs/class/System.Web.Services/Test/System.Web.Services.Configuration/TypeElementTest.cs
new file mode 100644 (file)
index 0000000..4672224
--- /dev/null
@@ -0,0 +1,64 @@
+//
+// System.Web.Services.Configuration.TypeElementTest.cs - Unit tests
+// for System.Web.Services.Configuration.TypeElement
+//
+// Author:
+//     Chris Toshok  <toshok@ximian.com>
+//
+// Copyright (C) 2006 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 System;
+using System.Web.Services.Configuration;
+using NUnit.Framework;
+
+namespace MonoTests.System.Web.Services {
+       [TestFixture]
+       public class TypeElementTest
+       {
+               [Test]
+               public void Ctors ()
+               {
+                       TypeElement el = new TypeElement ();
+                       Assert.IsNull (el.Type, "A1");
+
+                       el = new TypeElement (typeof (string));
+                       Assert.AreEqual (typeof (string), el.Type, "A2");
+
+                       el = new TypeElement ("System.String");
+                       Assert.AreEqual (typeof (string), el.Type, "A3");
+               }
+
+               [Test]
+               public void GetSet ()
+               {
+                       TypeElement el = new TypeElement ();
+
+                       el.Type = typeof (string);
+                       Assert.AreEqual (typeof (string), el.Type, "A1");
+               }
+       }
+}
+
+#endif
diff --git a/mcs/class/System.Web.Services/Test/System.Web.Services.Configuration/WsdlHelpGeneratorElementTest.cs b/mcs/class/System.Web.Services/Test/System.Web.Services.Configuration/WsdlHelpGeneratorElementTest.cs
new file mode 100644 (file)
index 0000000..b63abef
--- /dev/null
@@ -0,0 +1,59 @@
+//
+// System.Web.Services.Configuration.WsdlHelpGeneratorElementTest.cs - Unit tests
+// for System.Web.Services.Configuration.WsdlHelpGeneratorElement
+//
+// Author:
+//     Chris Toshok  <toshok@ximian.com>
+//
+// Copyright (C) 2006 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 System;
+using System.Web.Services.Configuration;
+using NUnit.Framework;
+
+namespace MonoTests.System.Web.Services {
+       [TestFixture]
+       public class WsdlHelpGeneratorElementTest
+       {
+               [Test]
+               public void Ctors ()
+               {
+                       WsdlHelpGeneratorElement el = new WsdlHelpGeneratorElement ();
+
+                       Assert.IsNull (el.Href, "A1");
+               }
+
+               [Test]
+               public void GetSet ()
+               {
+                       WsdlHelpGeneratorElement el = new WsdlHelpGeneratorElement ();
+
+                       el.Href="http://www.ximian.com/";
+                       Assert.AreEqual ("http://www.ximian.com/", el.Href, "A1");
+               }
+       }
+}
+
+#endif
diff --git a/mcs/class/System.Web.Services/Test/System.Web.Services.Configuration/WsiProfilesElementTest.cs b/mcs/class/System.Web.Services/Test/System.Web.Services.Configuration/WsiProfilesElementTest.cs
new file mode 100644 (file)
index 0000000..54ab9b7
--- /dev/null
@@ -0,0 +1,63 @@
+//
+// System.Web.Services.Configuration.WsiProfilesElementTest.cs - Unit tests
+// for System.Web.Services.Configuration.WsiProfilesElement
+//
+// Author:
+//     Chris Toshok  <toshok@ximian.com>
+//
+// Copyright (C) 2006 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 System;
+using System.Web.Services;
+using System.Web.Services.Configuration;
+using NUnit.Framework;
+
+namespace MonoTests.System.Web.Services {
+       [TestFixture]
+       public class WsiProfilesElementTest
+       {
+               [Test]
+               public void Ctors ()
+               {
+                       WsiProfilesElement el = new WsiProfilesElement ();
+                       Assert.AreEqual (WsiProfiles.None, el.Name, "A1");
+
+                       el = new WsiProfilesElement (WsiProfiles.BasicProfile1_1);
+                       Assert.AreEqual (WsiProfiles.BasicProfile1_1, el.Name, "A2");
+               }
+
+               [Test]
+               public void GetSet ()
+               {
+                       WsiProfilesElement el = new WsiProfilesElement ();
+
+                       el.Name = WsiProfiles.BasicProfile1_1;
+
+                       Assert.AreEqual (WsiProfiles.BasicProfile1_1, el.Name, "A1");
+               }
+       }
+}
+
+#endif