forked from hashicorp/go-tfe
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathrun_trigger_integration_test.go
263 lines (218 loc) · 7.1 KB
/
run_trigger_integration_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
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
259
260
261
262
263
//go:build integration
// +build integration
package tfe
import (
"context"
"testing"
"github.com/stretchr/testify/assert"
"github.com/stretchr/testify/require"
)
func TestRunTriggerList(t *testing.T) {
client := testClient(t)
ctx := context.Background()
orgTest, orgTestCleanup := createOrganization(t, client)
defer orgTestCleanup()
wTest, wTestCleanup := createWorkspace(t, client, orgTest)
defer wTestCleanup()
sourceable1Test, sourceable1TestCleanup := createWorkspace(t, client, orgTest)
defer sourceable1TestCleanup()
sourceable2Test, sourceable2TestCleanup := createWorkspace(t, client, orgTest)
defer sourceable2TestCleanup()
rtTest1, rtTestCleanup1 := createRunTrigger(t, client, wTest, sourceable1Test)
defer rtTestCleanup1()
rtTest2, rtTestCleanup2 := createRunTrigger(t, client, wTest, sourceable2Test)
defer rtTestCleanup2()
t.Run("without ListOptions and with RunTriggerType", func(t *testing.T) {
rtl, err := client.RunTriggers.List(
ctx,
wTest.ID,
&RunTriggerListOptions{
RunTriggerType: RunTriggerInbound,
},
)
require.NoError(t, err)
assert.Contains(t, rtl.Items, rtTest1)
assert.Contains(t, rtl.Items, rtTest2)
assert.Equal(t, 1, rtl.CurrentPage)
assert.Equal(t, 2, rtl.TotalCount)
})
t.Run("with ListOptions and a RunTriggerType", func(t *testing.T) {
// Request a page number which is out of range. The result should
// be successful, but return no results if the paging options are
// properly passed along.
rtl, err := client.RunTriggers.List(
ctx,
wTest.ID,
&RunTriggerListOptions{
ListOptions: ListOptions{
PageNumber: 999,
PageSize: 100,
},
RunTriggerType: RunTriggerInbound,
},
)
require.NoError(t, err)
assert.Empty(t, rtl.Items)
assert.Equal(t, 999, rtl.CurrentPage)
assert.Equal(t, 2, rtl.TotalCount)
})
t.Run("without a valid workspace", func(t *testing.T) {
rtl, err := client.RunTriggers.List(
ctx,
badIdentifier,
&RunTriggerListOptions{
RunTriggerType: RunTriggerInbound,
},
)
assert.Nil(t, rtl)
assert.EqualError(t, err, ErrInvalidWorkspaceID.Error())
})
t.Run("without defining RunTriggerListOptions", func(t *testing.T) {
rtl, err := client.RunTriggers.List(
ctx,
wTest.ID,
nil,
)
assert.Nil(t, rtl)
assert.Equal(t, err, ErrRequiredRunTriggerListOps)
})
t.Run("without defining RunTriggerFilterOp as a filter param", func(t *testing.T) {
rtl, err := client.RunTriggers.List(
ctx,
wTest.ID,
&RunTriggerListOptions{
ListOptions: ListOptions{
PageNumber: 999,
PageSize: 100,
},
},
)
assert.Nil(t, rtl)
assert.Equal(t, err, ErrInvalidRunTriggerType)
})
t.Run("with invalid option for runTriggerType", func(t *testing.T) {
rtl, err := client.RunTriggers.List(
ctx,
wTest.ID,
&RunTriggerListOptions{
RunTriggerType: "oubound",
},
)
assert.Nil(t, rtl)
assert.Equal(t, err, ErrInvalidRunTriggerType)
})
t.Run("with sourceable include option", func(t *testing.T) {
rtl, err := client.RunTriggers.List(
ctx,
wTest.ID,
&RunTriggerListOptions{
RunTriggerType: RunTriggerInbound,
Include: []RunTriggerIncludeOpt{RunTriggerSourceable},
},
)
require.NoError(t, err)
assert.NotEmpty(t, rtl.Items)
assert.NotEmpty(t, rtl.Items[0].Sourceable.Name)
})
t.Run("with a RunTriggerType that does not return included data", func(t *testing.T) {
_, err := client.RunTriggers.List(
ctx,
wTest.ID,
&RunTriggerListOptions{
RunTriggerType: RunTriggerOutbound,
Include: []RunTriggerIncludeOpt{RunTriggerSourceable},
},
)
assert.Equal(t, err, ErrUnsupportedRunTriggerType)
})
}
func TestRunTriggerCreate(t *testing.T) {
client := testClient(t)
ctx := context.Background()
orgTest, orgTestCleanup := createOrganization(t, client)
defer orgTestCleanup()
wTest, wTestCleanup := createWorkspace(t, client, orgTest)
defer wTestCleanup()
sourceableTest, sourceableTestCleanup := createWorkspace(t, client, orgTest)
defer sourceableTestCleanup()
t.Run("with all required values", func(t *testing.T) {
options := RunTriggerCreateOptions{
Sourceable: sourceableTest,
}
_, err := client.RunTriggers.Create(ctx, wTest.ID, options)
require.NoError(t, err)
})
t.Run("without a required value", func(t *testing.T) {
options := RunTriggerCreateOptions{}
rt, err := client.RunTriggers.Create(ctx, wTest.ID, options)
assert.Nil(t, rt)
assert.Equal(t, err, ErrRequiredSourceable)
})
t.Run("without a valid workspace", func(t *testing.T) {
rt, err := client.RunTriggers.Create(ctx, badIdentifier, RunTriggerCreateOptions{})
assert.Nil(t, rt)
assert.EqualError(t, err, ErrInvalidWorkspaceID.Error())
})
t.Run("when an error is returned from the api", func(t *testing.T) {
// There are many cases that would cause the server to return an error
// on run trigger creation. This tests one of them: setting workspace
// and sourceable to the same workspace
options := RunTriggerCreateOptions{
Sourceable: sourceableTest,
}
rt, err := client.RunTriggers.Create(ctx, sourceableTest.ID, options)
assert.Nil(t, rt)
assert.Error(t, err)
})
}
func TestRunTriggerRead(t *testing.T) {
client := testClient(t)
ctx := context.Background()
orgTest, orgTestCleanup := createOrganization(t, client)
defer orgTestCleanup()
wTest, wTestCleanup := createWorkspace(t, client, orgTest)
defer wTestCleanup()
sourceableTest, sourceableTestCleanup := createWorkspace(t, client, orgTest)
defer sourceableTestCleanup()
rtTest, rtTestCleanup := createRunTrigger(t, client, wTest, sourceableTest)
defer rtTestCleanup()
t.Run("with a valid ID", func(t *testing.T) {
rt, err := client.RunTriggers.Read(ctx, rtTest.ID)
require.NoError(t, err)
assert.Equal(t, rtTest.ID, rt.ID)
})
t.Run("when the run trigger does not exist", func(t *testing.T) {
_, err := client.RunTriggers.Read(ctx, "nonexisting")
assert.Equal(t, err, ErrResourceNotFound)
})
t.Run("when the run trigger ID is invalid", func(t *testing.T) {
_, err := client.RunTriggers.Read(ctx, badIdentifier)
assert.Equal(t, err, ErrInvalidRunTriggerID)
})
}
func TestRunTriggerDelete(t *testing.T) {
client := testClient(t)
ctx := context.Background()
orgTest, orgTestCleanup := createOrganization(t, client)
defer orgTestCleanup()
wTest, wTestCleanup := createWorkspace(t, client, orgTest)
defer wTestCleanup()
sourceableTest, sourceableTestCleanup := createWorkspace(t, client, orgTest)
defer sourceableTestCleanup()
// No need to cleanup here, as this test will delete this run trigger
rtTest, _ := createRunTrigger(t, client, wTest, sourceableTest)
t.Run("with a valid ID", func(t *testing.T) {
err := client.RunTriggers.Delete(ctx, rtTest.ID)
require.NoError(t, err)
_, err = client.RunTriggers.Read(ctx, rtTest.ID)
assert.Equal(t, err, ErrResourceNotFound)
})
t.Run("when the run trigger does not exist", func(t *testing.T) {
err := client.RunTriggers.Delete(ctx, "nonexisting")
assert.Equal(t, err, ErrResourceNotFound)
})
t.Run("when the run trigger ID is invalid", func(t *testing.T) {
err := client.RunTriggers.Delete(ctx, badIdentifier)
assert.Equal(t, err, ErrInvalidRunTriggerID)
})
}