Skip to content

Commit 5769c81

Browse files
committed
update samples, comment out tests that do not run against mosquitto
Change-Id: I3c4cecb8e62c23ecd037d99cc2e72833693ed60d Signed-off-by: Seth Hoenig <seth.a.hoenig@gmail.com>
1 parent 723490b commit 5769c81

9 files changed

+63
-27
lines changed

fvt/mosquitto.cfg

+3-5
Original file line numberDiff line numberDiff line change
@@ -12,8 +12,6 @@ listener 17002
1212
listener 17003
1313
listener 17004
1414

15-
# These certs are not supported by mosquitto (SSL 1.1+ required)
16-
17-
capath ../samples/samplecerts
18-
certfile ../samples/samplecerts/server-crt.pem
19-
keyfile ../samples/samplecerts/server-key.pem
15+
#capath ../samples/samplecerts
16+
#certfile ../samples/samplecerts/server-crt.pem
17+
#keyfile ../samples/samplecerts/server-key.pem

fvt_client_test.go

+4-2
Original file line numberDiff line numberDiff line change
@@ -37,6 +37,7 @@ func Test_Start(t *testing.T) {
3737
c.Disconnect(250)
3838
}
3939

40+
/* uncomment this if you have connection policy disallowing FailClientID
4041
func Test_InvalidConnRc(t *testing.T) {
4142
ops := NewClientOptions().SetClientId("FailClientID").
4243
SetBroker("tcp://" + FVT_IP + ":17003").
@@ -49,6 +50,7 @@ func Test_InvalidConnRc(t *testing.T) {
4950
}
5051
c.Disconnect(250)
5152
}
53+
*/
5254

5355
// Helper function for Test_Start_Ssl
5456
func NewTlsConfig() *tls.Config {
@@ -72,8 +74,7 @@ func NewTlsConfig() *tls.Config {
7274
}
7375
}
7476

75-
// temporarily disabled b/c Seth doesn't know
76-
// how to configure IMA for SSL
77+
/* uncomment this if you have ssl setup
7778
func Test_Start_Ssl(t *testing.T) {
7879
tlsconfig := NewTlsConfig()
7980
ops := NewClientOptions().SetClientId("StartSsl").
@@ -90,6 +91,7 @@ func Test_Start_Ssl(t *testing.T) {
9091
9192
c.Disconnect(250)
9293
}
94+
*/
9395

