forked from cloudfoundry/cli
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathlast_operation_resource_test.go
61 lines (56 loc) · 1.93 KB
/
last_operation_resource_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
package resources_test
import (
"encoding/json"
. "code.cloudfoundry.org/cli/resources"
. "github.com/onsi/ginkgo"
. "github.com/onsi/ginkgo/extensions/table"
. "github.com/onsi/gomega"
)
var _ = Describe("last operation resource", func() {
DescribeTable(
"Marshaling and Unmarshaling",
func(lastOperation LastOperation, serialized string) {
By("marshaling", func() {
Expect(json.Marshal(lastOperation)).To(MatchJSON(serialized))
})
By("unmarshaling", func() {
var parsed LastOperation
Expect(json.Unmarshal([]byte(serialized), &parsed)).NotTo(HaveOccurred())
Expect(parsed).To(Equal(lastOperation))
})
},
Entry("type", LastOperation{Type: "fake-type"}, `{"type": "fake-type"}`),
Entry("state", LastOperation{State: "fake-state"}, `{"state": "fake-state"}`),
Entry("description", LastOperation{Description: "fake-description"}, `{"description": "fake-description"}`),
Entry("created_at", LastOperation{CreatedAt: "fake-created-at"}, `{"created_at": "fake-created-at"}`),
Entry("updated_at", LastOperation{UpdatedAt: "fake-updated-at"}, `{"updated_at": "fake-updated-at"}`),
Entry(
"everything",
LastOperation{
Type: CreateOperation,
State: OperationInProgress,
Description: "doing stuff",
CreatedAt: "yesterday",
UpdatedAt: "just now",
},
`{
"type": "create",
"state": "in progress",
"description": "doing stuff",
"created_at": "yesterday",
"updated_at": "just now"
}`,
),
)
DescribeTable(
"OmitJSONry",
func(lastOperation LastOperation, expected bool) {
Expect(lastOperation.OmitJSONry()).To(Equal(expected))
},
Entry("empty object", LastOperation{}, true),
Entry("type", LastOperation{Type: CreateOperation}, false),
Entry("state", LastOperation{State: OperationInProgress}, false),
Entry("created_at", LastOperation{CreatedAt: "now"}, false),
Entry("updated_at", LastOperation{UpdatedAt: "now"}, false),
)
})