Implemented more System.Net.Http.Headers
[mono.git] / mcs / class / System.Net.Http / Test / System.Net.Http.Headers / WarningHeaderValueTest.cs
1 //
2 // WarningHeaderValueTest.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 WarningHeaderValueTest
39         {
40                 [Test]
41                 public void Ctor_InvalidArguments ()
42                 {
43                         try {
44                                 new WarningHeaderValue (1000, "rb", "\"\"");
45                                 Assert.Fail ("#1");
46                         } catch (ArgumentOutOfRangeException) {
47                         }
48
49                         try {
50                                 new WarningHeaderValue (1, null, null);
51                                 Assert.Fail ("#2");
52                         } catch (ArgumentException) {
53                         }
54
55                         try {
56                                 new WarningHeaderValue (1, "a", null);
57                                 Assert.Fail ("#3");
58                         } catch (ArgumentException) {
59                         }
60                 }
61
62                 [Test]
63                 public void Equals ()
64                 {
65                         var value = new WarningHeaderValue (13, "x", "\"v\"");
66                         Assert.AreEqual (value, new WarningHeaderValue (13, "X", "\"v\""), "#1");
67                         Assert.AreNotEqual (value, new WarningHeaderValue (13, "x", "\"V\""), "#2");
68                         Assert.AreNotEqual (value, new WarningHeaderValue (13, "y", "\"V\""), "#3");
69                         Assert.AreNotEqual (value, new WarningHeaderValue (1, "x", "\"V\""), "#4");
70
71                         value = new WarningHeaderValue (6, "DD", "\"c\"", DateTimeOffset.MaxValue);
72                         Assert.AreEqual (value, new WarningHeaderValue (6, "DD", "\"c\"", DateTimeOffset.MaxValue), "#5");
73                         Assert.AreNotEqual (value, new WarningHeaderValue (6, "y", "\"V\""), "#6");
74                 }
75
76                 [Test]
77                 public void Parse ()
78                 {
79                         var res = WarningHeaderValue.Parse ("1 n \"\"");
80                         Assert.IsNull (res.Date, "#1");
81                         Assert.AreEqual (1, res.Code, "#2");
82                         Assert.AreEqual ("n", res.Agent, "#3");
83                         Assert.AreEqual ("\"\"", res.Text, "#4");
84                         Assert.AreEqual ("001 n \"\"", res.ToString (), "#5");
85
86                         res = WarningHeaderValue.Parse ("155 foo:8080 \"tttext \" \"Sun, 06 Nov 1994 08:49:37 GMT\" ");
87                         Assert.AreEqual (res.Date, new DateTimeOffset (1994, 11, 6, 8, 49, 37, TimeSpan.Zero), "#11");
88                         Assert.AreEqual (155, res.Code, "#12");
89                         Assert.AreEqual ("foo:8080", res.Agent, "#13");
90                         Assert.AreEqual ("\"tttext \"", res.Text, "#14");
91                         Assert.AreEqual ("155 foo:8080 \"tttext \" \"Sun, 06 Nov 1994 08:49:37 GMT\"", res.ToString (), "#5");
92                 }
93
94                 [Test]
95                 public void Parse_Invalid ()
96                 {
97                         try {
98                                 WarningHeaderValue.Parse (null);
99                                 Assert.Fail ("#1");
100                         } catch (FormatException) {
101                         }
102
103                         try {
104                                 WarningHeaderValue.Parse ("  ");
105                                 Assert.Fail ("#2");
106                         } catch (FormatException) {
107                         }
108
109                         try {
110                                 WarningHeaderValue.Parse ("a");
111                                 Assert.Fail ("#3");
112                         } catch (FormatException) {
113                         }
114
115                         try {
116                                 WarningHeaderValue.Parse ("5555 foo:8080 \"\"");
117                                 Assert.Fail ("#4");
118                         } catch (FormatException) {
119                         }
120                 }
121
122
123                 [Test]
124                 public void Properties ()
125                 {
126                         var value = new WarningHeaderValue (5, "ag", "\"tt\"");
127                         Assert.IsNull (value.Date, "#1");
128                         Assert.AreEqual (5, value.Code, "#2");
129                         Assert.AreEqual ("ag", value.Agent, "#3");
130                         Assert.AreEqual ("\"tt\"", value.Text, "#4");
131
132                         value = new WarningHeaderValue (5, "ag", "\"tt\"", DateTimeOffset.MinValue);
133                         Assert.AreEqual (DateTimeOffset.MinValue, value.Date, "#5");
134                         Assert.AreEqual (5, value.Code, "#6");
135                         Assert.AreEqual ("ag", value.Agent, "#7");
136                         Assert.AreEqual ("\"tt\"", value.Text, "#8");
137                 }
138
139                 [Test]
140                 public void TryParse ()
141                 {
142                         WarningHeaderValue res;
143                         Assert.IsTrue (WarningHeaderValue.TryParse ("22 a \"b\"", out res), "#1");
144                         Assert.IsNull (res.Date, "#2");
145                         Assert.AreEqual (22, res.Code, "#3");
146                         Assert.AreEqual ("a", res.Agent, "#4");
147                         Assert.AreEqual ("\"b\"", res.Text, "#5");
148                 }
149
150                 [Test]
151                 public void TryParse_Invalid ()
152                 {
153                         WarningHeaderValue res;
154                         Assert.IsFalse (WarningHeaderValue.TryParse ("", out res), "#1");
155                         Assert.IsNull (res, "#2");
156                 }
157         }
158 }