mirror of
https://github.com/wiremock/WireMock.Net.git
synced 2026-08-11 14:19:22 +02:00
* Fix: Fully respect configured custom admin path * Add tests for custom admin path behaviour * Potential fix for pull request finding Co-authored-by: Copilot Autofix powered by AI <175728472+Copilot@users.noreply.github.com> --------- Co-authored-by: Peter Benko <peter.benko@gmail.com> Co-authored-by: copilot-swe-agent[bot] <198982749+Copilot@users.noreply.github.com> Co-authored-by: Stef Heyenrath <Stef.Heyenrath@gmail.com> Co-authored-by: Copilot Autofix powered by AI <175728472+Copilot@users.noreply.github.com>
119 lines
3.9 KiB
C#
119 lines
3.9 KiB
C#
// Copyright © WireMock.Net
|
|
|
|
using System.Diagnostics;
|
|
using WireMock.Logging;
|
|
using WireMock.Owin.ActivityTracing;
|
|
using WireMock.Serialization;
|
|
using WireMock.Util;
|
|
|
|
namespace WireMock.Owin;
|
|
|
|
internal class WireMockMiddlewareLogger(
|
|
IWireMockMiddlewareOptions options,
|
|
LogEntryMapper logEntryMapper,
|
|
IGuidUtils guidUtils,
|
|
IAdminPaths adminPaths,
|
|
IDateTimeUtils dateTimeUtils
|
|
) : IWireMockMiddlewareLogger
|
|
{
|
|
public void LogRequestAndResponse(bool logRequest, RequestMessage request, IResponseMessage? response, MappingMatcherResult? match, MappingMatcherResult? partialMatch, Activity? activity)
|
|
{
|
|
var mapping = match?.Mapping;
|
|
var partialMapping = partialMatch?.Mapping;
|
|
|
|
var logEntry = new LogEntry
|
|
{
|
|
Guid = guidUtils.NewGuid(),
|
|
RequestMessage = request,
|
|
ResponseMessage = response,
|
|
|
|
MappingGuid = mapping?.Guid,
|
|
MappingTitle = mapping?.Title,
|
|
RequestMatchResult = match?.RequestMatchResult,
|
|
|
|
PartialMappingGuid = partialMapping?.Guid,
|
|
PartialMappingTitle = partialMapping?.Title,
|
|
PartialMatchResult = partialMatch?.RequestMatchResult
|
|
};
|
|
|
|
WireMockActivitySource.EnrichWithLogEntry(activity, logEntry, options.ActivityTracingOptions);
|
|
activity?.Dispose();
|
|
|
|
LogLogEntry(logEntry, logRequest);
|
|
|
|
try
|
|
{
|
|
if (options.SaveUnmatchedRequests == true && match?.RequestMatchResult is not { IsPerfectMatch: true })
|
|
{
|
|
var filename = $"{logEntry.Guid}.LogEntry.json";
|
|
options.FileSystemHandler?.WriteUnmatchedRequest(filename, options.DefaultJsonSerializer.Serialize(logEntry));
|
|
}
|
|
}
|
|
catch
|
|
{
|
|
// Empty catch
|
|
}
|
|
}
|
|
|
|
public void LogLogEntry(LogEntry entry, bool addRequest)
|
|
{
|
|
var isAdminRequest = adminPaths.Includes(entry.RequestMessage?.Path);
|
|
options.Logger.DebugRequestResponse(logEntryMapper.Map(entry), isAdminRequest);
|
|
|
|
// If addRequest is set to true and MaxRequestLogCount is null or does have a value greater than 0, try to add a new request log.
|
|
if (addRequest && options.MaxRequestLogCount is null or > 0)
|
|
{
|
|
TryAddLogEntry(entry);
|
|
}
|
|
|
|
|
|
// In case MaxRequestLogCount has a value greater than 0, try to delete existing request logs based on the count.
|
|
if (options.MaxRequestLogCount is > 0)
|
|
{
|
|
var logEntries = options.LogEntries.ToList();
|
|
|
|
foreach (var logEntry in logEntries
|
|
.OrderBy(le => le.RequestMessage?.DateTime ?? le.ResponseMessage?.DateTime)
|
|
.Take(logEntries.Count - options.MaxRequestLogCount.Value))
|
|
{
|
|
TryRemoveLogEntry(logEntry);
|
|
}
|
|
}
|
|
|
|
// In case RequestLogExpirationDuration has a value greater than 0, try to delete existing request logs based on the date.
|
|
if (options.RequestLogExpirationDuration is > 0)
|
|
{
|
|
var logEntries = options.LogEntries.ToList();
|
|
|
|
var checkTime = dateTimeUtils.UtcNow.AddHours(-options.RequestLogExpirationDuration.Value);
|
|
foreach (var logEntry in logEntries.Where(le => le.RequestMessage?.DateTime < checkTime || le.ResponseMessage?.DateTime < checkTime))
|
|
{
|
|
TryRemoveLogEntry(logEntry);
|
|
}
|
|
}
|
|
}
|
|
|
|
private void TryAddLogEntry(LogEntry logEntry)
|
|
{
|
|
try
|
|
{
|
|
options.LogEntries.Add(logEntry);
|
|
}
|
|
catch
|
|
{
|
|
// Ignore exception (can happen during stress testing)
|
|
}
|
|
}
|
|
|
|
private void TryRemoveLogEntry(LogEntry logEntry)
|
|
{
|
|
try
|
|
{
|
|
options.LogEntries.Remove(logEntry);
|
|
}
|
|
catch
|
|
{
|
|
// Ignore exception (can happen during stress testing)
|
|
}
|
|
}
|
|
} |