-
Notifications
You must be signed in to change notification settings - Fork 4
/
Copy pathexample_test.go
104 lines (90 loc) · 3.43 KB
/
example_test.go
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
// Copyright 2019 The Go Cloud Development Kit Authors
//
// Licensed under the Apache License, Version 2.0 (the "License");
// you may not use this file except in compliance with the License.
// You may obtain a copy of the License at
//
// https://www.apache.org/licenses/LICENSE-2.0
//
// Unless required by applicable law or agreed to in writing, software
// distributed under the License is distributed on an "AS IS" BASIS,
// WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
// See the License for the specific language governing permissions and
// limitations under the License.
package mqttpubsub_test
import (
"context"
mqtt "github.com/eclipse/paho.mqtt.golang"
"github.com/filinvadim/go-cloud-pubsub-mqtt"
"gocloud.dev/pubsub"
"log"
)
func ExampleOpenTopic() {
// PRAGMA: This example is used on gocloud.dev; PRAGMA comments adjust how it is shown and can be ignored.
// PRAGMA: On gocloud.dev, hide lines until the next blank line.
ctx := context.Background()
opts := mqtt.NewClientOptions()
opts = opts.AddBroker("mqtt://mqtt.example.com")
opts.ClientID = "exampleClient"
cli := mqtt.NewClient(opts)
token := cli.Connect()
if token.Wait() && token.Error() != nil {
log.Fatal(token.Error())
}
defer cli.Disconnect(0)
topic, err := mqttpubsub.OpenTopic(mqttpubsub.NewPublisher(cli, 0, 0), "example.mysubject", nil)
if err != nil {
log.Fatal(err)
}
defer topic.Shutdown(ctx)
}
func ExampleOpenSubscription() {
// PRAGMA: This example is used on gocloud.dev; PRAGMA comments adjust how it is shown and can be ignored.
// PRAGMA: On gocloud.dev, hide lines until the next blank line.
ctx := context.Background()
opts := mqtt.NewClientOptions()
opts = opts.AddBroker("mqtt://mqtt.example.com")
opts.ClientID = "exampleClient"
cli := mqtt.NewClient(opts)
token := cli.Connect()
if token.Wait() && token.Error() != nil {
log.Fatal(token.Error())
}
defer cli.Disconnect(0)
subscription, err := mqttpubsub.OpenSubscription(
mqttpubsub.NewSubscriber(cli, 0, 0),
"example.mysubject",
nil)
if err != nil {
log.Fatal(err)
}
defer subscription.Shutdown(ctx)
}
func Example_openTopicFromURL() {
// PRAGMA: This example is used on gocloud.dev; PRAGMA comments adjust how it is shown and can be ignored.
// PRAGMA: On gocloud.dev, add a blank import: _ "gocloud.dev/pubsub/mqttpubsub"
// PRAGMA: On gocloud.dev, hide lines until the next blank line.
ctx := context.Background()
// pubsub.OpenTopic creates a *pubsub.Topic from a URL.
// This URL will Dial the MQTT server at the URL in the environment variable
// MQTT_SERVER_URL and send messages with subject "example.mysubject".
topic, err := pubsub.OpenTopic(ctx, "mqtt://example.mysubject")
if err != nil {
log.Fatal(err)
}
defer topic.Shutdown(ctx)
}
func Example_openSubscriptionFromURL() {
// PRAGMA: This example is used on gocloud.dev; PRAGMA comments adjust how it is shown and can be ignored.
// PRAGMA: On gocloud.dev, add a blank import: _ "gocloud.dev/pubsub/mqttpubsub"
// PRAGMA: On gocloud.dev, hide lines until the next blank line.
ctx := context.Background()
// pubsub.OpenSubscription creates a *pubsub.Subscription from a URL.
// This URL will Dial the MQTT server at the URL in the environment variable
// MQTT_SERVER_URL and receive messages with subject "example.mysubject".
subscription, err := pubsub.OpenSubscription(ctx, "mqtt://example.mysubject")
if err != nil {
log.Fatal(err)
}
defer subscription.Shutdown(ctx)
}