Example #1
0
        public void Validate()
        {
            var wba = new WcfBasicHttpRelayAdapter.Outbound(
                a => {
                a.Address      = new EndpointAddress("https://biztalk.factory.servicebus.windows.net/batch-queue");
                a.TextEncoding = Encoding.ASCII;
            });

            Assert.That(
                () => ((ISupportValidation)wba).Validate(),
                Throws.TypeOf <ArgumentException>()
                .With.InnerException.TypeOf <ArgumentException>()
                .With.InnerException.Message.StartsWith("The text encoding 'us-ascii' used in the text message format is not supported."));
        }
Example #2
0
        public void SerializeToXml()
        {
            var wba = new WcfBasicHttpRelayAdapter.Outbound(
                a => {
                a.Address  = new EndpointAddress("https://biztalk.factory.servicebus.windows.net/batch-queue");
                a.Identity = EndpointIdentityFactory.CreateSpnIdentity("spn_name");
                a.MaxReceivedMessageSize = 64512;
                a.MessageEncoding        = WSMessageEncoding.Mtom;
                a.SendTimeout            = TimeSpan.FromMinutes(2);
                a.StsUri       = new Uri("https://biztalk.factory-sb.accesscontrol.windows.net/");
                a.IssuerName   = "issuer_name";
                a.IssuerSecret = "issuer_secret";
            });
            var xml = ((IAdapterBindingSerializerFactory)wba).GetAdapterBindingSerializer().Serialize();

            Assert.That(
                xml,
                Is.EqualTo(
                    "<CustomProps>" +
                    "<MaxReceivedMessageSize vt=\"3\">64512</MaxReceivedMessageSize>" +
                    "<MessageEncoding vt=\"8\">Mtom</MessageEncoding>" +
                    "<TextEncoding vt=\"8\">utf-8</TextEncoding>" +
                    "<SecurityMode vt=\"8\">Transport</SecurityMode>" +
                    "<MessageClientCredentialType vt=\"8\">UserName</MessageClientCredentialType>" +
                    "<AlgorithmSuite vt=\"8\">Basic256</AlgorithmSuite>" +
                    "<UseSSO vt=\"11\">0</UseSSO>" +
                    "<ProxyToUse vt=\"8\">Default</ProxyToUse>" +
                    "<InboundBodyLocation vt=\"8\">UseBodyElement</InboundBodyLocation>" +
                    "<InboundNodeEncoding vt=\"8\">Xml</InboundNodeEncoding>" +
                    "<OutboundBodyLocation vt=\"8\">UseBodyElement</OutboundBodyLocation>" +
                    "<OutboundXmlTemplate vt=\"8\">" + (
                        "&lt;bts-msg-body xmlns=\"http://www.microsoft.com/schemas/bts2007\" encoding=\"xml\"/&gt;") +
                    "</OutboundXmlTemplate>" +
                    "<PropagateFaultMessage vt=\"11\">-1</PropagateFaultMessage>" +
                    "<StsUri vt=\"8\">https://biztalk.factory-sb.accesscontrol.windows.net/</StsUri>" +
                    "<IssuerName vt=\"8\">issuer_name</IssuerName>" +
                    "<IssuerSecret vt=\"8\">issuer_secret</IssuerSecret>" +
                    "<UseAcsAuthentication vt=\"11\">-1</UseAcsAuthentication>" +
                    "<OpenTimeout vt=\"8\">00:01:00</OpenTimeout>" +
                    "<SendTimeout vt=\"8\">00:02:00</SendTimeout>" +
                    "<CloseTimeout vt=\"8\">00:01:00</CloseTimeout>" +
                    "<Identity vt=\"8\">" + (
                        "&lt;identity&gt;\r\n  &lt;servicePrincipalName value=\"spn_name\" /&gt;\r\n&lt;/identity&gt;") +
                    "</Identity>" +
                    "</CustomProps>"))
            ;
        }
Example #3
0
        public void ValidateDoesNotThrow()
        {
            var wba = new WcfBasicHttpRelayAdapter.Outbound(
                a => {
                a.Address  = new EndpointAddress("https://biztalk.factory.servicebus.windows.net/batch-queue");
                a.Identity = EndpointIdentityFactory.CreateSpnIdentity("spn_name");

                a.MaxReceivedMessageSize = 64512;
                a.MessageEncoding        = WSMessageEncoding.Mtom;

                a.StsUri       = new Uri("https://biztalk.factory-sb.accesscontrol.windows.net/");
                a.IssuerName   = "issuer_name";
                a.IssuerSecret = "issuer_secret";
            });

            Assert.That(() => ((ISupportValidation)wba).Validate(), Throws.Nothing);
        }