Merge pull request #900 from Blewzman/FixAggregateExceptionGetBaseException
[mono.git] / mcs / class / System.Net.Http / Test / System.Net.Http.Headers / NameValueHeaderValueTest.cs
1 //
2 // NameValueHeaderValueTest.cs
3 //
4 // Authors:
5 //      Marek Safar  <marek.safar@gmail.com>
6 //
7 // Copyright (C) 2011 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 System.Collections;
31 using System.Collections.Generic;
32 using NUnit.Framework;
33 using System.Net.Http.Headers;
34
35 namespace MonoTests.System.Net.Http.Headers
36 {
37         [TestFixture]
38         public class NameValueHeaderValueTest
39         {
40                 [Test]
41                 public void Ctor_InvalidArguments ()
42                 {
43                         try {
44                                 new NameValueHeaderValue (null);
45                                 Assert.Fail ("#1");
46                         } catch (ArgumentException) {
47                         }
48
49                         try {
50                                 new NameValueHeaderValue (" ", null);
51                                 Assert.Fail ("#2");
52                         } catch (FormatException) {
53                         }
54                 }
55
56                 [Test]
57                 public void Equals ()
58                 {
59                         var value = new NameValueHeaderValue ("ab");
60                         Assert.AreEqual (value, new NameValueHeaderValue ("ab"), "#1");
61                         Assert.AreEqual (value, new NameValueHeaderValue ("AB"), "#2");
62                         Assert.AreNotEqual (value, new NameValueHeaderValue ("AA"), "#3");
63                         Assert.AreEqual (value, new NameValueHeaderValue ("AB", ""), "#3-1");
64
65                         value = new NameValueHeaderValue ("ab", "DD");
66                         Assert.AreEqual (value, new NameValueHeaderValue ("Ab", "DD"), "#4");
67                         Assert.AreNotEqual (value, new NameValueHeaderValue ("AB"), "#5");
68                         Assert.AreEqual (value, new NameValueHeaderValue ("Ab", "dd"), "#6");
69                 }
70
71                 [Test]
72                 public void Parse ()
73                 {
74                         var res = NameValueHeaderValue.Parse ("c");
75                         Assert.AreEqual ("c", res.Name, "#1");
76                         Assert.IsNull (res.Value, "#1a");
77
78                         res = NameValueHeaderValue.Parse ("c = 1");
79                         Assert.AreEqual ("c", res.Name, "#2");
80                         Assert.AreEqual ("1", res.Value, "#2a");
81                         Assert.AreEqual ("c=1", res.ToString (), "#2b");
82
83                         res = NameValueHeaderValue.Parse ("c = \"1\"");
84                         Assert.AreEqual ("c", res.Name, "#3");
85                         Assert.AreEqual ("\"1\"", res.Value, "#3a");
86                         Assert.AreEqual ("c=\"1\"", res.ToString (), "#3b");
87                 }
88
89                 [Test]
90                 public void Parse_Invalid ()
91                 {
92                         try {
93                                 NameValueHeaderValue.Parse (null);
94                                 Assert.Fail ("#1");
95                         } catch (FormatException) {
96                         }
97
98                         try {
99                                 NameValueHeaderValue.Parse ("  ");
100                                 Assert.Fail ("#2");
101                         } catch (FormatException) {
102                         }
103
104                         try {
105                                 NameValueHeaderValue.Parse ("a;b");
106                                 Assert.Fail ("#3");
107                         } catch (FormatException) {
108                         }
109
110                         try {
111                                 NameValueHeaderValue.Parse ("c = 1;");
112                                 Assert.Fail ("#3");
113                         } catch (FormatException) {
114                         }
115                 }
116
117                 [Test]
118                 public void Properties ()
119                 {
120                         var value = new NameValueHeaderValue ("s", "p");
121                         Assert.AreEqual ("s", value.Name, "#1");
122                         Assert.AreEqual ("p", value.Value, "#2");
123
124                         value = new NameValueHeaderValue ("s");
125                         Assert.AreEqual ("s", value.Name, "#3");
126                         Assert.IsNull (value.Value, "#4");
127
128                         value.Value = "bb";
129                         Assert.AreEqual ("bb", value.Value, "#5");
130
131                         value.Value = null;
132                 }
133
134                 [Test]
135                 public void Properties_Invalid ()
136                 {
137                         var value = new NameValueHeaderValue ("s");
138                         try {
139                                 value.Value = "   ";
140                                 Assert.Fail ("#1");
141                         } catch (FormatException) {
142                         }
143                 }
144
145                 [Test]
146                 public void TryParse ()
147                 {
148                         NameValueHeaderValue res;
149                         Assert.IsTrue (NameValueHeaderValue.TryParse ("a", out res), "#1");
150                         Assert.AreEqual ("a", res.Name, "#2");
151                         Assert.IsNull (res.Value, "#3");
152                 }
153
154                 [Test]
155                 public void TryParse_Invalid ()
156                 {
157                         NameValueHeaderValue res;
158                         Assert.IsFalse (NameValueHeaderValue.TryParse ("", out res), "#1");
159                         Assert.IsNull (res, "#2");
160
161                         Assert.IsFalse (NameValueHeaderValue.TryParse ("\"a\"=b", out res), "#3");
162                         Assert.IsNull (res, "#4");
163                 }
164         }
165 }