2 // WarningHeaderValueTest.cs
5 // Marek Safar <marek.safar@gmail.com>
7 // Copyright (C) 2011 Xamarin Inc (http://www.xamarin.com)
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:
17 // The above copyright notice and this permission notice shall be
18 // included in all copies or substantial portions of the Software.
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.
30 using System
.Collections
;
31 using System
.Collections
.Generic
;
32 using NUnit
.Framework
;
33 using System
.Net
.Http
.Headers
;
35 namespace MonoTests
.System
.Net
.Http
.Headers
38 public class WarningHeaderValueTest
41 public void Ctor_InvalidArguments ()
44 new WarningHeaderValue (1000, "rb", "\"\"");
46 } catch (ArgumentOutOfRangeException
) {
50 new WarningHeaderValue (1, null, null);
52 } catch (ArgumentException
) {
56 new WarningHeaderValue (1, "a", null);
58 } catch (ArgumentException
) {
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");
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");
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");
86 res
= WarningHeaderValue
.Parse ("155 foo:8080 \"tttext \" \"Sunday, 06-Nov-94 08:49:37 GMT\" ");
87 Assert
.AreEqual (new DateTimeOffset (1994, 11, 6, 8, 49, 37, TimeSpan
.Zero
), res
.Date
, "#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");
95 public void Parse_Invalid ()
98 WarningHeaderValue
.Parse (null);
100 } catch (FormatException
) {
104 WarningHeaderValue
.Parse (" ");
106 } catch (FormatException
) {
110 WarningHeaderValue
.Parse ("a");
112 } catch (FormatException
) {
116 WarningHeaderValue
.Parse ("5555 foo:8080 \"\"");
118 } catch (FormatException
) {
124 public void Properties ()
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");
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");
140 public void TryParse ()
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");
151 public void TryParse_Invalid ()
153 WarningHeaderValue res
;
154 Assert
.IsFalse (WarningHeaderValue
.TryParse ("", out res
), "#1");
155 Assert
.IsNull (res
, "#2");