|
123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263 |
- using System;
- using System.Threading.Tasks;
- using MQTTnet.Core.Adapter;
- using MQTTnet.Core.Server;
- using MQTTnet.Core.Client;
-
- namespace MQTTnet.Core.Tests
- {
- public class TestMqttServerAdapter : IMqttServerAdapter
- {
- public event Action<IMqttCommunicationAdapter> ClientAccepted;
-
- public async Task<MqttClient> ConnectTestClient(IMqttServer server, string clientId, MqttApplicationMessage willMessage = null)
- {
- var adapterA = new TestMqttCommunicationAdapter();
- var adapterB = new TestMqttCommunicationAdapter();
- adapterA.Partner = adapterB;
- adapterB.Partner = adapterA;
-
- var client = new MqttClient(new MqttCommunicationAdapterFactory(adapterA));
- var connected = WaitForClientToConnect(server, clientId);
-
- FireClientAcceptedEvent(adapterB);
- await client.ConnectAsync(new MqttClientTcpOptions { ClientId = clientId, WillMessage = willMessage });
- await connected;
-
- return client;
- }
-
- private static Task WaitForClientToConnect(IMqttServer s, string clientId)
- {
- var tcs = new TaskCompletionSource<object>();
-
- void Handler(object sender, MqttClientConnectedEventArgs args)
- {
- if (args.Client.ClientId == clientId)
- {
- s.ClientConnected -= Handler;
- tcs.SetResult(null);
- }
- }
-
- s.ClientConnected += Handler;
-
- return tcs.Task;
- }
-
- private void FireClientAcceptedEvent(IMqttCommunicationAdapter adapter)
- {
- ClientAccepted?.Invoke(adapter);
- }
-
- public Task StartAsync(MqttServerOptions options)
- {
- return Task.FromResult(0);
- }
-
- public Task StopAsync()
- {
- return Task.FromResult(0);
- }
- }
- }
|