Imported Upstream version 3.6.0

Former-commit-id: da6be194a6b1221998fc28233f2503bd61dd9d14
This commit is contained in:
Jo Shields
2014-08-13 10:39:27 +01:00
commit a575963da9
50588 changed files with 8155799 additions and 0 deletions

View File

@@ -0,0 +1,26 @@
2009-06-26 Robert Jordan <robertj@gmx.net>
* *.cs: Upgrade to new NUnit style.
2007-10-03 Atsushi Enomoto <atsushi@ximian.com>
* TypeElement.cs : disable a test that causes NRE on .NET.
2006-01-13 Raja R Harinath <rharinath@novell.com>
* TypeElementTest.cs (Ctors1): Don't expect a null-reference
exception.
2003-05-13 Martin Willemoes Hansen <mwh@sysrq.dk>
* XmlFormatExtensionAttributeTest.cs: Inherits from Assertion and
Assertion. prefixes removed.
2003-02-22 Dave Bettin <dave@opendotnet.com>
* Moved over to Nunit2 Tests
* Removed AllTests.cs
2002-08-09 Tim Coleman <tim@timcoleman.com>
* AllTests.cs:
* ChangeLog:
* XmlFormatExtensionAttributeTest.cs:
New files added for test suite.

View File

@@ -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

View File

@@ -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

View File

@@ -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

View File

@@ -0,0 +1,94 @@
//
// 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.Configuration;
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");
}
[Test]
[ExpectedException (typeof (ConfigurationErrorsException))]
public void PriorityValidator1 ()
{
SoapExtensionTypeElement el = new SoapExtensionTypeElement ();
el.Priority = -1;
}
[Test]
public void PriorityValidator2 ()
{
SoapExtensionTypeElement el = new SoapExtensionTypeElement ();
el.Priority = 0;
el.Priority = Int32.MaxValue;
}
}
}
#endif

View File

@@ -0,0 +1,71 @@
//
// 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.Configuration {
[TestFixture]
public class TypeElementTest
{
[Test]
[Ignore ("causes NRE on .NET")]
public void Ctors1 ()
{
TypeElement el = new TypeElement ();
Assert.IsNull (el.Type, "A1");
}
[Test]
public void Ctors2 ()
{
TypeElement el;
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

View File

@@ -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

View File

@@ -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

View File

@@ -0,0 +1,63 @@
//
// MonoTests.System.Web.Services.Configuration.XmlFormatExtensionAttributeTest.cs
//
// Author:
// Tim Coleman (tim@timcoleman.com)
// Dave Bettin (dave@opendotnet.com)
//
// Copyright (C) Tim Coleman, 2002
// Copyright (C) Dave Bettin, 2003
//
using NUnit.Framework;
using System;
using System.Web.Services.Configuration;
using System.Web.Services.Description;
namespace MonoTests.System.Web.Services.Configuration {
[TestFixture]
public class XmlFormatExtensionAttributeTest {
[Test]
public void TestConstructors ()
{
XmlFormatExtensionAttribute attribute;
/* attribute = new XmlFormatExtensionAttribute ();
Assert.AreEqual (String.Empty, attribute.ElementName);
Assert.AreEqual (null, attribute.ExtensionPoints);
Assert.AreEqual (String.Empty, attribute.Namespace);
string elementName = "binding";
string ns = "http://schemas.xmlsoap.org/wsdl/http/";
Type[] types = new Type[4] {typeof (Binding), typeof (Binding), typeof (Binding), typeof (Binding)};
attribute = new XmlFormatExtensionAttribute (elementName, ns, types[0]);
Assert.AreEqual (elementName, attribute.ElementName);
Assert.AreEqual (new Type[1] {types[0]}, attribute.ExtensionPoints);
Assert.AreEqual (ns, attribute.Namespace);
attribute = new XmlFormatExtensionAttribute (elementName, ns, types[0], types[1]);
Assert.AreEqual (elementName, attribute.ElementName);
Assert.AreEqual (types[1]}, attribute.ExtensionPoints, new Type[2] {types[0]);
Assert.AreEqual (ns, attribute.Namespace);
attribute = new XmlFormatExtensionAttribute (elementName, ns, types[0], types[1], types[2]);
Assert.AreEqual (elementName, attribute.ElementName);
Assert.AreEqual (types[1], types[2]}, attribute.ExtensionPoints, new Type[3] {types[0]);
Assert.AreEqual (ns, attribute.Namespace);
attribute = new XmlFormatExtensionAttribute (elementName, ns, types[0], types[1], types[2], types[3]);
Assert.AreEqual (elementName, attribute.ElementName);
Assert.AreEqual (types[1], types[2], types[3]}, attribute.ExtensionPoints, new Type[4] {types[0]);
Assert.AreEqual (ns, attribute.Namespace);
attribute = new XmlFormatExtensionAttribute (elementName, ns, types);
Assert.AreEqual (elementName, attribute.ElementName);
Assert.AreEqual (types, attribute.ExtensionPoints);
Assert.AreEqual (ns, attribute.Namespace);*/
}
}
}