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
|
package api_test
import (
"github.com/mimuret/golang-iij-dpf/pkg/api"
"github.com/mimuret/golang-iij-dpf/pkg/testtool"
. "github.com/onsi/ginkgo"
. "github.com/onsi/gomega"
)
type countableListErr testtool.TestSpecCountableList
func (c *countableListErr) DeepCopyObject() api.Object {
return &dummyObject{}
}
type dummyObject struct{}
func (c *dummyObject) DeepCopyObject() api.Object {
return &dummyObject{}
}
var _ = Describe("spec.go", func() {
Describe("DeepCopySpec", func() {
var (
spec *testtool.TestSpec
ret api.Spec
)
When("param is nil value", func() {
BeforeEach(func() {
ret = api.DeepCopySpec(nil)
})
It("retruns nil", func() {
Expect(ret).To(BeNil())
})
})
When("param is nil", func() {
BeforeEach(func() {
ret = api.DeepCopySpec(spec)
})
It("retruns nil", func() {
Expect(ret).To(BeNil())
})
})
When("DeepCopyObject returns invalid", func() {
It("raise panic", func() {
Expect(func() { _ = api.DeepCopySpec(&countableListErr{}) }).To(Panic())
})
})
When("param is not nil", func() {
BeforeEach(func() {
ret = api.DeepCopySpec(&testtool.TestSpec{})
})
It("returns ret", func() {
Expect(ret).NotTo(BeNil())
})
})
})
Describe("DeepCopyListSpec", func() {
var (
spec *testtool.TestSpecList
ret api.Spec
)
When("param is nil svalue", func() {
BeforeEach(func() {
ret = api.DeepCopyListSpec(nil)
})
It("retruns nil", func() {
Expect(ret).To(BeNil())
})
})
When("param is nil", func() {
BeforeEach(func() {
ret = api.DeepCopyListSpec(spec)
})
It("retruns nil", func() {
Expect(ret).To(BeNil())
})
})
When("DeepCopyObject returns invalid", func() {
It("raise panic", func() {
Expect(func() { _ = api.DeepCopyListSpec(&countableListErr{}) }).To(Panic())
})
})
When("param is not nil", func() {
BeforeEach(func() {
ret = api.DeepCopyListSpec(&testtool.TestSpecList{})
})
It("returns ret", func() {
Expect(ret).NotTo(BeNil())
})
})
})
Describe("DeepCopyCountableListSpec", func() {
var (
spec *testtool.TestSpecCountableList
ret api.Spec
)
When("param is nil value", func() {
BeforeEach(func() {
ret = api.DeepCopyCountableListSpec(nil)
})
It("retruns nil", func() {
Expect(ret).To(BeNil())
})
})
When("param is nil", func() {
BeforeEach(func() {
ret = api.DeepCopyCountableListSpec(spec)
})
It("retruns nil", func() {
Expect(ret).To(BeNil())
})
})
When("DeepCopyObject returns invalid", func() {
It("raise panic", func() {
Expect(func() { _ = api.DeepCopyCountableListSpec(&countableListErr{}) }).To(Panic())
})
})
When("param is not nil", func() {
BeforeEach(func() {
ret = api.DeepCopyCountableListSpec(&testtool.TestSpecCountableList{})
})
It("returns ret", func() {
Expect(ret).NotTo(BeNil())
})
})
})
})
|