| 123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213 |
- //
- // WebHttpDispatchOperationSelectorTest.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.Globalization;
- using System.Runtime.Serialization;
- using System.ServiceModel;
- using System.ServiceModel.Channels;
- using System.ServiceModel.Description;
- using System.ServiceModel.Dispatcher;
- using System.ServiceModel.Web;
- using System.Text;
- using System.Xml;
- using NUnit.Framework;
- namespace MonoTests.System.ServiceModel.Dispatcher
- {
- [TestFixture]
- public class WebHttpDispatchOperationSelectorTest
- {
- [Test]
- [ExpectedException (typeof (ArgumentNullException))]
- public void ConstructorNullEndpoint ()
- {
- new WebHttpDispatchOperationSelector (null);
- }
- [Test]
- [ExpectedException (typeof (InvalidOperationException))]
- public void ConstructorEndpointNullAddress ()
- {
- ServiceEndpoint se = new ServiceEndpoint (ContractDescription.GetContract (typeof (MyService)));
- new WebHttpDispatchOperationSelector (se);
- }
- [Test]
- public void SelectOperation ()
- {
- SelectOperationCore (Create ());
- }
- [Test]
- [Category("NotWorking")]
- public void SelectOperation2 ()
- {
- SelectOperationCore (Create2 ());
- }
- [Test]
- [Category("NotWorking")]
- public void SelectOperation3 ()
- {
- ContractDescription cd = ContractDescription.GetContract (typeof (MyService2));
- Assert.IsNotNull (cd.Operations [0].Behaviors.Find<WebGetAttribute> (), "#1");
- cd = ContractDescription.GetContract (typeof (MyService));
- Assert.IsNull (cd.Operations [0].Behaviors.Find<WebGetAttribute> (), "#2");
- }
- void SelectOperationCore (MySelector d)
- {
- string name;
- var msg = Message.CreateMessage (MessageVersion.Soap12, "http://temuri.org/MyService/Echo"); // looks like Version is not checked
- Assert.IsNull (msg.Headers.To, "#1-0");
- Assert.IsFalse (d.SelectOperation (ref msg, out name), "#1");
- Assert.AreEqual ("", name, "#1-2");
- Assert.IsNull (msg.Headers.To, "#1-3"); // no overwrite
- Assert.IsFalse (msg.Properties.ContainsKey ("UriMatched"), "#1-4");
- msg = Message.CreateMessage (MessageVersion.None, "http://temuri.org/MyService/Echo");
- Assert.IsFalse (d.SelectOperation (ref msg, out name), "#2");
- Assert.IsFalse (msg.Properties.ContainsKey ("UriMatched"), "#2-2");
- msg = Message.CreateMessage (MessageVersion.None, "http://foobar.org/MyService/NonExistent");
- Assert.IsFalse (d.SelectOperation (ref msg, out name), "#3");
- Assert.AreEqual ("", name, "#3-2");
- Assert.IsFalse (msg.Properties.ContainsKey ("UriMatched"), "#3-3");
- // version and action do not matter
- msg = Message.CreateMessage (MessageVersion.Soap12, "http://nonexistent.org/");
- var http = new HttpRequestMessageProperty ();
- // this mismatch is allowed. Lack of this value is OK.
- // http.Method = "POST";
- // this mismatch is allowed. Lack of this value is OK.
- // http.QueryString = "foo=bar";
- // this mismatch is allowed. Lack of this value is OK.
- // http.Headers.Add ("Content-Type", "application/json");
- // so, the http property can be empty, but is required.
- msg.Properties.Add (HttpRequestMessageProperty.Name, http);
- msg.Headers.To = new Uri ("http://localhost:8080/Echo?input=hoge");
- Assert.IsTrue (d.SelectOperation (ref msg, out name), "#4");
- // FIXME: hmm... isn'y "Echo" expected?
- // Assert.AreEqual ("", name, "#4-2");
- }
- [Test]
- [Category ("NotWorking")]
- public void SelectOperationOnlyMessage ()
- {
- // This test shows strange result ... it adds UriMatched property while it does not really match the URI.
- var d = Create ();
- var msg = Message.CreateMessage (MessageVersion.None, "http://temuri.org/MyService/Echo"); // looks like Version is not checked
- Assert.AreEqual ("", d.SelectOperation (ref msg), "#1");
- Assert.IsTrue (msg.Properties.ContainsKey ("UriMatched"), "#1-2");
- msg = Message.CreateMessage (MessageVersion.None, "http://foobar.org/MyService/NonExistent");
- Assert.AreEqual ("", d.SelectOperation (ref msg), "#2");
- Assert.IsNotNull (msg.Properties ["UriMatched"], "#2-2");
- }
- [Test]
- [ExpectedException (typeof (ArgumentException))]
- [Category ("NotWorking")]
- public void SelectOperationCheckExistingProperty ()
- {
- var d = Create ();
- var msg = Message.CreateMessage (MessageVersion.None, "http://temuri.org/MyService/Echo");
- d.SelectOperation (ref msg);
- d.SelectOperation (ref msg);
- }
- // Types
- class MySelector : WebHttpDispatchOperationSelector
- {
- public MySelector (ServiceEndpoint se)
- : base (se)
- {
- }
- public bool SelectOperation (ref Message msg, out string name)
- {
- bool ret;
- name = SelectOperation (ref msg, out ret);
- return ret;
- }
- }
- class MyBehavior : WebHttpBehavior
- {
- public WebHttpDispatchOperationSelector GetPublicOperationSelector (ServiceEndpoint se)
- {
- return GetOperationSelector (se);
- }
- protected override WebHttpDispatchOperationSelector GetOperationSelector (ServiceEndpoint se)
- {
- return new MySelector (se);
- }
- }
- [ServiceContract]
- public interface MyService
- {
- [OperationContract]
- // [WebGet (UriTemplate = "MyService/Echo?input={input}")]
- // [WebGet] // UriTemplate = "Echo?input={input}"
- string Echo (string input);
- }
- [ServiceContract (Name = "MyService")]
- public interface MyService2
- {
- [OperationContract (Name = "Echo")]
- [WebGet] // UriTemplate = "Echo?input={input}"
- string Echo (string input);
- }
- MySelector Create ()
- {
- ServiceEndpoint se = new ServiceEndpoint (ContractDescription.GetContract (typeof (MyService)));
- se.Address = new EndpointAddress ("http://localhost:8080");
- se.Contract.Operations [0].Behaviors.Add (new WebGetAttribute ());
- return new MySelector (se);
- //var b = new MyBehavior ();
- //se.Behaviors.Add (b);
- //return (MySelector) b.GetPublicOperationSelector (se);
- }
- MySelector Create2 ()
- {
- ServiceEndpoint se = new ServiceEndpoint (ContractDescription.GetContract (typeof (MyService2)));
- se.Address = new EndpointAddress ("http://localhost:8080");
- //se.Contract.Operations [0].Behaviors.Add (new WebGetAttribute ());
- return new MySelector (se);
- }
- }
- }
|