Merge pull request #980 from StephenMcConnel/bug-18638
[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                         try {
56                                 new NameValueHeaderValue ("\x7f", null);
57                                 Assert.Fail ("#3");
58                         } catch (FormatException) {
59                         }
60
61                         try {
62                                 new NameValueHeaderValue ("arg", "\x7f");
63                                 Assert.Fail ("#4");
64                         } catch (FormatException) {
65                         }
66                 }
67
68                 [Test]
69                 public void Ctor_ValidArguments ()
70                 {
71                         NameValueHeaderValue nvh;
72                         
73                         nvh = new NameValueHeaderValue ("arg", "~");
74                         Assert.AreEqual ("~", nvh.Value, "#1");
75                         
76                         nvh = new NameValueHeaderValue ("arg", "\"\x7f\x80\"");
77                         Assert.AreEqual ("\"\x7f\x80\"", nvh.Value, "#2");
78                 }
79
80                 [Test]
81                 public void Equals ()
82                 {
83                         var value = new NameValueHeaderValue ("ab");
84                         Assert.AreEqual (value, new NameValueHeaderValue ("ab"), "#1");
85                         Assert.AreEqual (value, new NameValueHeaderValue ("AB"), "#2");
86                         Assert.AreNotEqual (value, new NameValueHeaderValue ("AA"), "#3");
87                         Assert.AreEqual (value, new NameValueHeaderValue ("AB", ""), "#3-1");
88
89                         value = new NameValueHeaderValue ("ab", "DD");
90                         Assert.AreEqual (value, new NameValueHeaderValue ("Ab", "DD"), "#4");
91                         Assert.AreNotEqual (value, new NameValueHeaderValue ("AB"), "#5");
92                         Assert.AreEqual (value, new NameValueHeaderValue ("Ab", "dd"), "#6");
93                 }
94
95                 [Test]
96                 public void Parse ()
97                 {
98                         var res = NameValueHeaderValue.Parse ("c");
99                         Assert.AreEqual ("c", res.Name, "#1");
100                         Assert.IsNull (res.Value, "#1a");
101
102                         res = NameValueHeaderValue.Parse ("c = 1");
103                         Assert.AreEqual ("c", res.Name, "#2");
104                         Assert.AreEqual ("1", res.Value, "#2a");
105                         Assert.AreEqual ("c=1", res.ToString (), "#2b");
106
107                         res = NameValueHeaderValue.Parse ("c = \"1\"");
108                         Assert.AreEqual ("c", res.Name, "#3");
109                         Assert.AreEqual ("\"1\"", res.Value, "#3a");
110                         Assert.AreEqual ("c=\"1\"", res.ToString (), "#3b");
111                 }
112
113                 [Test]
114                 public void Parse_Invalid ()
115                 {
116                         try {
117                                 NameValueHeaderValue.Parse (null);
118                                 Assert.Fail ("#1");
119                         } catch (FormatException) {
120                         }
121
122                         try {
123                                 NameValueHeaderValue.Parse ("  ");
124                                 Assert.Fail ("#2");
125                         } catch (FormatException) {
126                         }
127
128                         try {
129                                 NameValueHeaderValue.Parse ("a;b");
130                                 Assert.Fail ("#3");
131                         } catch (FormatException) {
132                         }
133
134                         try {
135                                 NameValueHeaderValue.Parse ("c = 1;");
136                                 Assert.Fail ("#3");
137                         } catch (FormatException) {
138                         }
139                 }
140
141                 [Test]
142                 public void Properties ()
143                 {
144                         var value = new NameValueHeaderValue ("s", "p");
145                         Assert.AreEqual ("s", value.Name, "#1");
146                         Assert.AreEqual ("p", value.Value, "#2");
147
148                         value = new NameValueHeaderValue ("s");
149                         Assert.AreEqual ("s", value.Name, "#3");
150                         Assert.IsNull (value.Value, "#4");
151
152                         value.Value = "bb";
153                         Assert.AreEqual ("bb", value.Value, "#5");
154
155                         value.Value = null;
156                 }
157
158                 [Test]
159                 public void Properties_Invalid ()
160                 {
161                         var value = new NameValueHeaderValue ("s");
162                         try {
163                                 value.Value = "   ";
164                                 Assert.Fail ("#1");
165                         } catch (FormatException) {
166                         }
167                 }
168
169                 [Test]
170                 public void TryParse ()
171                 {
172                         NameValueHeaderValue res;
173                         Assert.IsTrue (NameValueHeaderValue.TryParse ("a", out res), "#1");
174                         Assert.AreEqual ("a", res.Name, "#2");
175                         Assert.IsNull (res.Value, "#3");
176                 }
177
178                 [Test]
179                 public void TryParse_Invalid ()
180                 {
181                         NameValueHeaderValue res;
182                         Assert.IsFalse (NameValueHeaderValue.TryParse ("", out res), "#1");
183                         Assert.IsNull (res, "#2");
184
185                         Assert.IsFalse (NameValueHeaderValue.TryParse ("\"a\"=b", out res), "#3");
186                         Assert.IsNull (res, "#4");
187                 }
188         }
189 }