mirror of
https://github.com/wiremock/WireMock.Net.git
synced 2026-02-17 07:47:42 +01:00
86 lines
2.8 KiB
C#
86 lines
2.8 KiB
C#
using System;
|
|
using System.Collections;
|
|
using System.Collections.Generic;
|
|
using System.Collections.ObjectModel;
|
|
using System.Collections.Specialized;
|
|
using System.Linq;
|
|
using JetBrains.Annotations;
|
|
using WireMock.Logging;
|
|
using WireMock.Matchers;
|
|
using WireMock.Matchers.Request;
|
|
|
|
namespace WireMock.Server
|
|
{
|
|
public partial class FluentMockServer
|
|
{
|
|
/// <summary>
|
|
/// Occurs when [log entries changed].
|
|
/// </summary>
|
|
[PublicAPI]
|
|
public event NotifyCollectionChangedEventHandler LogEntriesChanged
|
|
{
|
|
add => _options.LogEntries.CollectionChanged += value;
|
|
remove => _options.LogEntries.CollectionChanged -= value;
|
|
}
|
|
|
|
/// <summary>
|
|
/// Gets the request logs.
|
|
/// </summary>
|
|
[PublicAPI]
|
|
public IEnumerable<LogEntry> LogEntries => new ReadOnlyCollection<LogEntry>(_options.LogEntries.ToList());
|
|
|
|
/// <summary>
|
|
/// The search log-entries based on matchers.
|
|
/// </summary>
|
|
/// <param name="matchers">The matchers.</param>
|
|
/// <returns>The <see cref="IEnumerable"/>.</returns>
|
|
[PublicAPI]
|
|
public IEnumerable<LogEntry> FindLogEntries([NotNull] params IRequestMatcher[] matchers)
|
|
{
|
|
var results = new Dictionary<LogEntry, RequestMatchResult>();
|
|
|
|
foreach (var log in _options.LogEntries.ToList())
|
|
{
|
|
var requestMatchResult = new RequestMatchResult();
|
|
foreach (var matcher in matchers)
|
|
{
|
|
matcher.GetMatchingScore(log.RequestMessage, requestMatchResult);
|
|
}
|
|
|
|
if (requestMatchResult.AverageTotalScore > MatchScores.AlmostPerfect)
|
|
{
|
|
results.Add(log, requestMatchResult);
|
|
}
|
|
}
|
|
|
|
return new ReadOnlyCollection<LogEntry>(results.OrderBy(x => x.Value).Select(x => x.Key).ToList());
|
|
}
|
|
|
|
/// <summary>
|
|
/// Resets the LogEntries.
|
|
/// </summary>
|
|
[PublicAPI]
|
|
public void ResetLogEntries()
|
|
{
|
|
_options.LogEntries.Clear();
|
|
}
|
|
|
|
/// <summary>
|
|
/// Deletes a LogEntry.
|
|
/// </summary>
|
|
/// <param name="guid">The unique identifier.</param>
|
|
[PublicAPI]
|
|
public bool DeleteLogEntry(Guid guid)
|
|
{
|
|
// Check a logentry exists with the same GUID, if so, remove it.
|
|
var existing = _options.LogEntries.ToList().FirstOrDefault(m => m.Guid == guid);
|
|
if (existing != null)
|
|
{
|
|
_options.LogEntries.Remove(existing);
|
|
return true;
|
|
}
|
|
|
|
return false;
|
|
}
|
|
}
|
|
} |