Esempio n. 1
0
        public RequestMessage(MockHttpClient mock, HttpMethod method, string uri, LambdaExpression headers, LambdaExpression content, Type contentType)
        {
            this.mock  = mock;
            HttpMethod = method;
            RequestUri = uri;
            Headers    = headers;
            Content    = content;

            HeadersValidator = visit(visitor, headers)?.Compile();
            ContentValidator = visit(visitor, content)?.Compile();
            ContentType      = contentType;

            if (deserializers.ContainsKey(contentType))
            {
                Deserializer = deserializers[contentType];
            }
            else
            {
                Deserializer = new Func <SystemHttpRequestMessage, Task <object> >(x => x.Content.ToObjectAsync(contentType));
            }

            LambdaExpression visit(ExpressionVisitor v, LambdaExpression e) => v.Visit(e) as LambdaExpression;
        }
Esempio n. 2
0
        /// <summary>
        /// Specifices a setup for the given <see cref="HttpMethod" /> protocol.
        /// </summary>
        /// <param name="method">The protocol for the setup.</param>
        /// <param name="uri">The URI to match the setup with.</param>
        /// <param name="headers">Lambda predicate that specifics the match on headers.</param>
        /// <param name="content">Lambda predicate that specifies the match on content.</param>
        public ISetup Setup <TBody>(HttpMethod method, string uri, Expression <Func <HttpRequestHeaders, bool> > headers = null, Expression <Func <TBody, bool> > content = null)
        {
            var request = new RequestMessage(this, method, uri, headers, content, typeof(TBody));

            return(MockHttpClient.Setup(this, request));
        }
Esempio n. 3
0
        /// <summary>
        /// Specifices a setup for the given <see cref="HttpMethod" /> protocol.
        /// </summary>
        /// <param name="method">The protocol for the setup.</param>
        /// <param name="uri">The URI to match the setup with.</param>
        /// <param name="headers">Lambda predicate that specifics the match on headers.</param>
        public ISetup Setup(HttpMethod method, string uri, Expression <Func <HttpRequestHeaders, bool> > headers = null)
        {
            var request = new RequestMessage(this, method, uri, headers, null, typeof(object));

            return(MockHttpClient.Setup(this, request));
        }