9496
func Test_Publish_1(t *testing.T) {
9597
ops := NewClientOptions()

samples/custom_store.go

+3-1
Original file line numberDiff line numberDiff line change
@@ -80,7 +80,9 @@ func main() {
8080
if err != nil {
8181
panic(err)
8282
}
83-
c.StartSubscription(callback, "/go-mqtt/sample", MQTT.QOS_ZERO)
83+
84+
filter, _ := MQTT.NewTopicFilter("/go-mqtt/sample", 0)
85+
c.StartSubscription(callback, filter)
8486

8587
for i := 0; i < 5; i++ {
8688
text := fmt.Sprintf("this is msg #%d!", i)

samples/reconnect.go

+16-5
Original file line numberDiff line numberDiff line change
@@ -14,10 +14,14 @@
1414

1515
package main
1616

17-
import "fmt"
18-
import "flag"
19-
import "time"
20-
import MQTT "git.eclipse.org/gitroot/paho/org.eclipse.paho.mqtt.golang.git"
17+
import (
18+
"flag"
19+
"fmt"
20+
"os"
21+
"time"
22+
23+
MQTT "git.eclipse.org/gitroot/paho/org.eclipse.paho.mqtt.golang.git"
24+
)
2125

2226
/*
2327
Options:
@@ -159,7 +163,14 @@ func main() {
159163
panic(err)
160164
}
161165
connected = true
162-
client.StartSubscription(nil, *topic, MQTT.QoS(*qos))
166+
167+
filter, e := MQTT.NewTopicFilter(*topic, byte(*qos))
168+
if e != nil {
169+
fmt.Println(e)
170+
os.Exit(1)
171+
}
172+
173+
client.StartSubscription(nil, filter)
163174

164175
for num_received < *num {
165176
reconnect(client, opts)

samples/routing.go

+8-4
Original file line numberDiff line numberDiff line change
@@ -28,8 +28,9 @@ package main
2828

2929
import (
3030
"fmt"
31-
MQTT "git.eclipse.org/gitroot/paho/org.eclipse.paho.mqtt.golang.git"
3231
"os"
32+
33+
MQTT "git.eclipse.org/gitroot/paho/org.eclipse.paho.mqtt.golang.git"
3334
)
3435

3536
var broker_load = make(chan bool)
@@ -68,21 +69,24 @@ func main() {
6869
panic(err)
6970
}
7071

71-
if receipt, err := c.StartSubscription(brokerLoadHandler, "$SYS/broker/load/#", MQTT.QOS_ZERO); err != nil {
72+
loadFilter, _ := MQTT.NewTopicFilter("$SYS/broker/load/#", 0)
73+
if receipt, err := c.StartSubscription(brokerLoadHandler, loadFilter); err != nil {
7274
fmt.Println(err)
7375
os.Exit(1)
7476
} else {
7577
<-receipt
7678
}
7779

78-
if receipt, err := c.StartSubscription(brokerConnectionHandler, "$SYS/broker/connection/#", MQTT.QOS_ZERO); err != nil {
80+
connectionFilter, _ := MQTT.NewTopicFilter("$SYS/broker/connection/#", 0)
81+
if receipt, err := c.StartSubscription(brokerConnectionHandler, connectionFilter); err != nil {
7982
fmt.Println(err)
8083
os.Exit(1)
8184
} else {
8285
<-receipt
8386
}
8487

85-
if receipt, err := c.StartSubscription(brokerClientsHandler, "$SYS/broker/clients/#", MQTT.QOS_ZERO); err != nil {
88+
clientsFilter, _ := MQTT.NewTopicFilter("$SYS/broker/clients/#", 0)
89+
if receipt, err := c.StartSubscription(brokerClientsHandler, clientsFilter); err != nil {
8690
fmt.Println(err)
8791
os.Exit(1)
8892
} else {

samples/sample.go

+15-4
Original file line numberDiff line numberDiff line change
@@ -14,9 +14,13 @@
1414

1515
package main
1616

17-
import "fmt"
18-
import "flag"
19-
import MQTT "git.eclipse.org/gitroot/paho/org.eclipse.paho.mqtt.golang.git"
17+
import (
18+
"flag"
19+
"fmt"
20+
"os"
21+
22+
MQTT "git.eclipse.org/gitroot/paho/org.eclipse.paho.mqtt.golang.git"
23+
)
2024

2125
/*
2226
Options:
@@ -126,7 +130,14 @@ func main() {
126130
if err != nil {
127131
panic(err)
128132
}
129-
client.StartSubscription(nil, *topic, MQTT.QoS(*qos))
133+
134+
filter, e := MQTT.NewTopicFilter(*topic, byte(*qos))
135+
if e != nil {
136+
fmt.Println(e)
137+
os.Exit(1)
138+
}
139+
140+
client.StartSubscription(nil, filter)
130141

131142
for num_received < *num {
132143
incoming := <-choke

samples/simple.go

+4-2
Original file line numberDiff line numberDiff line change
@@ -16,9 +16,10 @@ package main
1616

1717
import (
1818
"fmt"
19-
MQTT "git.eclipse.org/gitroot/paho/org.eclipse.paho.mqtt.golang.git"
2019
"os"
2120
"time"
21+
22+
MQTT "git.eclipse.org/gitroot/paho/org.eclipse.paho.mqtt.golang.git"
2223
)
2324

2425
var f MQTT.MessageHandler = func(msg MQTT.Message) {
@@ -37,7 +38,8 @@ func main() {
3738
panic(err)
3839
}
3940

40-
if receipt, err := c.StartSubscription(nil, "/go-mqtt/sample", MQTT.QOS_ZERO); err != nil {
41+
filter, _ := MQTT.NewTopicFilter("/go-mqtt/sample", 0)
42+
if receipt, err := c.StartSubscription(nil, filter); err != nil {
4143
fmt.Println(err)
4244
os.Exit(1)
4345
} else {

samples/ssl.go

+2-1
Original file line numberDiff line numberDiff line change
@@ -109,7 +109,8 @@ func main() {
109109
panic(err)
110110
}
111111

112-
c.StartSubscription(nil, "/go-mqtt/sample", MQTT.QOS_ZERO)
112+
filter, _ := MQTT.NewTopicFilter("/go-mqtt/sample", 0)
113+
c.StartSubscription(nil, filter)
113114

114115
i := 0
115116
for _ = range time.Tick(time.Duration(1) * time.Second) {

samples/stdoutsub.go

+8-3
Original file line numberDiff line numberDiff line change
@@ -22,9 +22,9 @@ import (
2222
"strconv"
2323
"syscall"
2424
"time"
25-
)
2625

27-
import MQTT "git.eclipse.org/gitroot/paho/org.eclipse.paho.mqtt.golang.git"
26+
MQTT "git.eclipse.org/gitroot/paho/org.eclipse.paho.mqtt.golang.git"
27+
)
2828

2929
func onMessageReceived(message MQTT.Message) {
3030
fmt.Printf("Received message on topic: %s\n", message.Topic())
@@ -67,7 +67,12 @@ func main() {
6767
fmt.Printf("Connected to %s\n", *server)
6868
}
6969

70-
client.StartSubscription(onMessageReceived, *topic, MQTT.QoS(*qos))
70+
filter, e := MQTT.NewTopicFilter(*topic, byte(*qos))
71+
if e != nil {
72+
fmt.Println(e)
73+
os.Exit(1)
74+
}
75+
client.StartSubscription(onMessageReceived, filter)
7176

7277
for {
7378
time.Sleep(1 * time.Second)

0 commit comments

Comments
 (0)