Exemple #1
0
        public void WhenHasEntity_IsMatch_HttpStatusMessageTest()
        {
            WhenHasEntity when = new WhenHasEntity()
            {
                MessageValue = MessageValue.HttpStatusMessage
            };

            Mock <EventInfo>              mockEventInfo              = new Mock <EventInfo>();
            Mock <HttpMessage>            mockHttpMessage            = new Mock <HttpMessage>();
            Mock <HttpResponseStatusLine> mockHttpResponseStatusLine = new Mock <HttpResponseStatusLine>();

            EventInfo              eventInfo              = mockEventInfo.Object;
            HttpMessage            httpMessage            = mockHttpMessage.Object;
            HttpResponseStatusLine httpResponseStatusLine = mockHttpResponseStatusLine.Object;

            mockEventInfo.Setup(mock => mock.Message).Returns(httpMessage);
            mockHttpMessage.Setup(mock => mock.StatusLine).Returns(httpResponseStatusLine);
            mockHttpResponseStatusLine.Setup(mock => mock.StatusMessage).Returns((string)null);

            Assert.IsFalse(when.IsMatch(eventInfo));

            mockHttpResponseStatusLine.Reset();

            mockHttpResponseStatusLine.Setup(mock => mock.StatusMessage).Returns("http");

            Assert.IsTrue(when.IsMatch(eventInfo));
        }
Exemple #2
0
        public void WhenHasEntity_IsMatch_HttpHeadersTest()
        {
            WhenHasEntity when = new WhenHasEntity()
            {
                MessageValue = MessageValue.HttpHeaders
            };

            Mock <EventInfo>   mockEventInfo   = new Mock <EventInfo>();
            Mock <HttpMessage> mockHttpMessage = new Mock <HttpMessage>();
            Mock <HttpHeaders> mockHttpHeaders = new Mock <HttpHeaders>();

            EventInfo   eventInfo   = mockEventInfo.Object;
            HttpMessage httpMessage = mockHttpMessage.Object;
            HttpHeaders httpHeaders = mockHttpHeaders.Object;

            mockEventInfo.Setup(mock => mock.Message).Returns(httpMessage);
            mockHttpMessage.Setup(mock => mock.Headers).Returns(httpHeaders);

            mockEventInfo.Setup(mock => mock.Message).Returns(httpMessage);
            mockHttpMessage.Setup(mock => mock.Headers).Returns(httpHeaders);

            Assert.IsFalse(when.IsMatch(eventInfo));

            mockHttpHeaders.Setup(mock => mock.Count).Returns(1);

            Assert.IsTrue(when.IsMatch(eventInfo));
        }
Exemple #3
0
        public void WhenHasEntity_IsMatch_HttpBodyTest()
        {
            WhenHasEntity when = new WhenHasEntity()
            {
                MessageValue = MessageValue.HttpBody
            };

            Mock <EventInfo>   mockEventInfo   = new Mock <EventInfo>();
            Mock <HttpMessage> mockHttpMessage = new Mock <HttpMessage>();
            Mock <HttpBody>    mockHttpBody    = new Mock <HttpBody>();

            EventInfo   eventInfo   = mockEventInfo.Object;
            HttpMessage httpMessage = mockHttpMessage.Object;
            HttpBody    httpBody    = mockHttpBody.Object;

            mockEventInfo.Setup(mock => mock.Message).Returns(httpMessage);
            mockHttpMessage.Setup(mock => mock.Body).Returns(httpBody);

            Assert.IsTrue(when.IsMatch(eventInfo));
        }
