Example #1
0
 public void Should_build_response_with_status_code()
 {
     // given
     var response = new HttpResponse(404, "NOT FOUND");
     // when
     var textResponse = response.ToString();
     // then
     Check.That(textResponse).StartsWith("HTTP/1.1 404");
 }
Example #2
0
 public void Should_build_response_with_headers()
 {
     // given
     var response = new HttpResponse(404, "NOT FOUND");
     response.AddHeader("DummyHeader", "DummyValue");
     // when
     var textResponse = response.ToString();
     // then
     Check.That(textResponse).Contains("DummyHeader: DummyValue");
 }
Example #3
0
 private static HttpServer BuildServer(int port, string content)
 {
     return new HttpServer("127.0.0.1", port, ctx =>
     {
         var response = new HttpResponse(200, "OK");
         response.AddHeader("Content-Type", "text/html; charset=utf-8");
         response.AddHeader("Connection", "close");
         response.AddHeader("Date", "Sun, 27 Sep 2015 20:19:46 GMT");
         response.Content = content;
         ctx.ResponseChannel.Send(response, CancellationToken.None);
     });
 }
Example #4
0
        public virtual IEventChannel Create(string host, int port, int bufferSize)
        {
            var channel = new MulticastChannel(bufferSize);

            var jsTemplate = GetContent(Assembly.GetExecutingAssembly().GetManifestResourceStream("BrowserLog.BrowserLog.js"));
            var htmlTemplate = GetContent(Assembly.GetExecutingAssembly().GetManifestResourceStream("BrowserLog.homepage.html"));
            
            var html = htmlTemplate.Replace("HOST", Dns.GetHostName()).Replace("PORT", port.ToString());

            Action<HttpContext> handler = ctx =>
            {
                var httpResponse = new HttpResponse(200, "OK");
                if (ctx.HttpRequest.Uri == "/")
                {
                    httpResponse.AddHeader("Content-Type", "text/html");
                    httpResponse.AddHeader("Connection", "close");
                    httpResponse.Content = html;
                    ctx.ResponseChannel.Send(httpResponse, ctx.Token).ContinueWith(t => ctx.ResponseChannel.Close());
                } 
                else if (ctx.HttpRequest.Uri.Contains(".js"))
                {
                    var js = jsTemplate.Replace("URL_QUERY", ctx.HttpRequest.Uri);

                    httpResponse.AddHeader("Content-Type", "text/javascript");
                    httpResponse.AddHeader("Connection", "close");
                    httpResponse.Content = js;
                    ctx.ResponseChannel.Send(httpResponse, ctx.Token).ContinueWith(t => ctx.ResponseChannel.Close());
                }
                else
                {
                    httpResponse.AddHeader("Content-Type", "text/event-stream");
                    httpResponse.AddHeader("Cache-Control", "no-cache");
                    httpResponse.AddHeader("Connection", "keep-alive");
                    httpResponse.AddHeader("Access-Control-Allow-Origin", "*");
                    ctx.ResponseChannel.Send(httpResponse, ctx.Token)
                        .ContinueWith(t =>
                        {
                            ctx.ResponseChannel.Send(new ServerSentEvent("INFO",
                                "Connected successfully on LOG stream from " + host + ":" + port), ctx.Token);
                            channel.AddChannel(ctx.ResponseChannel, ctx.Token);
                        });      
                }
            };
            var httpServer = new HttpServer(host, port, handler);
            channel.AttachServer(httpServer);
            httpServer.Run();
            return channel;
        }