You've already forked linux-packaging-mono
Imported Upstream version 4.3.2.467
Former-commit-id: 9c2cb47f45fa221e661ab616387c9cda183f283d
This commit is contained in:
@@ -39,6 +39,8 @@ using System.Xml.Serialization;
|
||||
|
||||
using NUnit.Framework;
|
||||
|
||||
using MonoTests.Helpers;
|
||||
|
||||
namespace MonoTests.System.Web.Services.Protocols
|
||||
{
|
||||
[TestFixture]
|
||||
@@ -49,9 +51,7 @@ namespace MonoTests.System.Web.Services.Protocols
|
||||
public void OutParametersTest ()
|
||||
{
|
||||
IPEndPoint localEP = new IPEndPoint (IPAddress.Loopback, 5000);
|
||||
using (SocketResponder sr = new SocketResponder (localEP, new SocketRequestHandler (OutParametersResponse))) {
|
||||
sr.Start ();
|
||||
|
||||
using (SocketResponder sr = new SocketResponder (localEP, s => OutParametersResponse (s))) {
|
||||
FooService service = new FooService ();
|
||||
service.Url = "http://" + IPAddress.Loopback.ToString () + ":5000/";
|
||||
|
||||
@@ -62,8 +62,6 @@ namespace MonoTests.System.Web.Services.Protocols
|
||||
Assert.AreEqual (0, a, "#A2");
|
||||
Assert.IsFalse (b, "#A3");
|
||||
service.Dispose ();
|
||||
|
||||
sr.Stop ();
|
||||
}
|
||||
}
|
||||
|
||||
@@ -72,9 +70,7 @@ namespace MonoTests.System.Web.Services.Protocols
|
||||
public void FaultTest ()
|
||||
{
|
||||
IPEndPoint localEP = new IPEndPoint (IPAddress.Loopback, 5000);
|
||||
using (SocketResponder sr = new SocketResponder (localEP, new SocketRequestHandler (FaultResponse_Qualified))) {
|
||||
sr.Start ();
|
||||
|
||||
using (SocketResponder sr = new SocketResponder (localEP, s => FaultResponse_Qualified (s))) {
|
||||
FooService service = new FooService ();
|
||||
service.Url = "http://" + IPAddress.Loopback.ToString () + ":5000/";
|
||||
try {
|
||||
@@ -97,13 +93,9 @@ namespace MonoTests.System.Web.Services.Protocols
|
||||
Assert.AreEqual ("Failure processing request.", ex.Message, "#A9");
|
||||
}
|
||||
service.Dispose ();
|
||||
|
||||
sr.Stop ();
|
||||
}
|
||||
|
||||
using (SocketResponder sr = new SocketResponder (localEP, new SocketRequestHandler (FaultResponse_Unqualified))) {
|
||||
sr.Start ();
|
||||
|
||||
using (SocketResponder sr = new SocketResponder (localEP, s => FaultResponse_Unqualified (s))) {
|
||||
FooService service = new FooService ();
|
||||
service.Url = "http://" + IPAddress.Loopback.ToString () + ":5000/";
|
||||
try {
|
||||
@@ -126,8 +118,6 @@ namespace MonoTests.System.Web.Services.Protocols
|
||||
Assert.AreEqual ("Failure processing request.", ex.Message, "#B9");
|
||||
}
|
||||
service.Dispose ();
|
||||
|
||||
sr.Stop ();
|
||||
}
|
||||
}
|
||||
|
||||
|
@@ -1,118 +0,0 @@
|
||||
//
|
||||
// SocketResponder.cs - Utility class for tests that require a listener
|
||||
//
|
||||
// Author:
|
||||
// Gert Driesen (drieseng@users.sourceforge.net)
|
||||
//
|
||||
// Copyright (C) 2007 Gert Driesen
|
||||
//
|
||||
// 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.
|
||||
//
|
||||
|
||||
using System;
|
||||
using System.Globalization;
|
||||
using System.IO;
|
||||
using System.Net;
|
||||
using System.Net.Sockets;
|
||||
using System.Text;
|
||||
using System.Threading;
|
||||
|
||||
namespace MonoTests.System.Web.Services.Protocols
|
||||
{
|
||||
public delegate byte [] SocketRequestHandler (Socket socket);
|
||||
|
||||
public class SocketResponder : IDisposable
|
||||
{
|
||||
private TcpListener tcpListener;
|
||||
private readonly IPEndPoint _localEndPoint;
|
||||
private Thread listenThread;
|
||||
private SocketRequestHandler _requestHandler;
|
||||
private bool _stopped = true;
|
||||
private readonly object _syncRoot = new object ();
|
||||
|
||||
private const int SOCKET_CLOSED = 10004;
|
||||
|
||||
public SocketResponder (IPEndPoint localEP, SocketRequestHandler requestHandler)
|
||||
{
|
||||
_localEndPoint = localEP;
|
||||
_requestHandler = requestHandler;
|
||||
}
|
||||
|
||||
public IPEndPoint LocalEndPoint
|
||||
{
|
||||
get { return _localEndPoint; }
|
||||
}
|
||||
|
||||
public void Dispose ()
|
||||
{
|
||||
Stop ();
|
||||
}
|
||||
|
||||
public bool IsStopped
|
||||
{
|
||||
get
|
||||
{
|
||||
lock (_syncRoot) {
|
||||
return _stopped;
|
||||
}
|
||||
}
|
||||
}
|
||||
|
||||
public void Start ()
|
||||
{
|
||||
lock (_syncRoot) {
|
||||
if (!_stopped)
|
||||
return;
|
||||
_stopped = false;
|
||||
listenThread = new Thread (new ThreadStart (Listen));
|
||||
listenThread.Start ();
|
||||
Thread.Sleep (20); // allow listener to start
|
||||
}
|
||||
}
|
||||
|
||||
public void Stop ()
|
||||
{
|
||||
lock (_syncRoot) {
|
||||
if (_stopped)
|
||||
return;
|
||||
_stopped = true;
|
||||
if (tcpListener != null) {
|
||||
tcpListener.Stop ();
|
||||
tcpListener = null;
|
||||
}
|
||||
}
|
||||
}
|
||||
|
||||
private void Listen ()
|
||||
{
|
||||
tcpListener = new TcpListener (LocalEndPoint);
|
||||
tcpListener.Start ();
|
||||
try {
|
||||
Socket socket = tcpListener.AcceptSocket ();
|
||||
socket.Send (_requestHandler (socket));
|
||||
socket.Close ();
|
||||
} catch (SocketException ex) {
|
||||
// ignore interruption of blocking call
|
||||
if (ex.ErrorCode != SOCKET_CLOSED)
|
||||
throw;
|
||||
}
|
||||
}
|
||||
}
|
||||
}
|
Reference in New Issue
Block a user