forked from cloudfoundry/cli
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathcredentials_or_json_test.go
140 lines (114 loc) · 3.71 KB
/
credentials_or_json_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
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
package flag_test
import (
"fmt"
"os"
. "code.cloudfoundry.org/cli/command/flag"
flags "github.com/jessevdk/go-flags"
. "github.com/onsi/ginkgo"
. "github.com/onsi/ginkgo/extensions/table"
. "github.com/onsi/gomega"
)
var _ = Describe("CredentialsOrJSON", func() {
var credsOrJSON CredentialsOrJSON
BeforeEach(func() {
credsOrJSON = CredentialsOrJSON{}
})
Describe("default value", func() {
It("is not set", func() {
Expect(credsOrJSON.IsSet).To(BeFalse())
})
It("is empty", func() {
Expect(credsOrJSON.Value).To(BeEmpty())
})
It("does not need to prompt the user for credentials", func() {
Expect(credsOrJSON.UserPromptCredentials).To(BeEmpty())
})
})
// The Complete method is not tested because it shares the same code as
// Path.Complete().
Describe("UnmarshalFlag", func() {
Describe("empty credentials", func() {
BeforeEach(func() {
err := credsOrJSON.UnmarshalFlag("")
Expect(err).NotTo(HaveOccurred())
})
It("is set", func() {
Expect(credsOrJSON.IsSet).To(BeTrue())
})
It("is empty", func() {
Expect(credsOrJSON.Value).To(BeEmpty())
})
It("does not need to prompt the user for credentials", func() {
Expect(credsOrJSON.UserPromptCredentials).To(BeEmpty())
})
})
DescribeTable("when the input is valid JSON",
func(input string) {
err := credsOrJSON.UnmarshalFlag(input)
Expect(err).NotTo(HaveOccurred())
Expect(credsOrJSON.IsSet).To(BeTrue())
Expect(credsOrJSON.UserPromptCredentials).To(BeEmpty())
Expect(credsOrJSON.Value).To(HaveLen(1))
Expect(credsOrJSON.Value).To(HaveKeyWithValue("some", "json"))
},
Entry("valid JSON", `{"some": "json"}`),
Entry("valid JSON in single quotes", `'{"some": "json"}'`),
Entry("valid JSON in double quotes", `"{"some": "json"}"`),
)
Describe("reading JSON from a file", func() {
var path string
AfterEach(func() {
os.Remove(path)
})
When("the file contains valid JSON", func() {
BeforeEach(func() {
path = tempFile(`{"some":"json"}`)
})
It("reads the JSON from the file", func() {
err := credsOrJSON.UnmarshalFlag(path)
Expect(err).NotTo(HaveOccurred())
Expect(credsOrJSON.IsSet).To(BeTrue())
Expect(credsOrJSON.Value).To(HaveLen(1))
Expect(credsOrJSON.Value).To(HaveKeyWithValue("some", "json"))
})
It("does not need to prompt the user for credentials", func() {
Expect(credsOrJSON.UserPromptCredentials).To(BeEmpty())
})
})
When("the file has invalid JSON", func() {
BeforeEach(func() {
path = tempFile(`{"this is":"invalid JSON"`)
})
It("errors with the invalid configuration error", func() {
err := credsOrJSON.UnmarshalFlag(path)
Expect(err).To(Equal(&flags.Error{
Type: flags.ErrRequired,
Message: fmt.Sprintf("The file '%s' contains invalid JSON. Please provide a path to a file containing a valid JSON object.", path),
}))
})
})
})
Describe("prompting the user to enter credentials", func() {
When("there is a credential", func() {
BeforeEach(func() {
err := credsOrJSON.UnmarshalFlag("foo")
Expect(err).NotTo(HaveOccurred())
})
It("says the user must be prompted for a credential", func() {
Expect(credsOrJSON.Value).To(BeEmpty())
Expect(credsOrJSON.UserPromptCredentials).To(ConsistOf("foo"))
})
})
When("there are many credentials", func() {
BeforeEach(func() {
err := credsOrJSON.UnmarshalFlag("foo, bar,baz ,bax moo")
Expect(err).NotTo(HaveOccurred())
})
It("says the user must be prompted for the credential", func() {
Expect(credsOrJSON.Value).To(BeEmpty())
Expect(credsOrJSON.UserPromptCredentials).To(ConsistOf("foo", "bar", "baz", "bax moo"))
})
})
})
})
})