// // Copyright The OpenTelemetry Authors // // Licensed under the Apache License, Version 2.0 (the "License"); // you may not use this file except in compliance with the License. // You may obtain a copy of the License at // // http://www.apache.org/licenses/LICENSE-2.0 // // Unless required by applicable law or agreed to in writing, software // distributed under the License is distributed on an "AS IS" BASIS, // WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. // See the License for the specific language governing permissions and // limitations under the License. // #if NETFRAMEWORK using System.Net; using Xunit.Abstractions; namespace IntegrationTests.Helpers; public class TestHttpServer : IDisposable { private readonly ITestOutputHelper _output; private readonly Action _requestHandler; private readonly HttpListener _listener; private readonly Thread _listenerThread; public TestHttpServer(ITestOutputHelper output, Action requestHandler, string host, string sufix = "/") { _output = output; _requestHandler = requestHandler; Port = TcpPortProvider.GetOpenPort(); _listener = new HttpListener(); _listener.Start(); var prefix = new UriBuilder("http", host, Port, sufix).ToString(); // See https://docs.microsoft.com/en-us/dotnet/api/system.net.httplistenerprefixcollection.add?redirectedfrom=MSDN&view=net-6.0#remarks for info about the host value. _listener.Prefixes.Add(prefix); WriteOutput($"Listening on '{prefix}'"); _listenerThread = new Thread(HandleHttpRequests); _listenerThread.Start(); } /// /// Gets the TCP port that this listener is listening on. /// public int Port { get; } public void Dispose() { WriteOutput($"Shutting down"); _listener.Close(); _listenerThread.Join(); } private void HandleHttpRequests() { while (_listener.IsListening) { try { var ctx = _listener.GetContext(); _requestHandler(ctx); } catch (HttpListenerException) { // listener was stopped, // ignore to let the loop end and the method return } catch (ObjectDisposedException) { // the response has been already disposed. } catch (InvalidOperationException) { // this can occur when setting Response.ContentLength64, with the framework claiming that the response has already been submitted // for now ignore, and we'll see if this introduces downstream issues } catch (Exception) when (!_listener.IsListening) { // we don't care about any exception when listener is stopped } catch (Exception ex) { // somethig unexpected happened // log instead of crashing the thread WriteOutput(ex.ToString()); } } } private void WriteOutput(string msg) { const string name = nameof(TestHttpServer); _output.WriteLine($"[{name}]: {msg}"); } } #endif