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 141 142 143 144 145 146 147 148 149 150 151 152 153 154 155 156 157 158 159 160 161 162 163
|
package lb_domains_test
import (
"context"
"net/http"
"github.com/jarcoal/httpmock"
. "github.com/onsi/ginkgo"
. "github.com/onsi/gomega"
"github.com/mimuret/golang-iij-dpf/pkg/apis/dpf/v1/lb_domains"
"github.com/mimuret/golang-iij-dpf/pkg/testtool"
)
var _ = Describe("EndpointManualFailover", func() {
var (
cl *testtool.TestClient
err error
reqId string
)
Describe("EndpointManualFailover", func() {
var s1 lb_domains.EndpointManualFailover
BeforeEach(func() {
cl = testtool.NewTestClient("", "http://localhost", nil)
s1 = lb_domains.EndpointManualFailover{
SiteAttributeMeta: lb_domains.SiteAttributeMeta{
AttributeMeta: lb_domains.AttributeMeta{
LBDomainID: "b0000000000001",
},
SiteResourceName: "site-1",
},
EndpointResourceName: "endpoint-1",
}
})
Context("Apply", func() {
id1, bs1 := testtool.CreateAsyncResponse()
BeforeEach(func() {
httpmock.RegisterResponder(http.MethodPost, "http://localhost/lb_domains/b0000000000001/sites/site-1/endpoints/endpoint-1/failover", httpmock.NewBytesResponder(202, bs1))
reqId, err = cl.Apply(context.Background(), &s1, nil)
})
AfterEach(func() {
httpmock.Reset()
})
It("returns job_id", func() {
Expect(err).To(Succeed())
Expect(reqId).To(Equal(id1))
})
It("post json", func() {
Expect(cl.RequestBody["/lb_domains/b0000000000001/sites/site-1/endpoints/endpoint-1/failover"]).To(MatchJSON(`{}`))
})
})
Context("SetPathParams", func() {
When("no arguments, nothing to do", func() {
BeforeEach(func() {
err = s1.SetPathParams()
})
It("returns error", func() {
Expect(err).To(Succeed())
})
})
When("enough arguments", func() {
BeforeEach(func() {
err = s1.SetPathParams("b0000000000010", "site-1", "endpoint-1")
})
It("not returns error", func() {
Expect(err).To(Succeed())
})
It("can set LBDomainID", func() {
Expect(s1.LBDomainID).To(Equal("b0000000000010"))
Expect(s1.SiteResourceName).To(Equal("site-1"))
Expect(s1.EndpointResourceName).To(Equal("endpoint-1"))
})
})
When("arguments has extra value", func() {
BeforeEach(func() {
err = s1.SetPathParams("b0000000000010", "site-1", "endpoint-1", 1)
})
It("returns error", func() {
Expect(err).To(HaveOccurred())
})
})
When("arguments type missmatch", func() {
BeforeEach(func() {
err = s1.SetPathParams("b0000000000010", "site-1", 1)
})
It("returns error", func() {
Expect(err).To(HaveOccurred())
})
})
})
})
Describe("EndpointManualFailback", func() {
var s1 lb_domains.EndpointManualFailback
BeforeEach(func() {
cl = testtool.NewTestClient("", "http://localhost", nil)
s1 = lb_domains.EndpointManualFailback{
SiteAttributeMeta: lb_domains.SiteAttributeMeta{
AttributeMeta: lb_domains.AttributeMeta{
LBDomainID: "b0000000000001",
},
SiteResourceName: "site-1",
},
EndpointResourceName: "endpoint-1",
}
})
Context("Apply", func() {
id1, bs1 := testtool.CreateAsyncResponse()
BeforeEach(func() {
httpmock.RegisterResponder(http.MethodPost, "http://localhost/lb_domains/b0000000000001/sites/site-1/endpoints/endpoint-1/failback", httpmock.NewBytesResponder(202, bs1))
reqId, err = cl.Apply(context.Background(), &s1, nil)
})
AfterEach(func() {
httpmock.Reset()
})
It("returns job_id", func() {
Expect(err).To(Succeed())
Expect(reqId).To(Equal(id1))
})
It("post json", func() {
Expect(cl.RequestBody["/lb_domains/b0000000000001/sites/site-1/endpoints/endpoint-1/failback"]).To(MatchJSON(`{}`))
})
})
Context("SetPathParams", func() {
When("no arguments, nothing to do", func() {
BeforeEach(func() {
err = s1.SetPathParams()
})
It("returns error", func() {
Expect(err).To(Succeed())
})
})
When("enough arguments", func() {
BeforeEach(func() {
err = s1.SetPathParams("b0000000000010", "site-1", "endpoint-1")
})
It("not returns error", func() {
Expect(err).To(Succeed())
})
It("can set LBDomainID", func() {
Expect(s1.LBDomainID).To(Equal("b0000000000010"))
Expect(s1.SiteResourceName).To(Equal("site-1"))
Expect(s1.EndpointResourceName).To(Equal("endpoint-1"))
})
})
When("arguments has extra value", func() {
BeforeEach(func() {
err = s1.SetPathParams("b0000000000010", "site-1", "endpoint-1", 1)
})
It("returns error", func() {
Expect(err).To(HaveOccurred())
})
})
When("arguments type missmatch", func() {
BeforeEach(func() {
err = s1.SetPathParams("b0000000000010", "site-1", 1)
})
It("returns error", func() {
Expect(err).To(HaveOccurred())
})
})
})
})
})
|