Esempio n. 1
0
        /// <summary>
        /// Called when a mock request is received. Validates that the request has the
        /// expected parameters.
        /// </summary>
        /// <param name="req">The HttpListenerRequest that represents the mock
        /// request.</param>
        /// <param name="rsp">The HttpListenerResponse instance that will be sent back
        /// for the mock request.</param>
        /// <param name="prm">The list of parameters received in the URL.</param>
        /// <returns>The mocked response.</returns>
        private string ValidateRequest(
            HttpListenerRequest req,
            HttpListenerResponse rsp,
            Dictionary <string, string> prm)
        {
            var content = req.GetContent();

            content.Should().BeEquivalentTo(ExpectedContent);
            return(ValidatedResponse);
        }
        /// <summary>
        /// Call back when incoming request is received
        /// </summary>
        /// <param name="request">incoming request</param>
        /// <param name="response">response to be sent back to invoker</param>
        private void RouteRequest(HttpListenerRequest request, HttpListenerResponse response)
        {
            var content = request.GetContent();

            if (!string.IsNullOrWhiteSpace(request.Headers["Content-Encoding"]) &&
                string.Equals("gzip", request.Headers["Content-Encoding"], StringComparison.OrdinalIgnoreCase))
            {
                content = Decompress(content);
            }

            this.receivedDataItems.AddRange(TelemetryItemFactory.GetTelemetryItems(content));

            //var stringReader = new StringReader(content);
            //var reader = new JsonTextReader(stringReader);

            //var sr = new JsonSerializer();
            //var objectItem = (JArray)sr.Deserialize(reader, typeof(JArray));

            var buff = Encoding.UTF8.GetBytes("<html><body>Hello from HttpListener.</body></html>");

            // Set up the response object
            response.ContentType     = "text/html";
            response.ContentLength64 = buff.Length;
            response.StatusCode      = 200; // HTTP "OK"

            // Write the response.
            var strm = response.OutputStream;

            strm.Write(buff, 0, buff.Length);

            // close the stream.
            strm.Close();


            Trace.TraceInformation(this.listenerUrl + " Request content: " + content);
        }