Exemplo n.º 1
0
        public async void ReturnsTrueWhenRequestUriDoesntExceedMaxLength()
        {
            var url = "http://deepsleep.io/test/uri";

            var context = new ApiRequestContext
            {
                RequestAborted = new System.Threading.CancellationToken(false),
                Request        = new ApiRequestInfo
                {
                    RequestUri = url
                },
                Configuration = new DeepSleepRequestConfiguration
                {
                    RequestValidation = new ApiRequestValidationConfiguration
                    {
                        MaxRequestUriLength = url.Length
                    }
                }
            };

            var processed = await context.ProcessHttpRequestUriValidation().ConfigureAwait(false);

            processed.Should().BeTrue();

            context.Response.Should().NotBeNull();
            context.Response.ResponseObject.Should().BeNull();
        }
Exemplo n.º 2
0
        public async void ReturnsFalseWhenRequestUriExceedsMaxLength()
        {
            var url = "http://deepsleep.io/test/uri";

            var context = new ApiRequestContext
            {
                RequestAborted = new System.Threading.CancellationToken(false),
                Request        = new ApiRequestInfo
                {
                    RequestUri = url
                },
                Configuration = new DeepSleepRequestConfiguration
                {
                    RequestValidation = new ApiRequestValidationConfiguration
                    {
                        MaxRequestUriLength = url.Length - 1
                    }
                }
            };

            var processed = await context.ProcessHttpRequestUriValidation().ConfigureAwait(false);

            processed.Should().BeFalse();

            context.Response.Should().NotBeNull();
            context.Response.ResponseObject.Should().BeNull();
            context.Response.StatusCode.Should().Be(414);

            context.Runtime.Should().NotBeNull();
            context.Validation.Errors.Should().NotBeNull();
            context.Validation.Errors.Should().HaveCount(0);
        }
Exemplo n.º 3
0
        public async void ReturnsTrueWhenRequestUriDoesntExist(string requestUri)
        {
            var context = new ApiRequestContext
            {
                RequestAborted = new System.Threading.CancellationToken(false),
                Request        = new ApiRequestInfo
                {
                    RequestUri = requestUri
                },
                Configuration = new DeepSleepRequestConfiguration
                {
                    RequestValidation = new ApiRequestValidationConfiguration
                    {
                        MaxRequestUriLength = 1
                    }
                }
            };

            var processed = await context.ProcessHttpRequestUriValidation().ConfigureAwait(false);

            processed.Should().BeTrue();

            context.Response.Should().NotBeNull();
            context.Response.ResponseObject.Should().BeNull();
        }
Exemplo n.º 4
0
        public async void ReturnsFalseForCancelledRequest()
        {
            var context = new ApiRequestContext
            {
                RequestAborted = new System.Threading.CancellationToken(true)
            };

            var processed = await context.ProcessHttpRequestUriValidation().ConfigureAwait(false);

            processed.Should().BeFalse();

            context.Response.Should().NotBeNull();
            context.Response.ResponseObject.Should().BeNull();
        }