Merge branch 'patch-1' of https://github.com/ReubenBond/mono into ReubenBond-patch-1
[mono.git] / mcs / class / System.Net.Http / Test / System.Net.Http / ByteArrayContentTest.cs
1 //
2 // ByteArrayContentTest.cs
3 //
4 // Authors:
5 //      Marek Safar  <marek.safar@gmail.com>
6 //
7 // Copyright (C) 2012 Xamarin Inc (http://www.xamarin.com)
8 //
9 // Permission is hereby granted, free of charge, to any person obtaining
10 // a copy of this software and associated documentation files (the
11 // "Software"), to deal in the Software without restriction, including
12 // without limitation the rights to use, copy, modify, merge, publish,
13 // distribute, sublicense, and/or sell copies of the Software, and to
14 // permit persons to whom the Software is furnished to do so, subject to
15 // the following conditions:
16 //
17 // The above copyright notice and this permission notice shall be
18 // included in all copies or substantial portions of the Software.
19 //
20 // THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND,
21 // EXPRESS OR IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF
22 // MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE AND
23 // NONINFRINGEMENT. IN NO EVENT SHALL THE AUTHORS OR COPYRIGHT HOLDERS BE
24 // LIABLE FOR ANY CLAIM, DAMAGES OR OTHER LIABILITY, WHETHER IN AN ACTION
25 // OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, OUT OF OR IN CONNECTION
26 // WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE SOFTWARE.
27 //
28
29 using System;
30 using NUnit.Framework;
31 using System.Net.Http;
32 using System.IO;
33 using System.Threading.Tasks;
34
35 namespace MonoTests.System.Net.Http
36 {
37         [TestFixture]
38         public class ByteArrayContentTest
39         {
40                 [Test]
41                 public void Ctor_Invalid ()
42                 {
43                         try {
44                                 new ByteArrayContent (null);
45                                 Assert.Fail ("#1");
46                         } catch (ArgumentNullException) {
47                         }
48
49                         try {
50                                 new ByteArrayContent (new byte[0], -1, 2);
51                                 Assert.Fail ("#2");
52                         } catch (ArgumentOutOfRangeException) {
53                         }
54
55                         try {
56                                 new ByteArrayContent (new byte[0], 11, 1);
57                                 Assert.Fail ("#3");
58                         } catch (ArgumentOutOfRangeException) {
59                         }
60
61                         try {
62                                 new ByteArrayContent (new byte[10], 9, 5);
63                                 Assert.Fail ("#4");
64                         } catch (ArgumentOutOfRangeException) {
65                         }
66                 }
67
68                 [Test]
69                 public void Ctor ()
70                 {
71                         byte[] b = { 4, 6 };
72
73                         using (var m = new ByteArrayContent (b)) {
74                         }
75                 }
76
77                 [Test]
78                 public void CopyTo_Invalid ()
79                 {
80                         var m = new MemoryStream ();
81
82                         var sc = new ByteArrayContent (new byte[0]);
83                         try {
84                                 sc.CopyToAsync (null);
85                                 Assert.Fail ("#1");
86                         } catch (ArgumentNullException) {
87                         }
88                 }
89
90                 [Test]
91                 public void CopyToAsync ()
92                 {
93                         byte[] b = { 4, 2 };
94
95                         var sc = new ByteArrayContent (b);
96
97                         var dest = new MemoryStream ();
98                         var task = sc.CopyToAsync (dest);
99                         Assert.IsTrue (task.Wait (500));
100                         Assert.AreEqual (2, dest.Length, "#1");
101                 }
102
103                 [Test]
104                 public void LoadIntoBufferAsync ()
105                 {
106                         byte[] b = { 4 };
107
108                         var sc = new ByteArrayContent (b);
109                         var t = sc.LoadIntoBufferAsync (400);
110                         Assert.IsTrue (t.Wait (500));
111                 }
112
113                 [Test]
114                 public void ReadAsByteArrayAsync ()
115                 {
116                         byte[] b = { 4, 55 };
117
118                         var sc = new ByteArrayContent (b, 1, 1);
119                         var res = sc.ReadAsByteArrayAsync ().Result;
120                         Assert.AreEqual (1, res.Length, "#1");
121                         Assert.AreEqual (55, res[0], "#2");
122
123                         sc = new ByteArrayContent (b);
124                         res = sc.ReadAsByteArrayAsync ().Result;
125                         Assert.AreEqual (2, res.Length, "#10");
126                         Assert.AreEqual (55, res[1], "#11");
127                 }
128
129                 [Test]
130                 public void ReadAsStringAsync ()
131                 {
132                         byte[] b = { 77, 55 };
133
134                         var sc = new ByteArrayContent (b);
135                         var res = sc.ReadAsStringAsync ().Result;
136                         Assert.AreEqual ("M7", res, "#1");
137                 }
138         }
139 }