-
Notifications
You must be signed in to change notification settings - Fork 0
/
actions_test.go
158 lines (150 loc) · 4.01 KB
/
actions_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
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
package factory_gorl_test
import (
. "github.com/gdavison/factory_gorl"
_ "github.com/mattn/go-sqlite3"
. "github.com/onsi/ginkgo"
. "github.com/onsi/gomega"
)
type AutoIncrementIdTest struct {
Id int
Name string
}
var _ = Describe("Build", func() {
var (
result interface{}
err error
)
BeforeEach(func() { ResetConfiguration() })
Context("when there is a registered factory", func() {
JustBeforeEach(func() {
factory, _ := NewFactory("Test", Test{}, nil)
RegisterFactory(factory)
})
Context("when not overriding factory settings", func() {
JustBeforeEach(func() {
result, err = Build("Test", nil)
})
It("has a result value", func() {
Expect(result).ToNot(BeNil())
})
It("creates correct type", func() {
Expect(result).To(BeAssignableToTypeOf(&Test{}))
})
It("does not return an error", func() {
Expect(err).ToNot(HaveOccurred())
})
})
Context("when overriding factory settings", func() {
JustBeforeEach(func() {
result, err = Build("Test", func(i interface{}) {
t := i.(*Test)
t.foo = "thirteen"
t.bar = 13
})
})
It("sets the fields based on the override", func() {
Expect(result.(*Test).foo).To(Equal("thirteen"))
Expect(result.(*Test).bar).To(Equal(13))
})
})
})
Context("when there is not a registered factory", func() {
Context("when not overriding factory settings", func() {
JustBeforeEach(func() {
result, err = Build("Nonesuch", nil)
})
It("has no result value", func() {
Expect(result).To(BeNil())
})
It("returns an error", func() {
Expect(err).To(HaveOccurred())
})
})
Context("when overriding factory settings", func() {
JustBeforeEach(func() {
result, err = Build("Nonesuch", func(i interface{}) {})
})
It("has no result value", func() {
Expect(result).To(BeNil())
})
It("returns an error", func() {
Expect(err).To(HaveOccurred())
})
})
})
})
var _ = Describe("Create", func() {
var (
result interface{}
err error
)
BeforeEach(func() { ResetConfiguration() })
Context("when there is a registered factory", func() {
JustBeforeEach(func() {
factory, _ := NewFactory("AutoIncrementIdTest", AutoIncrementIdTest{}, nil)
RegisterFactory(factory)
})
Context("when not overriding factory settings", func() {
JustBeforeEach(func() {
result, err = Create("AutoIncrementIdTest", nil)
})
It("has a result value", func() {
Expect(result).ToNot(BeNil())
})
It("creates correct type", func() {
Expect(result).To(BeAssignableToTypeOf(&AutoIncrementIdTest{}))
})
It("assigns an Id", func() {
Expect(result.(*AutoIncrementIdTest).Id).ToNot(Equal(0))
})
It("saves it to the database", func() {
retrieved, _ := DbMap.Get(AutoIncrementIdTest{}, result.(*AutoIncrementIdTest).Id)
Expect(retrieved.(*AutoIncrementIdTest).Name).To(Equal(result.(*AutoIncrementIdTest).Name))
})
It("does not return an error", func() {
Expect(err).ToNot(HaveOccurred())
})
})
Context("when overriding factory settings", func() {
JustBeforeEach(func() {
result, err = Create("AutoIncrementIdTest", func(i interface{}) {
t := i.(*AutoIncrementIdTest)
t.Name = "foobar"
})
})
It("sets the fields based on the override", func() {
Expect(result.(*AutoIncrementIdTest).Name).To(Equal("foobar"))
})
})
})
Context("when there is not a registered factory", func() {
var (
builder Builder
)
JustBeforeEach(func() {
result, err = Create("Nonesuch", nil)
})
Context("when not overriding factory settings", func() {
BeforeEach(func() {
builder = nil
})
It("has no result value", func() {
Expect(result).To(BeNil())
})
It("returns an error", func() {
Expect(err).To(HaveOccurred())
})
})
Context("when not overriding factory settings", func() {
BeforeEach(func() {
builder = func(i interface{}) {}
})
It("has no result value", func() {
Expect(result).To(BeNil())
})
It("returns an error", func() {
Expect(err).To(HaveOccurred())
})
})
})
})