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

ServicePointTest.cs « System.Net « Test « System « class « mcs - github.com/mono/mono.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
blob: 92290f1854d2e164376dc55f72d77b8b3413cc09 (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
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
//
// ServicePointTest.cs - NUnit Test Cases for System.Net.ServicePoint
//
// 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 ServicePointTest : TestCase
{
        public ServicePointTest () :
                base ("[MonoTests.System.Net.ServicePointTest]") {}

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

        protected override void SetUp () {}

        protected override void TearDown () {}

        public static ITest Suite
        {
                get {
                        return new TestSuite (typeof (ServicePointTest));
                }
        }
        
        public void TestAll ()
        {
		try {
			ServicePoint p = ServicePointManager.FindServicePoint (new Uri ("mailto:xx@yyy.com"));
			WriteServicePoint ("A servicepoint that isn't really", p);			
			
			ServicePointManager.MaxServicePoints = 2;
			ServicePoint google = ServicePointManager.FindServicePoint (new Uri ("http://www.google.com"));
			try {			
				ServicePoint slashdot = ServicePointManager.FindServicePoint (new Uri ("http://www.slashdot.org"));
				Fail ("#1");
			} catch (InvalidOperationException) { }
			ServicePointManager.MaxServicePoints = 0;
			
			WriteServicePoint ("google before getting a webrequest", google);
			
			HttpWebRequest req = (HttpWebRequest) WebRequest.Create ("http://www.google.com");
			HttpWebResponse res = (HttpWebResponse) req.GetResponse ();			
			
			WriteServicePoint ("google after getting a response", google);
			ServicePoint google2 = ServicePointManager.FindServicePoint (new Uri ("http://www.google.com/dilbert.html"));
			AssertEquals ("#equals", google, google2);
			res.Close ();
			
			// in both instances property CurrentConnections is 0 according to ms.net.
			// let's see what it says when we do async operations...
			
			HttpWebRequest req2 = (HttpWebRequest) WebRequest.Create ("http://www.google.com");
			req2.Method = "PUT";
			IAsyncResult async = req2.BeginGetRequestStream (null, null);
			WriteServicePoint ("after async BeginGetRequestStream", google);
			// CurrentConnections: 1
			Stream stream2 = req2.EndGetRequestStream (async);
			WriteServicePoint ("after async EndGetRequestStream", google);
			// CurrentConnections: 1
			stream2.Close ();
			
			req2 = (HttpWebRequest) WebRequest.Create ("http://www.google.com");
			async = req2.BeginGetResponse (null, null);
			WriteServicePoint ("after async BeginGetResponse", google);
			// CurrentConnections: 2
			WebResponse res2 = req2.EndGetResponse (async);
			WriteServicePoint ("after async EndGetResponse", google);
			// CurrentConnections: 0			
			// curious that after you get the webresponse object CurrentConnections is set to 0.
			// you'd think that you'd still be connected until you close the webresponse..
			Console.WriteLine ("ContentLength: " + res2.ContentLength);
			res2.Close ();
			
			
			// unless of course some buffering is taking place.. let's check
			Uri uri2 = new Uri ("http://www.apache.org/dist/httpd/httpd-2.0.36.tar.gz");
			ServicePoint sp2 = ServicePointManager.FindServicePoint (uri2);
			req2 = (HttpWebRequest) WebRequest.Create (uri2);
			async = req2.BeginGetResponse (null, null);
			WriteServicePoint ("Large file: after async BeginGetResponse", sp2);
			// CurrentConnections: 1
			res2 = req2.EndGetResponse (async);
			WriteServicePoint ("Large file: after async EndGetResponse", sp2);
			// CurrentConnections: 1
			// and so it shows
			Console.WriteLine ("ContentLength: " + res2.ContentLength);
			res2.Close ();
			
			
			// what's the limit of the cache?
			req2 = (HttpWebRequest) WebRequest.Create ("http://www.apache.org/");
			res2 = req2.GetResponse ();
			sp2 = ServicePointManager.FindServicePoint (new Uri("http://www.apache.org/"));
			WriteServicePoint ("apache", sp2);
			Console.WriteLine ("ContentLength: " + res2.ContentLength);
			// CurrentConnections: 1
			res2.Close ();
			// curious other effect: address is actually the full Uri of the previous request
			// anyways, buffer is probably 4096 bytes

			
		} catch (WebException e) {
			Console.WriteLine("\nThe following Exception was raised : {0}", e.Message);
		}
	}

	// try getting the stream to 5 web response objects	
	// while ConnectionLimit equals 2
	/*
	public void TestConnectionLimit ()
	{		
		try {
			// the default is already 2, just in case it isn't..
			ServicePointManager.DefaultConnectionLimit = 2;
			
			Uri uri = new Uri ("http://www.apache.org/dist/httpd/httpd-2.0.36.tar.gz");
			ServicePoint sp = ServicePointManager.FindServicePoint (uri);			
			WebResponse [] res = new WebResponse [5];
			for (int i = 0; i < 5; i++) {
				Console.WriteLine ("GOT1 : " + i);
				HttpWebRequest req = (HttpWebRequest) WebRequest.Create (uri);
				Console.WriteLine ("GOT2 : " + i);
				res [i] = req.GetResponse ();
				WriteServicePoint ("after getting " + (i + 1) + " web response objects", sp);
			}
			
			for (int i = 0; i < 5; i++) {
				Stream stream = res [i].GetResponseStream();
				Console.WriteLine ("Reading stream: " + i + " : " + stream);
				int len = 0;
				while (stream.ReadByte () != -1)
					len++;
				Console.WriteLine ("Finished reading: " + len + " bytes");
			}
			
			for (int i = 0; i < 5; i++) {
				res [i].Close ();
			}
		} catch (WebException e) {
			Console.WriteLine("\nThe following Exception was raised : {0}", e.Message);
		}		
	}
	*/
	
	private void WriteServicePoint (string label, ServicePoint sp)
	{
		Console.WriteLine ("\n" + label);
		Console.WriteLine ("Address: " + 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);		
	}
}

}