forked from cloudfoundry/cli
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathresources_test.go
35 lines (28 loc) · 853 Bytes
/
resources_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
package uaa_test
import (
. "code.cloudfoundry.org/cli/api/uaa"
"code.cloudfoundry.org/cli/api/uaa/uaafakes"
. "github.com/onsi/ginkgo"
. "github.com/onsi/gomega"
)
var _ = Describe("SetupResources", func() {
var (
client *Client
fakeConfig *uaafakes.FakeConfig
setupResourcesErr error
)
BeforeEach(func() {
fakeConfig = NewTestConfig()
client = NewClient(fakeConfig)
})
JustBeforeEach(func() {
setupResourcesErr = client.SetupResources(uaaServer.URL(), server.URL())
})
It("populates client.info", func() {
Expect(setupResourcesErr).ToNot(HaveOccurred())
Expect(client.Info.Links.UAA).To(Equal(uaaServer.URL()))
Expect(client.Info.Links.Login).To(Equal(server.URL()))
Expect(fakeConfig.SetUAAEndpointCallCount()).To(Equal(1))
Expect(fakeConfig.SetUAAEndpointArgsForCall(0)).To(Equal(uaaServer.URL()))
})
})