Merge pull request #1433 from akoeplinger/system.numerics-port
[mono.git] / mcs / class / System.Net.Http / Test / System.Net.Http / HttpClientHandlerTest.cs
index fc778fabf5a8b24b632b8209d82fd8d7661ced98..78f8a0c225d5eb089658e94aa3aa821bc1706f42 100644 (file)
@@ -70,7 +70,7 @@ namespace MonoTests.System.Net.Http
                        Assert.AreEqual (4096, h.CookieContainer.MaxCookieSize, "#3b");
                        Assert.AreEqual (null, h.Credentials, "#4");
                        Assert.AreEqual (50, h.MaxAutomaticRedirections, "#5");
-                       Assert.AreEqual (0x10000, h.MaxRequestContentBufferSize, "#6");
+                       Assert.AreEqual (int.MaxValue, h.MaxRequestContentBufferSize, "#6");
                        Assert.IsFalse (h.PreAuthenticate, "#7");
                        Assert.IsNull (h.Proxy, "#8");
                        Assert.IsTrue (h.SupportsAutomaticDecompression, "#9");
@@ -105,5 +105,31 @@ namespace MonoTests.System.Net.Http
                        } catch (InvalidOperationException) {
                        }
                }
+
+               [Test]
+               public void Properties_AfterClientCreation ()
+               {
+                       var h = new HttpClientHandler ();
+                       h.AllowAutoRedirect = true;
+
+                       // We may modify properties after creating the HttpClient.
+                       using (var c = new HttpClient (h, true)) {
+                               h.AllowAutoRedirect = false;
+                       }
+               }
+
+               [Test]
+               public void Disposed ()
+               {
+                       var h = new HttpClientHandler ();
+                       h.Dispose ();
+                       var c = new HttpClient (h);
+                       try {
+                               c.GetAsync ("http://google.com").Wait ();
+                               Assert.Fail ("#1");
+                       } catch (AggregateException e) {
+                               Assert.IsTrue (e.InnerException is ObjectDisposedException, "#2");
+                       }
+               }
        }
 }