forked from cloudfoundry/cli
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathccv3_suite_test.go
66 lines (53 loc) · 1.39 KB
/
ccv3_suite_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
package ccv3_test
import (
"bytes"
"log"
"testing"
. "code.cloudfoundry.org/cli/api/cloudcontroller/ccv3"
"code.cloudfoundry.org/cli/api/cloudcontroller/ccv3/ccv3fakes"
. "github.com/onsi/ginkgo"
. "github.com/onsi/gomega"
. "github.com/onsi/gomega/ghttp"
)
func TestCcv3(t *testing.T) {
RegisterFailHandler(Fail)
RunSpecs(t, "Cloud Controller V3 Suite")
}
var server *Server
var _ = BeforeEach(func() {
server = NewTLSServer()
// Suppresses ginkgo server logs
server.HTTPTestServer.Config.ErrorLog = log.New(&bytes.Buffer{}, "", 0)
})
var _ = AfterEach(func() {
server.Close()
})
func NewFakeRequesterTestClient(requester Requester) (*Client, *ccv3fakes.FakeClock) {
var client *Client
fakeClock := new(ccv3fakes.FakeClock)
client = TestClient(
Config{AppName: "CF CLI API V3 Test", AppVersion: "Unknown"},
fakeClock,
requester,
)
return client, fakeClock
}
func NewTestClient(config ...Config) (*Client, *ccv3fakes.FakeClock) {
var client *Client
fakeClock := new(ccv3fakes.FakeClock)
if config != nil {
client = TestClient(config[0], fakeClock, NewRequester(config[0]))
} else {
singleConfig := Config{AppName: "CF CLI API V3 Test", AppVersion: "Unknown"}
client = TestClient(
singleConfig,
fakeClock,
NewRequester(singleConfig),
)
}
client.TargetCF(TargetSettings{
SkipSSLValidation: true,
URL: server.URL(),
})
return client, fakeClock
}