-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathconnect_options_test.go
112 lines (93 loc) · 1.99 KB
/
connect_options_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
105
106
107
108
109
110
111
112
// Copyright (c) 2016 Brandon Buck
package talon_test
import (
. "github.com/bbuck/talon"
. "github.com/onsi/ginkgo"
. "github.com/onsi/gomega"
)
var _ = Describe("ConnectOptions", func() {
Describe("URL", func() {
var (
co ConnectOptions
expected string
)
GeneratesCorrectURL := func() {
It("generates the correct URL", func() {
Ω(co.URL()).Should(Equal(expected))
})
}
Context("with just a host", func() {
BeforeEach(func() {
co = ConnectOptions{
Host: "test.com",
}
expected = "bolt://test.com"
})
GeneratesCorrectURL()
})
Context("with host and port set", func() {
BeforeEach(func() {
co = ConnectOptions{
Host: "test.com",
Port: 3333,
}
expected = "bolt://test.com:3333"
})
GeneratesCorrectURL()
})
Context("with username and host", func() {
BeforeEach(func() {
co = ConnectOptions{
Host: "test.com",
User: "example",
}
expected = "bolt://example@test.com"
})
GeneratesCorrectURL()
})
Context("with username, host and port", func() {
BeforeEach(func() {
co = ConnectOptions{
Host: "test.com",
Port: 3333,
User: "example",
}
expected = "bolt://example@test.com:3333"
})
GeneratesCorrectURL()
})
Context("with username, password and host", func() {
BeforeEach(func() {
co = ConnectOptions{
Host: "test.com",
User: "example",
Pass: "pword",
}
expected = "bolt://example:pword@test.com"
})
GeneratesCorrectURL()
})
Context("with all options", func() {
BeforeEach(func() {
co = ConnectOptions{
Host: "test.com",
Port: 3333,
User: "example",
Pass: "pword",
}
expected = "bolt://example:pword@test.com:3333"
})
GeneratesCorrectURL()
})
Context("with password but no user", func() {
BeforeEach(func() {
co = ConnectOptions{
Host: "test.com",
Pass: "pword",
}
expected = "bolt://test.com"
})
GeneratesCorrectURL()
})
})
})