Welcome to mirror list, hosted at ThFree Co, Russian Federation.

ServicePointManagerTest.cs « System.Net « Test « System « class « mcs - github.com/mono/mono.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
blob: bfc595af11882724f950730a636039f5def8e0fd (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
//
// ServicePointManagerTest.cs - NUnit Test Cases for System.Net.ServicePointManager
//
// Author:
//   Lawrence Pit (loz@cable.a2000.nl)
//

using NUnit.Framework;
using System;
using System.Collections;
using System.IO;
using System.Net;
using System.Threading;

namespace MonoTests.System.Net
{

public class ServicePointManagerTest : TestCase
{
	private Uri googleUri;
	private Uri yahooUri;
	private Uri apacheUri;
	
        public ServicePointManagerTest () :
                base ("[MonoTests.System.Net.ServicePointManagerTest]") {}

        public ServicePointManagerTest (string name) : base (name) {}

        protected override void SetUp () {
		googleUri = new Uri ("http://www.google.com");
		yahooUri = new Uri ("http://www.yahoo.com");
		apacheUri = new Uri ("http://www.apache.org");
	}

        protected override void TearDown () {}

        public static ITest Suite
        {
                get {
                        return new TestSuite (typeof (ServicePointManagerTest));
                }
        }
        
        public void TestMaxServicePointManagers ()
        {
		try {
			AssertEquals ("#1", 0, ServicePointManager.MaxServicePoints);
			
			DoWebRequest (googleUri);
			Thread.Sleep (100);
			DoWebRequest (yahooUri);
			Thread.Sleep (100);
			DoWebRequest (apacheUri);
			Thread.Sleep (100);
			
			ServicePoint sp = ServicePointManager.FindServicePoint (googleUri);
			WriteServicePoint (sp);
			sp = ServicePointManager.FindServicePoint (yahooUri);
			WriteServicePoint (sp);
			sp = ServicePointManager.FindServicePoint (apacheUri);
			WriteServicePoint (sp);
			
			ServicePointManager.MaxServicePoints = 1;

			sp = ServicePointManager.FindServicePoint (googleUri);
			WriteServicePoint (sp);
			sp = ServicePointManager.FindServicePoint (yahooUri);
			WriteServicePoint (sp);
			sp = ServicePointManager.FindServicePoint (apacheUri);
			WriteServicePoint (sp);
			
			GC.Collect ();
			
			// hmm... aparently ms.net still has the service points even
			// though I set it to a max of 1.
			
			// this should force an exception then...		
			sp = ServicePointManager.FindServicePoint (new Uri ("http://www.microsoft.com"));
			WriteServicePoint (sp);
			
		} catch (Exception e) {
			Console.WriteLine("\nThe following Exception was raised : {0}", e.Message);
		}
	}
	
	public void TestFindServicePoint ()
	{
		ServicePoint sp = ServicePointManager.FindServicePoint (googleUri, new WebProxy (apacheUri));
		AssertEquals ("#1", apacheUri, sp.Address);
		AssertEquals ("#2", 2, sp.ConnectionLimit);
		AssertEquals ("#3", "http", sp.ConnectionName);
	}
	
	private void DoWebRequest (Uri uri)
	{
		WebRequest.Create (uri).GetResponse ().Close ();
	}
	
	private void WriteServicePoint (ServicePoint sp)
	{
		Console.WriteLine ("\nAddress: " + sp.Address);
		Console.WriteLine ("ConnectionLimit: " + sp.ConnectionLimit);
		Console.WriteLine ("ConnectionName: " + sp.ConnectionName);
		Console.WriteLine ("CurrentConnections: " + sp.CurrentConnections);
		Console.WriteLine ("IdleSince: " + sp.IdleSince);
		Console.WriteLine ("MaxIdletime: " + sp.MaxIdleTime);
		Console.WriteLine ("ProtocolVersion: " + sp.ProtocolVersion);
		Console.WriteLine ("SupportsPipelining: " + sp.SupportsPipelining);		
	}
}

}