Exemple #4
0
        public void WhenHasEntity_IsMatch_AlwaysTrue()
        {
            List <MessageValue> alwaysTrueMessageValues = new List <MessageValue>()
            {
                MessageValue.DataDirection,
                MessageValue.LocalAddress,
                MessageValue.LocalPort,
                MessageValue.Protocol,
                MessageValue.SourceRemoteAddress,
                MessageValue.SourceRemotePort
            };
            IEnumerable <MessageValue> notAlwaysTrueMessageValues = Enum.GetValues(typeof(MessageValue)).Cast <MessageValue>().Except(alwaysTrueMessageValues);

            Mock <EventInfo>       mockEventInfo       = new Mock <EventInfo>();
            Mock <ProxyConnection> mockProxyConnection = new Mock <ProxyConnection>(It.IsAny <ProxyHost>(), It.IsAny <ProxyInfo>(), It.IsAny <TcpClient>());
            Mock <ProxyInfo>       mockProxyInfo       = new Mock <ProxyInfo>();

            EventInfo       eventInfo       = mockEventInfo.Object;
            ProxyConnection proxyConnection = mockProxyConnection.Object;
            ProxyInfo       proxyInfo       = mockProxyInfo.Object;

            mockEventInfo.Setup(mock => mock.ProxyConnection).Returns(proxyConnection);
            mockProxyConnection.Setup(mock => mock.ProxyInfo).Returns(proxyInfo);

            WhenHasEntity when = new WhenHasEntity();

            foreach (MessageValue value in alwaysTrueMessageValues)
            {
                when.MessageValue = value;
                Assert.IsTrue(when.IsMatch(eventInfo));
            }

            foreach (MessageValue value in notAlwaysTrueMessageValues)
            {
                when.MessageValue = value;
                Assert.IsFalse(when.IsMatch(eventInfo));
            }
        }
Exemple #5
0
        public void WhenHasEntity_IsMatch_HttpHeaderTest()
        {
            string expectedKey = "key";

            WhenHasEntity when = new WhenHasEntity()
            {
                MessageValue = MessageValue.HttpHeader
            };

            Mock <EventInfo>      mockEventInfo      = new Mock <EventInfo>();
            Mock <HttpMessage>    mockHttpMessage    = new Mock <HttpMessage>();
            Mock <HttpHeaders>    mockHttpHeaders    = new Mock <HttpHeaders>();
            Mock <VariableString> mockVariableString = new Mock <VariableString>(It.IsAny <string>(), null);

            EventInfo      eventInfo      = mockEventInfo.Object;
            HttpMessage    httpMessage    = mockHttpMessage.Object;
            HttpHeaders    httpHeaders    = mockHttpHeaders.Object;
            VariableString variableString = mockVariableString.Object;

            mockEventInfo.Setup(mock => mock.Message).Returns(httpMessage);
            mockHttpMessage.Setup(mock => mock.Headers).Returns(httpHeaders);
            mockVariableString.Setup(mock => mock.GetText(It.IsAny <Variables>())).Returns(expectedKey);
            mockHttpHeaders.Setup(mock => mock.Contains(It.IsAny <string>())).Returns(false);

            when.Identifier = variableString;

            Assert.IsFalse(when.IsMatch(eventInfo));

            mockHttpHeaders.Verify(mock => mock.Contains(expectedKey), Times.Once);

            mockHttpHeaders.Reset();

            mockHttpHeaders.Setup(mock => mock.Contains(It.IsAny <string>())).Returns(true);

            Assert.IsTrue(when.IsMatch(eventInfo));

            mockHttpHeaders.Verify(mock => mock.Contains(expectedKey), Times.Once);
        }
Exemple #6
0
        public void WhenHasEntity_IsMatch_DestinationRemotePortTest()
        {
            WhenHasEntity when = new WhenHasEntity()
            {
                MessageValue = MessageValue.DestinationRemotePort
            };

            Mock <EventInfo>       mockEventInfo       = new Mock <EventInfo>();
            Mock <ProxyConnection> mockProxyConnection = new Mock <ProxyConnection>(It.IsAny <ProxyHost>(), It.IsAny <ProxyInfo>(), It.IsAny <TcpClient>());

            EventInfo       eventInfo       = mockEventInfo.Object;
            ProxyConnection proxyConnection = mockProxyConnection.Object;

            mockEventInfo.Setup(mock => mock.ProxyConnection).Returns(proxyConnection);
            mockProxyConnection.Setup(mock => mock.HasTargetConnection).Returns(true);

            Assert.IsTrue(when.IsMatch(eventInfo));

            mockProxyConnection.Reset();

            mockProxyConnection.Setup(mock => mock.HasTargetConnection).Returns(false);

            Assert.IsFalse(when.IsMatch(eventInfo));
        }