forked from valkey-io/valkey-glide
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathconnection_management_cluster_commands_test.go
79 lines (66 loc) · 2.09 KB
/
connection_management_cluster_commands_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
// Copyright Valkey GLIDE Project Contributors - SPDX Identifier: Apache-2.0
package api
import (
"fmt"
"github.com/valkey-io/valkey-glide/go/api/config"
"github.com/valkey-io/valkey-glide/go/api/options"
)
func ExampleGlideClusterClient_Ping() {
var client *GlideClusterClient = getExampleGlideClusterClient() // example helper function
result, err := client.Ping()
if err != nil {
fmt.Println("Glide example failed with an error: ", err)
}
fmt.Println(result)
// Output: PONG
}
func ExampleGlideClusterClient_PingWithOptions() {
var client *GlideClusterClient = getExampleGlideClusterClient() // example helper function
options := options.ClusterPingOptions{
PingOptions: &options.PingOptions{
Message: "hello",
},
RouteOption: nil,
}
result, err := client.PingWithOptions(options)
if err != nil {
fmt.Println("Glide example failed with an error: ", err)
}
fmt.Println(result)
// Output: hello
}
func ExampleGlideClusterClient_Echo() {
var client *GlideClusterClient = getExampleGlideClusterClient() // example helper function
result, err := client.Echo("Hello")
if err != nil {
fmt.Println("Glide example failed with an error: ", err)
}
fmt.Println(result)
// Output: {Hello false}
}
func ExampleGlideClusterClient_EchoWithOptions() {
var client *GlideClusterClient = getExampleGlideClusterClient() // example helper function
opts := options.ClusterEchoOptions{
EchoOptions: &options.EchoOptions{
Message: "Hello World",
},
RouteOption: &options.RouteOption{Route: nil},
}
result, err := client.EchoWithOptions(opts)
if err != nil {
fmt.Println("Glide example failed with an error: ", err)
}
fmt.Println(result.singleValue)
// Output: Hello World
}
func ExampleGlideClusterClient_ClientGetName() {
var client *GlideClusterClient = getExampleGlideClusterClient() // example helper function
route := config.Route(config.RandomRoute)
opts := options.RouteOption{Route: route}
result, err := client.ClientGetNameWithOptions(opts)
if err != nil {
fmt.Println("Glide example failed with an error: ", err)
}
fmt.Println(result.singleValue)
// Output: ConnectionName
}