Enable duplicate "UriMatched" error check, with couple of FIXMEs.
[mono-project.git] / mcs / class / System.ServiceModel.Web / Test / System / UriTemplateTest.cs
blobdb6558a1fb096d8f65bdec66a6284e8bb1cdf331
1 //
2 // UriTemplate.cs
3 //
4 // Author:
5 // Atsushi Enomoto <atsushi@ximian.com>
6 //
7 // Copyright (C) 2008 Novell, Inc (http://www.novell.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.
28 using System;
29 using System.Collections.Generic;
30 using System.Collections.ObjectModel;
31 using System.Collections.Specialized;
32 using NUnit.Framework;
34 namespace MonoTests.System
36 [TestFixture]
37 public class UriTemplateTest
39 [Test]
40 [ExpectedException (typeof (ArgumentNullException))]
41 public void ConstructorNull ()
43 new UriTemplate (null);
46 [Test]
47 public void ConstructorEmpty ()
49 // it does not raise an error at this state.
50 new UriTemplate (String.Empty);
53 [Test]
54 public void ConstructorNullDictionary ()
56 new UriTemplate (String.Empty, null);
59 [Test]
60 public void IgnoreTrailingSlashDefault ()
62 Assert.IsFalse (new UriTemplate (String.Empty).IgnoreTrailingSlash);
65 [Test]
66 [ExpectedException (typeof (FormatException))]
67 public void ConstructorBrokenTemplate ()
69 // it used to be allowed but now it isn't in 3.5 SP1.
70 new UriTemplate ("{");
73 [Test]
74 [ExpectedException (typeof (FormatException))]
75 public void ConstructorBrokenTemplate2 ()
77 new UriTemplate ("http://localhost:8080/{foo}/{");
80 [Test]
81 [ExpectedException (typeof (FormatException))]
82 public void ConstructorBrokenTemplate3 ()
84 new UriTemplate ("http://localhost:8080/{foo}/*/baz");
87 [Test]
88 public void ToString ()
90 Assert.AreEqual ("urn:foo", new UriTemplate ("urn:foo").ToString (), "#1");
91 // It used to be allowed but now it isn't in 3.5 SP1.
92 //Assert.AreEqual ("{", new UriTemplate ("{").ToString (), "#2");
95 [Test]
96 public void Variables ()
98 var t = new UriTemplate ("urn:foo");
99 Assert.AreEqual (0, t.PathSegmentVariableNames.Count, "#1a");
100 Assert.AreEqual (0, t.QueryValueVariableNames.Count, "#1b");
102 t = new UriTemplate ("http://localhost:8080/");
103 Assert.AreEqual (0, t.PathSegmentVariableNames.Count, "#2a");
104 Assert.AreEqual (0, t.QueryValueVariableNames.Count, "#2b");
106 t = new UriTemplate ("http://localhost:8080/foo/");
107 Assert.AreEqual (0, t.PathSegmentVariableNames.Count, "#3a");
108 Assert.AreEqual (0, t.QueryValueVariableNames.Count, "#3b");
110 t = new UriTemplate ("http://localhost:8080/{foo}");
111 Assert.AreEqual (1, t.PathSegmentVariableNames.Count, "#4a");
112 Assert.AreEqual ("FOO", t.PathSegmentVariableNames [0], "#4b");
113 Assert.AreEqual (0, t.QueryValueVariableNames.Count, "#4c");
115 // This became invalid in 3.5 SP1
116 //t = new UriTemplate ("http://localhost:8080/{foo}/{");
117 //Assert.AreEqual (1, t.PathSegmentVariableNames.Count, "#5a");
118 //Assert.AreEqual ("FOO", t.PathSegmentVariableNames [0], "#5b");
119 //Assert.AreEqual (0, t.QueryValueVariableNames.Count, "#5c");
121 t = new UriTemplate ("http://localhost:8080/hoge?test={foo}&test2={bar}");
122 Assert.AreEqual (0, t.PathSegmentVariableNames.Count, "#6a");
123 Assert.AreEqual (2, t.QueryValueVariableNames.Count, "#6b");
124 Assert.AreEqual ("FOO", t.QueryValueVariableNames [0], "#6c");
125 Assert.AreEqual ("BAR", t.QueryValueVariableNames [1], "#6d");
128 [Test]
129 [ExpectedException (typeof (ArgumentException))]
130 public void VariablesInSameSegment ()
132 new UriTemplate ("http://localhost:8080/{foo}{bar}");
135 [Test]
136 [Category ("NotDotNet")] //.NET 3.5 SP1 incorrectly matches the port part
137 public void VariablesInNonPathQuery ()
139 var t = new UriTemplate ("http://localhost:{foo}/");
140 Assert.AreEqual (0, t.PathSegmentVariableNames.Count, "#8a");
141 Assert.AreEqual (0, t.QueryValueVariableNames.Count, "#8b");
144 [Test]
145 [ExpectedException (typeof (InvalidOperationException))]
146 public void DuplicateNameInTemplate ()
148 // one name to two places to match
149 new UriTemplate ("http://localhost:8080/hoge?test={foo}&test2={foo}");
152 [Test]
153 [ExpectedException (typeof (InvalidOperationException))]
154 public void DuplicateNameInTemplate2 ()
156 // one name to two places to match
157 new UriTemplate ("http://localhost:8080/hoge/{foo}?test={foo}");
160 [Test]
161 [ExpectedException (typeof (ArgumentNullException))]
162 public void BindByNameNullBaseAddress ()
164 var t = new UriTemplate ("http://localhost:8080/");
165 t.BindByName (null, new NameValueCollection ());
168 [Test]
169 [ExpectedException (typeof (ArgumentException))]
170 public void BindByNameRelativeBaseAddress ()
172 var t = new UriTemplate ("http://localhost:8080/");
173 t.BindByName (new Uri ("", UriKind.Relative), new NameValueCollection ());
176 [Test]
177 [Category ("NotWorking")] // not worthy
178 public void BindByNameFileUriBaseAddress ()
180 var t = new UriTemplate ("http://localhost:8080/");
181 var u = t.BindByName (new Uri ("file:///"), new NameValueCollection ());
182 Assert.AreEqual ("file:///http://localhost:8080/", u.ToString ());
185 [Test] // it is allowed.
186 public void BindByNameFileExtraNames ()
188 var t = new UriTemplate ("http://localhost:8080/");
189 var n = new NameValueCollection ();
190 n.Add ("name", "value");
191 t.BindByName (new Uri ("http://localhost/"), n);
194 [Test]
195 [ExpectedException (typeof (ArgumentException))]
196 public void BindByNameFileMissingName ()
198 var t = new UriTemplate ("/{foo}/");
199 t.BindByName (new Uri ("http://localhost/"), new NameValueCollection ());
202 [Test]
203 [ExpectedException (typeof (ArgumentException))]
204 public void BindInSameSegment ()
206 new UriTemplate ("/hoo/{foo}{bar}");
209 [Test]
210 public void BindByName ()
212 var t = new UriTemplate ("/{foo}/{bar}/");
213 var n = new NameValueCollection ();
214 n.Add ("Bar", "value1"); // case insensitive
215 n.Add ("FOO", "value2"); // case insensitive
216 var u = t.BindByName (new Uri ("http://localhost/"), n);
217 Assert.AreEqual ("http://localhost/value2/value1/", u.ToString ());
220 [Test]
221 public void BindByNameManySlashes ()
223 var t = new UriTemplate ("////{foo}/{bar}/");
224 var n = new NameValueCollection ();
225 n.Add ("Bar", "value1"); // case insensitive
226 n.Add ("FOO", "value2"); // case insensitive
227 var u = t.BindByName (new Uri ("http://localhost/"), n);
228 Assert.AreEqual ("http://localhost////value2/value1/", u.ToString ());
231 [Test]
232 public void BindByNameManySlashes2 ()
234 var t = new UriTemplate ("////{foo}/{bar}/");
235 var n = new NameValueCollection ();
236 n.Add ("Bar", "value1"); // case insensitive
237 n.Add ("FOO", "value2"); // case insensitive
238 var u = t.BindByName (new Uri ("http://localhost//"), n);
239 Assert.AreEqual ("http://localhost/////value2/value1/", u.ToString ());
242 [Test]
243 public void BindByNameWithDefaults ()
245 var d = new Dictionary<string,string> ();
246 d.Add ("Bar", "value1"); // case insensitive
247 d.Add ("FOO", "value2"); // case insensitive
248 var t = new UriTemplate ("/{foo}/{bar}/", d);
249 var u = t.BindByName (new Uri ("http://localhost/"), new NameValueCollection ());
250 Assert.AreEqual ("http://localhost/value2/value1/", u.ToString ());
253 [Test]
254 [ExpectedException (typeof (ArgumentException))]
255 public void BindByNameWithDefaults2 ()
257 var d = new Dictionary<string,string> ();
258 d.Add ("Bar", "value1"); // case insensitive
259 d.Add ("FOO", "value2"); // case insensitive
260 var t = new UriTemplate ("/{foo}/{bar}/{baz}", d);
261 t.BindByName (new Uri ("http://localhost/"), new NameValueCollection ()); // missing baz
264 [Test]
265 [ExpectedException (typeof (ArgumentNullException))]
266 public void BindByPositionNullBaseAddress ()
268 var t = new UriTemplate ("http://localhost:8080/");
269 t.BindByPosition (null);
272 [Test]
273 [ExpectedException (typeof (ArgumentException))]
274 public void BindByPositionRelativeBaseAddress ()
276 var t = new UriTemplate ("http://localhost:8080/");
277 t.BindByPosition (new Uri ("", UriKind.Relative));
280 [Test]
281 [Category ("NotWorking")] // not worthy
282 public void BindByPositionFileUriBaseAddress ()
284 var t = new UriTemplate ("http://localhost:8080/");
285 Assert.AreEqual (new Uri ("file:///http://localhost:8080/"), t.BindByPosition (new Uri ("file:///")));
288 [Test] // it is NOT allowed (unlike BindByName)
289 [ExpectedException (typeof (FormatException))]
290 public void BindByPositionFileExtraValues ()
292 var t = new UriTemplate ("http://localhost:8080/");
293 t.BindByPosition (new Uri ("http://localhost/"), "value");
296 [Test]
297 [ExpectedException (typeof (FormatException))]
298 public void BindByPositionFileMissingValues ()
300 var t = new UriTemplate ("/{foo}/");
301 t.BindByPosition (new Uri ("http://localhost/"));
304 [Test]
305 public void BindByPosition ()
307 var t = new UriTemplate ("/{foo}/{bar}/");
308 var u = t.BindByPosition (new Uri ("http://localhost/"), "value1", "value2");
309 Assert.AreEqual ("http://localhost/value1/value2/", u.ToString ());
312 [Test]
313 [ExpectedException (typeof (FormatException))] // it does not allow default values
314 public void BindByPositionWithDefaults ()
316 var d = new Dictionary<string,string> ();
317 d ["baz"] = "value3";
318 var t = new UriTemplate ("/{foo}/{bar}/{baz}", d);
319 t.BindByPosition (new Uri ("http://localhost/"), "value1", "value2");
322 [Test]
323 [ExpectedException (typeof (ArgumentNullException))]
324 public void MatchNullArgument1 ()
326 var t = new UriTemplate ("/hooray");
327 t.Match (null, new Uri ("http://localhost/"));
330 [Test]
331 [ExpectedException (typeof (ArgumentNullException))]
332 public void MatchNullArgument2 ()
334 var t = new UriTemplate ("/hooray");
335 t.Match (new Uri ("http://localhost/"), null);
338 [Test]
339 public void MatchNoTemplateItem ()
341 var t = new UriTemplate ("/hooray");
342 var n = new NameValueCollection ();
343 Assert.IsNotNull (t.Match (new Uri ("http://localhost/"), new Uri ("http://localhost/hooray")), "#1");
344 Assert.IsNull (t.Match (new Uri ("http://localhost/"), new Uri ("http://localhost/foobar")), "#2");
345 Assert.IsNull (t.Match (new Uri ("http://localhost/"), new Uri ("http://localhost/hooray/foobar")), "#3");
348 [Test]
349 public void MatchWrongTemplate ()
351 var t = new UriTemplate ("/hoo{foo}");
352 var n = new NameValueCollection ();
353 var m = t.Match (new Uri ("http://localhost/"), new Uri ("http://localhost/hooray"));
354 Assert.AreEqual ("ray", m.BoundVariables ["foo"], "#1");
355 Assert.IsNull (t.Match (new Uri ("http://localhost/"), new Uri ("http://localhost/foobar")), "#2");
356 Assert.IsNull (t.Match (new Uri ("http://localhost/"), new Uri ("http://localhost/hooray/foobar")), "#3");
357 Assert.IsNull (t.Match (new Uri ("http://localhost/"), new Uri ("http://localhost/hoo/ray")), "#4");
358 Assert.IsNull (t.Match (new Uri ("http://localhost/"), new Uri ("http://localhost/hoo")), "#5");
359 // this matches (as if there were no template).
360 Assert.IsNotNull (t.Match (new Uri ("http://localhost/"), new Uri ("http://localhost/hoo{foo}")), "#6");
363 [Test]
364 public void Match ()
366 var t = new UriTemplate ("/{foo}/{bar}");
367 var n = new NameValueCollection ();
368 Uri baseUri = new Uri ("http://localhost/");
369 Assert.IsNull (t.Match (baseUri, new Uri ("http://localhost/hooray")), "#1");
370 Assert.IsNull (t.Match (baseUri, new Uri ("http://localhost/v1/v2/extra")), "#2");
371 Assert.IsNull (t.Match (baseUri, new Uri ("http://localhost/1/2/")), "#3");
372 UriTemplateMatch m = t.Match (baseUri, new Uri ("http://localhost/foooo/baaar"));
373 Assert.IsNotNull (m, "#4");
374 Assert.AreEqual ("foooo", m.BoundVariables ["foo"], "#5");
375 Assert.AreEqual ("baaar", m.BoundVariables ["bar"], "#6");
378 [Test]
379 public void Match2 ()
381 var t = new UriTemplate ("/{foo}/{bar}?p1={baz}");
382 var n = new NameValueCollection ();
383 Uri baseUri = new Uri ("http://localhost/");
384 Assert.IsNotNull (t.Match (baseUri, new Uri ("http://localhost/X/Y")), "#1");
385 UriTemplateMatch m = t.Match (baseUri, new Uri ("http://localhost/X/Y?p2=v&p1=vv"));
386 Assert.IsNotNull (m, "#2");
387 // QueryParameters must contain non-template query parameters.
388 Assert.AreEqual (2, m.QueryParameters.Count, "#3");
389 Assert.AreEqual ("v", m.QueryParameters ["p2"], "#4");
390 Assert.AreEqual ("vv", m.QueryParameters ["p1"], "#5");
393 [Test]
394 public void MatchWildcard ()
396 var t = new UriTemplate ("/hoge/*?p1={foo}");
397 var m = t.Match (new Uri ("http://localhost"), new Uri ("http://localhost/hoge/ppp/qqq?p1=v1"));
398 Assert.IsNotNull (m, "#0");
399 Assert.IsNotNull (m.QueryParameters, "#1.0");
400 Assert.AreEqual ("v1", m.QueryParameters ["p1"], "#1");
401 Assert.IsNotNull (m.WildcardPathSegments, "#2.0");
402 Assert.AreEqual (2, m.WildcardPathSegments.Count, "#2");
403 Assert.AreEqual ("ppp", m.WildcardPathSegments [0], "#3");
404 Assert.AreEqual ("qqq", m.WildcardPathSegments [1], "#4");
407 [Test]
408 public void IgnoreTrailingSlash ()
410 var t = new UriTemplate ("/{foo}/{bar}", true);
411 var n = new NameValueCollection ();
412 Uri baseUri = new Uri ("http://localhost/");
413 Assert.IsNotNull (t.Match (baseUri, new Uri ("http://localhost/v1/v2/")), "#1");
415 t = new UriTemplate ("/{foo}/{bar}", false);
416 Assert.IsNull (t.Match (baseUri, new Uri ("http://localhost/v1/v2/")), "#2");
419 [Test]
420 public void SimpleWebGet () {
421 UriTemplate t = new UriTemplate ("GetBlog");
422 Assert.IsNotNull(t.Match(new Uri("http://localhost:8000/BlogService"),
423 new Uri("http://localhost:8000/BlogService/GetBlog")), "Matches simple WebGet method");
424 Assert.IsNull(t.Match (new Uri ("http://localhost:8000/BlogService"),
425 new Uri ("http://localhost:8000/BlogService/GetData")), "Doesn't match wrong WebGet method");
428 [Test]
429 [ExpectedException (typeof (ArgumentException))]
430 public void DictContainsNullValue ()
432 var t = new UriTemplate ("/id-{foo}/{bar}");
433 var dic = new Dictionary<string,string> ();
434 dic ["foo"] = null;
435 dic ["bar"] = "bbb";
436 t.BindByName (new Uri ("http://localhost:8080"), dic);
439 [Test]
440 public void DictContainsCaseInsensitiveKey ()
442 var t = new UriTemplate ("/id-{foo}/{bar}");
443 var dic = new Dictionary<string,string> ();
444 dic ["foo"] = "aaa";
445 dic ["Bar"] = "bbb";
446 var uri = t.BindByName (new Uri ("http://localhost:8080"), dic);
447 Assert.AreEqual ("http://localhost:8080/id-aaa/bbb", uri.ToString ());