Add System.Net.Http to build
[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
34 namespace MonoTests.System.Net.Http
35 {
36         [TestFixture]
37         public class ByteArrayContentTest
38         {
39                 [Test]
40                 public void Ctor_Invalid ()
41                 {
42                         try {
43                                 new ByteArrayContent (null);
44                                 Assert.Fail ("#1");
45                         } catch (ArgumentNullException) {
46                         }
47
48                         try {
49                                 new ByteArrayContent (new byte[0], -1, 2);
50                                 Assert.Fail ("#2");
51                         } catch (ArgumentOutOfRangeException) {
52                         }
53
54                         try {
55                                 new ByteArrayContent (new byte[0], 11, 1);
56                                 Assert.Fail ("#3");
57                         } catch (ArgumentOutOfRangeException) {
58                         }
59
60                         try {
61                                 new ByteArrayContent (new byte[10], 9, 5);
62                                 Assert.Fail ("#4");
63                         } catch (ArgumentOutOfRangeException) {
64                         }
65                 }
66
67                 [Test]
68                 public void Ctor ()
69                 {
70                         byte[] b = { 4, 6 };
71
72                         using (var m = new ByteArrayContent (b)) {
73                         }
74                 }
75
76                 [Test]
77                 public void CopyTo_Invalid ()
78                 {
79                         var m = new MemoryStream ();
80
81                         var sc = new ByteArrayContent (new byte[0]);
82                         try {
83                                 sc.CopyToAsync (null);
84                                 Assert.Fail ("#1");
85                         } catch (ArgumentNullException) {
86                         }
87                 }
88
89                 [Test]
90                 public void CopyToAsync ()
91                 {
92                         byte[] b = { 4, 2 };
93
94                         var sc = new ByteArrayContent (b);
95
96                         var dest = new MemoryStream ();
97                         var task = sc.CopyToAsync (dest);
98                         task.Wait ();
99                         Assert.AreEqual (2, dest.Length, "#1");
100                 }
101
102                 [Test]
103                 public void LoadIntoBufferAsync ()
104                 {
105                         byte[] b = { 4 };
106
107                         var sc = new ByteArrayContent (b);
108                         sc.LoadIntoBufferAsync (400).Wait ();
109                 }
110
111                 [Test]
112                 public void ReadAsByteArrayAsync ()
113                 {
114                         byte[] b = { 4, 55 };
115
116                         var sc = new ByteArrayContent (b, 1, 1);
117                         var res = sc.ReadAsByteArrayAsync ().Result;
118                         Assert.AreEqual (1, res.Length, "#1");
119                         Assert.AreEqual (55, res[0], "#2");
120
121                         sc = new ByteArrayContent (b);
122                         res = sc.ReadAsByteArrayAsync ().Result;
123                         Assert.AreEqual (2, res.Length, "#10");
124                         Assert.AreEqual (55, res[1], "#11");
125                 }
126
127                 [Test]
128                 public void ReadAsStringAsync ()
129                 {
130                         byte[] b = { 77, 55 };
131
132                         var sc = new ByteArrayContent (b);
133                         var res = sc.ReadAsStringAsync ().Result;
134                         Assert.AreEqual ("M7", res, "#1");
135                 }
136         }
137 }