| 123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294295296297298299300301302303 |
- //
- // UriTemplate.cs
- //
- // Author:
- // Atsushi Enomoto <[email protected]>
- //
- // Copyright (C) 2008 Novell, Inc (http://www.novell.com)
- //
- // Permission is hereby granted, free of charge, to any person obtaining
- // a copy of this software and associated documentation files (the
- // "Software"), to deal in the Software without restriction, including
- // without limitation the rights to use, copy, modify, merge, publish,
- // distribute, sublicense, and/or sell copies of the Software, and to
- // permit persons to whom the Software is furnished to do so, subject to
- // the following conditions:
- //
- // The above copyright notice and this permission notice shall be
- // included in all copies or substantial portions of the Software.
- //
- // THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND,
- // EXPRESS OR IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF
- // MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE AND
- // NONINFRINGEMENT. IN NO EVENT SHALL THE AUTHORS OR COPYRIGHT HOLDERS BE
- // LIABLE FOR ANY CLAIM, DAMAGES OR OTHER LIABILITY, WHETHER IN AN ACTION
- // OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, OUT OF OR IN CONNECTION
- // WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE SOFTWARE.
- //
- using System;
- using System.Collections.ObjectModel;
- using System.Collections.Specialized;
- using NUnit.Framework;
- namespace MonoTests.System
- {
- [TestFixture]
- public class UriTemplateTest
- {
- [Test]
- [ExpectedException (typeof (ArgumentNullException))]
- public void ConstructorNull ()
- {
- new UriTemplate (null);
- }
- [Test]
- public void ConstructorEmpty ()
- {
- // it does not raise an error at this state.
- new UriTemplate (String.Empty);
- }
- [Test]
- public void ConstructorBrokenTemplate ()
- {
- // it does not raise an error at this state.
- new UriTemplate ("{");
- }
- [Test]
- public void ToString ()
- {
- Assert.AreEqual ("urn:foo", new UriTemplate ("urn:foo").ToString (), "#1");
- Assert.AreEqual ("{", new UriTemplate ("{").ToString (), "#2");
- }
- [Test]
- public void Variables ()
- {
- var t = new UriTemplate ("urn:foo");
- Assert.AreEqual (0, t.PathSegmentVariableNames.Count, "#1a");
- Assert.AreEqual (0, t.QueryValueVariableNames.Count, "#1b");
- t = new UriTemplate ("http://localhost:8080/");
- Assert.AreEqual (0, t.PathSegmentVariableNames.Count, "#2a");
- Assert.AreEqual (0, t.QueryValueVariableNames.Count, "#2b");
- t = new UriTemplate ("http://localhost:8080/foo/");
- Assert.AreEqual (0, t.PathSegmentVariableNames.Count, "#3a");
- Assert.AreEqual (0, t.QueryValueVariableNames.Count, "#3b");
- t = new UriTemplate ("http://localhost:8080/{foo}");
- Assert.AreEqual (1, t.PathSegmentVariableNames.Count, "#4a");
- Assert.AreEqual ("FOO", t.PathSegmentVariableNames [0], "#4b");
- Assert.AreEqual (0, t.QueryValueVariableNames.Count, "#4c");
- t = new UriTemplate ("http://localhost:8080/{foo}/{");
- Assert.AreEqual (1, t.PathSegmentVariableNames.Count, "#5a");
- Assert.AreEqual ("FOO", t.PathSegmentVariableNames [0], "#5b");
- Assert.AreEqual (0, t.QueryValueVariableNames.Count, "#5c");
- t = new UriTemplate ("http://localhost:8080/hoge?test={foo}&test2={bar}");
- Assert.AreEqual (0, t.PathSegmentVariableNames.Count, "#6a");
- Assert.AreEqual (2, t.QueryValueVariableNames.Count, "#6b");
- Assert.AreEqual ("FOO", t.QueryValueVariableNames [0], "#6c");
- Assert.AreEqual ("BAR", t.QueryValueVariableNames [1], "#6d");
- }
- [Test]
- [Category ("NotWorking")]
- public void VariablesInSameSegment ()
- {
- var t = new UriTemplate ("http://localhost:8080/{foo}{bar}");
- Assert.AreEqual (1, t.PathSegmentVariableNames.Count, "#7a");
- // wow.
- Assert.AreEqual ("FOO}{BAR", t.PathSegmentVariableNames [0], "#7b");
- Assert.AreEqual (0, t.QueryValueVariableNames.Count, "#7c");
- }
- [Test]
- public void VariablesInNonPathQuery ()
- {
- var t = new UriTemplate ("http://localhost:{foo}/");
- Assert.AreEqual (0, t.PathSegmentVariableNames.Count, "#8a");
- Assert.AreEqual (0, t.QueryValueVariableNames.Count, "#8b");
- }
- [Test]
- [ExpectedException (typeof (InvalidOperationException))]
- public void DuplicateNameInTemplate ()
- {
- // one name to two places to match
- new UriTemplate ("http://localhost:8080/hoge?test={foo}&test2={foo}");
- }
- [Test]
- [ExpectedException (typeof (InvalidOperationException))]
- public void DuplicateNameInTemplate2 ()
- {
- // one name to two places to match
- new UriTemplate ("http://localhost:8080/hoge/{foo}?test={foo}");
- }
- [Test]
- [ExpectedException (typeof (ArgumentNullException))]
- public void BindByNameNullBaseAddress ()
- {
- var t = new UriTemplate ("http://localhost:8080/");
- t.BindByName (null, new NameValueCollection ());
- }
- [Test]
- [ExpectedException (typeof (ArgumentException))]
- public void BindByNameRelativeBaseAddress ()
- {
- var t = new UriTemplate ("http://localhost:8080/");
- t.BindByName (new Uri ("", UriKind.Relative), new NameValueCollection ());
- }
- [Test]
- [ExpectedException (typeof (ArgumentException))]
- public void BindByNameFileUriBaseAddress ()
- {
- var t = new UriTemplate ("http://localhost:8080/");
- t.BindByName (new Uri ("file:///"), new NameValueCollection ());
- }
- [Test] // it is allowed.
- public void BindByNameFileExtraNames ()
- {
- var t = new UriTemplate ("http://localhost:8080/");
- var n = new NameValueCollection ();
- n.Add ("name", "value");
- t.BindByName (new Uri ("http://localhost/"), n);
- }
- [Test]
- [ExpectedException (typeof (FormatException))]
- public void BindByNameFileMissingName ()
- {
- var t = new UriTemplate ("/{foo}/");
- t.BindByName (new Uri ("http://localhost/"), new NameValueCollection ());
- }
- [Test]
- public void BindInSameSegment ()
- {
- new UriTemplate ("/hoo/{foo}{bar}");
- }
- [Test]
- public void BindByName ()
- {
- var t = new UriTemplate ("/{foo}/{bar}/");
- var n = new NameValueCollection ();
- n.Add ("Bar", "value1"); // case insensitive
- n.Add ("FOO", "value2"); // case insensitive
- var u = t.BindByName (new Uri ("http://localhost/"), n);
- Assert.AreEqual ("http://localhost/value2/value1/", u.ToString ());
- }
- [Test]
- [ExpectedException (typeof (ArgumentNullException))]
- public void BindByPositionNullBaseAddress ()
- {
- var t = new UriTemplate ("http://localhost:8080/");
- t.BindByPosition (null);
- }
- [Test]
- [ExpectedException (typeof (ArgumentException))]
- public void BindByPositionRelativeBaseAddress ()
- {
- var t = new UriTemplate ("http://localhost:8080/");
- t.BindByPosition (new Uri ("", UriKind.Relative));
- }
- [Test]
- [ExpectedException (typeof (ArgumentException))]
- public void BindByPositionFileUriBaseAddress ()
- {
- var t = new UriTemplate ("http://localhost:8080/");
- t.BindByPosition (new Uri ("file:///"));
- }
- [Test] // it is NOT allowed (unlike BindByName)
- [ExpectedException (typeof (FormatException))]
- public void BindByPositionFileExtraValues ()
- {
- var t = new UriTemplate ("http://localhost:8080/");
- t.BindByPosition (new Uri ("http://localhost/"), "value");
- }
- [Test]
- [ExpectedException (typeof (FormatException))]
- public void BindByPositionFileMissingValues ()
- {
- var t = new UriTemplate ("/{foo}/");
- t.BindByPosition (new Uri ("http://localhost/"));
- }
- [Test]
- public void BindByPosition ()
- {
- var t = new UriTemplate ("/{foo}/{bar}/");
- var u = t.BindByPosition (new Uri ("http://localhost/"), "value1", "value2");
- Assert.AreEqual ("http://localhost/value1/value2/", u.ToString ());
- }
- [Test]
- public void MatchNoTemplateItem ()
- {
- var t = new UriTemplate ("/hooray");
- var n = new NameValueCollection ();
- Assert.IsNotNull (t.Match (new Uri ("http://localhost/"), new Uri ("http://localhost/hooray")), "#1");
- Assert.IsNull (t.Match (new Uri ("http://localhost/"), new Uri ("http://localhost/foobar")), "#2");
- Assert.IsNull (t.Match (new Uri ("http://localhost/"), new Uri ("http://localhost/hooray/foobar")), "#3");
- }
- [Test]
- [Category("NotWorking")]
- public void MatchWrongTemplate ()
- {
- var t = new UriTemplate ("/hoo{foo}");
- var n = new NameValueCollection ();
- Assert.IsNull (t.Match (new Uri ("http://localhost/"), new Uri ("http://localhost/hooray")), "#1");
- Assert.IsNull (t.Match (new Uri ("http://localhost/"), new Uri ("http://localhost/foobar")), "#2");
- Assert.IsNull (t.Match (new Uri ("http://localhost/"), new Uri ("http://localhost/hooray/foobar")), "#3");
- Assert.IsNull (t.Match (new Uri ("http://localhost/"), new Uri ("http://localhost/hoo/ray")), "#4");
- Assert.IsNull (t.Match (new Uri ("http://localhost/"), new Uri ("http://localhost/hoo")), "#5");
- // this matches (as if there were no template).
- Assert.IsNotNull (t.Match (new Uri ("http://localhost/"), new Uri ("http://localhost/hoo{foo}")), "#6");
- }
- [Test]
- public void Match ()
- {
- var t = new UriTemplate ("/{foo}/{bar}");
- var n = new NameValueCollection ();
- Uri baseUri = new Uri ("http://localhost/");
- Assert.IsNull (t.Match (baseUri, new Uri ("http://localhost/hooray")), "#1");
- Assert.IsNull (t.Match (baseUri, new Uri ("http://localhost/v1/v2/extra")), "#2");
- Assert.IsNull (t.Match (baseUri, new Uri ("http://localhost/1/2/")), "#3");
- UriTemplateMatch m = t.Match (baseUri, new Uri ("http://localhost/foooo/baaar"));
- Assert.IsNotNull (m, "#4");
- Assert.AreEqual ("foooo", m.BoundVariables ["foo"], "#5");
- Assert.AreEqual ("baaar", m.BoundVariables ["bar"], "#6");
- }
- [Test]
- public void Match2 ()
- {
- var t = new UriTemplate ("/{foo}/{bar}?p1={baz}");
- var n = new NameValueCollection ();
- Uri baseUri = new Uri ("http://localhost/");
- Assert.IsNotNull (t.Match (baseUri, new Uri ("http://localhost/X/Y")), "#1");
- UriTemplateMatch m = t.Match (baseUri, new Uri ("http://localhost/X/Y?p2=v&p1=vv"));
- Assert.IsNotNull (m, "#2");
- // QueryParameters must contain non-template query parameters.
- Assert.AreEqual (2, m.QueryParameters.Count, "#3");
- Assert.AreEqual ("v", m.QueryParameters ["p2"], "#4");
- Assert.AreEqual ("vv", m.QueryParameters ["p1"], "#5");
- }
- [Test]
- public void SimpleWebGet () {
- UriTemplate t = new UriTemplate ("GetBlog");
- Assert.IsNotNull(t.Match(new Uri("http://localhost:8000/BlogService"),
- new Uri("http://localhost:8000/BlogService/GetBlog")), "Matches simple WebGet method");
- Assert.IsNull(t.Match (new Uri ("http://localhost:8000/BlogService"),
- new Uri ("http://localhost:8000/BlogService/GetData")), "Doesn't match wrong WebGet method");
- }
- }
- }
|