-
Notifications
You must be signed in to change notification settings - Fork 28
/
Copy pathenvironment_test.go
225 lines (186 loc) · 5.6 KB
/
environment_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
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
package models
import (
"testing"
"time"
"github.com/stretchr/testify/assert"
"github.com/stretchr/testify/suite"
)
type EnvironmentSuite struct {
*ModelsSuite
}
func TestEnvironmentSuite(t *testing.T) {
m := ModelsSuite{}
r := EnvironmentSuite{&m}
suite.Run(t, &r)
}
func (s *EnvironmentSuite) TestEnvironmentCreate() {
t := s.T()
tx := s.tx
repoConfig := repoConfigTest1.DeepCopy()
repo := repoTest1.DeepCopy()
environment := environmentTest1.DeepCopy()
var found = Environment{}
var err error
// Create the Repository record
err = tx.Create(repo).Error
assert.NoError(t, err)
// Create the RepositoryConfig record
repoConfig.RepositoryUUID = repo.Base.UUID
err = tx.Create(repoConfig).Error
assert.NoError(t, err)
// Create the RepositoryEnvironment record
err = tx.Create(&environment).Error
assert.NoError(t, err)
// Create the relationship between Environment and Repository
var repositories_environments map[string]interface{} = map[string]interface{}{
"repository_uuid": repo.UUID,
"environment_uuid": environment.Base.UUID,
}
err = tx.Table(TableNameEnvironmentsRepositories).Create(&repositories_environments).Error
assert.Nil(t, err)
// Retrieve the just created record
found.Base.UUID = environment.UUID
err = tx.First(&found).Error
assert.Nil(t, err)
assert.NotEmpty(t, found.UUID)
assert.NotEmpty(t, found.ID)
assert.NotEmpty(t, found.Name)
// Check the read record is equal to the created one
assert.Equal(t, environment.ID, found.ID)
assert.Equal(t, environment.Name, found.Name)
assert.Equal(t, environment.Description, found.Description)
}
func (s *EnvironmentSuite) TestEnvironmentUpdate() {
t := s.T()
tx := s.tx
repoConfig := repoConfigTest1.DeepCopy()
repo := repoTest1.DeepCopy()
repoEnvironment := environmentTest1.DeepCopy()
var found = Environment{}
var err error
// Create the Repository record
err = tx.Create(repo).Error
assert.Nil(t, err)
// Create the RepositoryConfig record
repoConfig.RepositoryUUID = repo.UUID
err = tx.Create(repoConfig).Error
assert.Nil(t, err)
// Create the RepositoryEnvironment record
tx.Create(&repoEnvironment)
assert.NotNil(t, tx)
assert.Nil(t, tx.Error)
err = tx.Table(TableNameEnvironmentsRepositories).Create([]map[string]interface{}{
{
"repository_uuid": repo.UUID,
"environment_uuid": repoEnvironment.UUID,
},
}).Error
assert.Nil(t, err)
// Update RepositoryEnvironment record
repoEnvironment.CreatedAt = time.Now()
repoEnvironment.UpdatedAt = time.Now()
repoEnvironment.ID = "updated-environment"
repoEnvironment.Name = "updated-environment"
repoEnvironment.Description = "environment description"
tx.Save(&repoEnvironment)
// Retrieve the just created record
err = tx.Where("uuid = ?", repoEnvironment.UUID).First(&found).Error
assert.Nil(t, err)
assert.NotEmpty(t, found.UUID)
// Check the read record is equal to the updated one
assert.Equal(t, repoEnvironment.ID, found.ID)
assert.Equal(t, repoEnvironment.Name, found.Name)
assert.Equal(t, repoEnvironment.Description, found.Description)
}
func (s *EnvironmentSuite) TestEnvironmentDelete() {
t := s.T()
tx := s.tx
repoConfig := repoConfigTest1.DeepCopy()
repo := repoTest1.DeepCopy()
repoEnvironment := environmentTest1.DeepCopy()
var found = Environment{}
var err error
// Create the Repository record
err = tx.Create(repo).Error
assert.Nil(t, err)
// Create the RepositoryConfig record
repoConfig.RepositoryUUID = repo.Base.UUID
err = tx.Create(repoConfig).Error
assert.Nil(t, err)
// Create the RepositoryEnvironment record
tx.Create(&repoEnvironment)
assert.NotNil(t, tx)
assert.Nil(t, tx.Error)
// Create the many-to-many entry
err = tx.Table(TableNameEnvironmentsRepositories).Create([]map[string]interface{}{
{
"repository_uuid": repo.UUID,
"environment_uuid": repoEnvironment.UUID,
},
}).Error
assert.Nil(t, err)
// Retrieve the just created record
err = tx.Where("uuid = ?", repoEnvironment.UUID).First(&found).Error
assert.Nil(t, err)
// Delete the new record
err = tx.Delete(&found).Error
assert.Nil(t, err)
// Check the record does not exist
err = tx.Where("uuid = ?", repoEnvironment.UUID).First(&found).Error
assert.NotNil(t, err)
assert.Equal(t, "record not found", err.Error())
}
func (t *EnvironmentSuite) TestEnvironmentDeepCopy() {
copy := environmentTest1.DeepCopy()
assert.NotNil(t.T(), copy)
assert.Equal(t.T(), copy.Base.UUID, environmentTest1.Base.UUID)
assert.Equal(t.T(), copy.Base.CreatedAt, environmentTest1.Base.CreatedAt)
assert.Equal(t.T(), copy.Base.UpdatedAt, environmentTest1.Base.UpdatedAt)
assert.Equal(t.T(), copy.ID, environmentTest1.ID)
assert.Equal(t.T(), copy.Name, environmentTest1.Name)
assert.Equal(t.T(), copy.Description, environmentTest1.Description)
}
func (s *EnvironmentSuite) TestEnvironmentValidations() {
t := s.T()
tx := s.tx
testID := "test-environment"
testName := "test-environment"
testDescription := "description"
var testCases []struct {
given Environment
expected string
} = []struct {
given Environment
expected string
}{
{
given: Environment{
ID: testID,
Name: testName,
Description: testDescription,
},
expected: "",
},
{
given: Environment{
ID: testID,
Name: "",
Description: testDescription,
},
expected: "Name cannot be empty",
},
}
tx.SavePoint("testenvironmentvalidations")
for _, item := range testCases {
err := tx.Create(&item.given).Error
if item.expected == "" {
assert.NoError(t, err)
} else {
assert.Error(t, err)
if err != nil {
assert.Equal(t, item.expected, err.Error())
}
}
tx.RollbackTo("testenvironmentvalidations")
}
}