Merge pull request #2543 from ermshiperete/Xamarin-31021
[mono.git] / mcs / class / System.Net.Http / Test / System.Net.Http.Headers / EntityTagHeaderValueTest.cs
1 //
2 // EntityTagHeaderValueTest.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 EntityTagHeaderValueTest
39         {
40                 [Test]
41                 public void Ctor_InvalidArguments ()
42                 {
43                         try {
44                                 new EntityTagHeaderValue (null);
45                                 Assert.Fail ("#1");
46                         } catch (ArgumentException) {
47                         }
48
49                         try {
50                                 new EntityTagHeaderValue ("a");
51                                 Assert.Fail ("#2");
52                         } catch (FormatException) {
53                         }
54                 }
55
56                 [Test]
57                 public void Equals ()
58                 {
59                         var tfhv = new EntityTagHeaderValue ("\"abc\"");
60                         Assert.AreEqual (tfhv, new EntityTagHeaderValue ("\"abc\""), "#1");
61                         Assert.AreNotEqual (tfhv, new EntityTagHeaderValue ("\"AbC\""), "#2");
62                         Assert.AreNotEqual (tfhv, new EntityTagHeaderValue ("\"AA\""), "#3");
63                 }
64
65                 [Test]
66                 public void Parse ()
67                 {
68                         var res = EntityTagHeaderValue.Parse ("\"c\"");
69                         Assert.AreEqual ("\"c\"", res.Tag, "#1");
70                         Assert.IsFalse (res.IsWeak, "#2");
71                         Assert.AreEqual ("\"c\"", res.ToString (), "#3");
72
73                         res = EntityTagHeaderValue.Parse ("W/ \"mm\"");
74                         Assert.AreEqual ("\"mm\"", res.Tag, "#11");
75                         Assert.IsTrue (res.IsWeak, "#12");
76                         Assert.AreEqual ("W/\"mm\"", res.ToString (), "#13");
77
78
79                         res = EntityTagHeaderValue.Parse ("\"\\\"123\\\"\"");
80                         Assert.AreEqual ("\"\\\"123\\\"\"", res.Tag, "#21");
81                         Assert.IsFalse (res.IsWeak, "#22");
82                         Assert.AreEqual ("\"\\\"123\\\"\"", res.ToString (), "#23");
83                 }
84
85                 [Test]
86                 public void Parse_Invalid ()
87                 {
88                         try {
89                                 EntityTagHeaderValue.Parse (null);
90                                 Assert.Fail ("#1");
91                         } catch (FormatException) {
92                         }
93
94                         try {
95                                 EntityTagHeaderValue.Parse ("  ");
96                                 Assert.Fail ("#2");
97                         } catch (FormatException) {
98                         }
99
100                         try {
101                                 EntityTagHeaderValue.Parse ("W / \"a\"");
102                                 Assert.Fail ("#3");
103                         } catch (FormatException) {
104                         }
105                 }
106
107
108                 [Test]
109                 public void Properties ()
110                 {
111                         var etv = new EntityTagHeaderValue ("\"tag\"", true);
112                         Assert.AreEqual ("\"tag\"", etv.Tag, "#1");
113                         Assert.IsTrue (etv.IsWeak, "#2");
114
115                         Assert.AreEqual ("*", EntityTagHeaderValue.Any.Tag, "#3");
116                         Assert.IsFalse (EntityTagHeaderValue.Any.IsWeak, "#4");
117                 }
118
119                 [Test]
120                 public void TryParse ()
121                 {
122                         EntityTagHeaderValue res;
123                         Assert.IsTrue (EntityTagHeaderValue.TryParse ("\"\"", out res), "#1");
124                         Assert.AreEqual ("\"\"", res.Tag, "#2");
125                 }
126
127                 [Test]
128                 public void TryParse_Invalid ()
129                 {
130                         EntityTagHeaderValue res;
131                         Assert.IsFalse (EntityTagHeaderValue.TryParse ("", out res), "#1");
132                         Assert.IsNull (res, "#2");
133                 }
134         }
135 }