|
123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155 |
- using System;
- using System.Collections.Generic;
- using System.Linq;
- using System.Threading.Tasks;
- using MQTTnet.Client;
- using MQTTnet.Client.Options;
- using MQTTnet.Diagnostics;
- using MQTTnet.Server;
-
- namespace MQTTnet.Tests.Mockups
- {
- public class TestEnvironment : IDisposable
- {
- private readonly MqttFactory _mqttFactory = new MqttFactory();
- private readonly List<IMqttClient> _clients = new List<IMqttClient>();
- private readonly IMqttNetLogger _serverLogger = new MqttNetLogger("server");
- private readonly IMqttNetLogger _clientLogger = new MqttNetLogger("client");
-
- private readonly List<string> _serverErrors = new List<string>();
- private readonly List<string> _clientErrors = new List<string>();
-
- private readonly List<Exception> _exceptions = new List<Exception>();
-
- public IMqttServer Server { get; private set; }
-
- public bool IgnoreClientLogErrors { get; set; }
-
- public bool IgnoreServerLogErrors { get; set; }
-
- public int ServerPort { get; set; } = 1888;
-
- public IMqttNetLogger ServerLogger => _serverLogger;
-
- public IMqttNetLogger ClientLogger => _clientLogger;
-
- public TestEnvironment()
- {
- _serverLogger.LogMessagePublished += (s, e) =>
- {
- if (e.TraceMessage.Level == MqttNetLogLevel.Error)
- {
- lock (_serverErrors)
- {
- _serverErrors.Add(e.TraceMessage.ToString());
- }
- }
- };
-
- _clientLogger.LogMessagePublished += (s, e) =>
- {
- lock (_clientErrors)
- {
- if (e.TraceMessage.Level == MqttNetLogLevel.Error)
- {
- _clientErrors.Add(e.TraceMessage.ToString());
- }
- }
- };
- }
-
- public IMqttClient CreateClient()
- {
- var client = _mqttFactory.CreateMqttClient(_clientLogger);
- _clients.Add(client);
- return client;
- }
-
- public Task<IMqttServer> StartServerAsync()
- {
- return StartServerAsync(new MqttServerOptionsBuilder());
- }
-
- public async Task<IMqttServer> StartServerAsync(MqttServerOptionsBuilder options)
- {
- if (Server != null)
- {
- throw new InvalidOperationException("Server already started.");
- }
-
- Server = _mqttFactory.CreateMqttServer(_serverLogger);
- await Server.StartAsync(options.WithDefaultEndpointPort(ServerPort).Build());
-
- return Server;
- }
-
- public Task<IMqttClient> ConnectClientAsync()
- {
- return ConnectClientAsync(new MqttClientOptionsBuilder());
- }
-
- public async Task<IMqttClient> ConnectClientAsync(MqttClientOptionsBuilder options)
- {
- if (options == null) throw new ArgumentNullException(nameof(options));
-
- var client = CreateClient();
- await client.ConnectAsync(options.WithTcpServer("localhost", ServerPort).Build());
-
- return client;
- }
-
- public async Task<IMqttClient> ConnectClientAsync(IMqttClientOptions options)
- {
- if (options == null) throw new ArgumentNullException(nameof(options));
-
- var client = CreateClient();
- await client.ConnectAsync(options);
-
- return client;
- }
-
- public void ThrowIfLogErrors()
- {
- lock (_serverErrors)
- {
- if (!IgnoreServerLogErrors && _serverErrors.Count > 0)
- {
- throw new Exception($"Server had {_serverErrors.Count} errors (${string.Join(Environment.NewLine, _serverErrors)}).");
- }
- }
-
- lock (_clientErrors)
- {
- if (!IgnoreClientLogErrors && _clientErrors.Count > 0)
- {
- throw new Exception($"Client(s) had {_clientErrors.Count} errors (${string.Join(Environment.NewLine, _clientErrors)}).");
- }
- }
- }
-
- public void Dispose()
- {
- foreach (var mqttClient in _clients)
- {
- mqttClient?.Dispose();
- }
-
- Server?.StopAsync().GetAwaiter().GetResult();
-
- ThrowIfLogErrors();
-
- if (_exceptions.Any())
- {
- throw new Exception($"{_exceptions.Count} exceptions tracked.\r\n" + string.Join(Environment.NewLine, _exceptions));
- }
- }
-
- public void TrackException(Exception exception)
- {
- lock (_exceptions)
- {
- _exceptions.Add(exception);
- }
- }
- }
- }
|