|
12345678910111213141516171819202122232425262728293031323334353637383940414243444546474849505152535455565758596061626364656667686970717273747576 |
- using BenchmarkDotNet.Attributes;
- using MQTTnet.Client;
-
-
- using MQTTnet.AspNetCore;
-
- using Microsoft.AspNetCore;
- using Microsoft.AspNetCore.Hosting;
- using MQTTnet.Server;
- using MQTTnet.Diagnostics;
- using MQTTnet.AspNetCore.Client;
-
- namespace MQTTnet.Benchmarks
- {
- [MemoryDiagnoser]
- public class MessageProcessingMqttConnectionContextBenchmark
- {
- private IWebHost _host;
- private IMqttClient _mqttClient;
- private MqttApplicationMessage _message;
-
- [GlobalSetup]
- public void Setup()
- {
- _host = WebHost.CreateDefaultBuilder()
- .UseKestrel(o => o.ListenAnyIP(1883, l => l.UseMqtt()))
- .ConfigureServices(services => {
- var mqttServerOptions = new MqttServerOptionsBuilder()
- .WithoutDefaultEndpoint()
- .Build();
- services
- .AddHostedMqttServer(mqttServerOptions)
- .AddMqttConnectionHandler();
- })
- .Configure(app => {
- app.UseMqttServer(s => {
-
- });
- })
- .Build();
-
- var factory = new MqttFactory();
- _mqttClient = factory.CreateMqttClient(new MqttNetLogger(), new MqttClientConnectionContextFactory());
-
- _host.StartAsync().GetAwaiter().GetResult();
-
- var clientOptions = new MqttClientOptionsBuilder()
- .WithTcpServer("localhost").Build();
-
- _mqttClient.ConnectAsync(clientOptions).GetAwaiter().GetResult();
-
- _message = new MqttApplicationMessageBuilder()
- .WithTopic("A")
- .Build();
- }
-
- [GlobalCleanup]
- public void Cleanup()
- {
- _mqttClient.DisconnectAsync().GetAwaiter().GetResult();
- _mqttClient.Dispose();
-
- _host.StopAsync().GetAwaiter().GetResult();
- _host.Dispose();
- }
-
- [Benchmark]
- public void Send_10000_Messages()
- {
- for (var i = 0; i < 10000; i++)
- {
- _mqttClient.PublishAsync(_message).GetAwaiter().GetResult();
- }
- }
- }
- }
|