-
Notifications
You must be signed in to change notification settings - Fork 0
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
- Loading branch information
1 parent
9db46f2
commit 8783628
Showing
13 changed files
with
151 additions
and
132 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,5 +1,5 @@ | ||
FROM alpine:latest | ||
WORKDIR /root | ||
COPY ./MqttClientTestTool_v1.5.5_Linux64 ./mqttclienttesttool | ||
RUN chmod +x ./mqttclienttesttool | ||
ENTRYPOINT ["./mqttclienttesttool"] | ||
COPY ./MQTTDeviceTestingTool ./MQTTDeviceTestingTool | ||
RUN chmod +x ./MQTTDeviceTestingTool | ||
ENTRYPOINT ["./MQTTDeviceTestingTool"] |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,15 +1,15 @@ | ||
[Desktop Entry] | ||
Type=Application | ||
Version=1.0 | ||
Name=MqttClientTestTool | ||
GenericName=Mqtt Client Test Tool | ||
Version=1.5.5 | ||
Name=MQTTDeviceTestingTool | ||
GenericName=MQTT Device Testing Tool | ||
GenericName[zh_CN]=MQTT 客户端测试工具 | ||
GenericName[zh_TW]=MQTT 客戶端測試工具 | ||
Comment=Mqtt Client Test Tool | ||
Comment=MQTT Device Testing Tool | ||
Comment[zh_CN]=这个工具可以帮助您测试设备的 MQTT 连接的稳定性。 | ||
Comment[zh_TW]=這個工具可以幫助您測試裝置的 MQTT 連線的穩定性。 | ||
Icon=icon.png | ||
Exec=MqttClientTestTool_v1.5.5_Linux64 | ||
Exec=MQTTDeviceTestingTool | ||
Terminal=true | ||
Categories=Application;Network; | ||
Keywords=mqtt; |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,6 +1,5 @@ | ||
unzip MqttClientTestTool_v1.5.5_Linux64.zip | ||
docker stop mqttclienttesttool | ||
docker rm mqttclienttesttool | ||
docker rmi mqttclienttesttool | ||
docker build -t mqttclienttesttool . | ||
docker run -it -p 1883:1883 --name mqttclienttesttool -d mqttclienttesttool | ||
docker stop MQTTDeviceTestingTool | ||
docker rm MQTTDeviceTestingTool | ||
docker rmi MQTTDeviceTestingTool | ||
docker build -t MQTTDeviceTestingTool . | ||
docker run -it -p 1883:1883 --name MQTTDeviceTestingTool -d MQTTDeviceTestingTool |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,28 +1,25 @@ | ||
module github.com/tongdysoft/mqtt-test-server | ||
module github.com/tongdysoft/MQTTDeviceTestingTool | ||
|
||
go 1.21 | ||
|
||
toolchain go1.21.5 | ||
go 1.22.3 | ||
|
||
require ( | ||
github.com/cloudfoundry/jibber_jabber v0.0.0-20151120183258-bcc4c8345a21 | ||
github.com/logrusorgru/aurora v2.0.3+incompatible | ||
github.com/mochi-co/mqtt v1.3.2 | ||
) | ||
|
||
require ( | ||
github.com/cloudfoundry/jibber_jabber v0.0.0-20151120183258-bcc4c8345a21 // indirect | ||
github.com/mattn/go-isatty v0.0.20 // indirect | ||
golang.org/x/sys v0.15.0 // indirect | ||
github.com/onsi/ginkgo v1.16.5 // indirect | ||
github.com/onsi/gomega v1.33.1 // indirect | ||
golang.org/x/sys v0.20.0 // indirect | ||
) | ||
|
||
require ( | ||
github.com/akavel/rsrc v0.10.2 // indirect | ||
github.com/fatih/color v1.16.0 | ||
github.com/fatih/color v1.17.0 | ||
github.com/gorilla/websocket v1.5.1 // indirect | ||
github.com/josephspurrier/goversioninfo v1.4.0 // indirect | ||
github.com/mattn/go-colorable v0.1.13 | ||
github.com/mochi-mqtt/server/v2 v2.4.4 | ||
github.com/mattn/go-colorable v0.1.13 // indirect | ||
github.com/mochi-mqtt/server/v2 v2.6.4 | ||
github.com/rs/xid v1.5.0 // indirect | ||
golang.org/x/net v0.19.0 // indirect | ||
golang.org/x/net v0.25.0 // indirect | ||
gopkg.in/yaml.v3 v3.0.1 // indirect | ||
) |
Oops, something went wrong.