@@ -89,14 +89,14 @@ var _ = Describe("Applier", func() {
89
89
90
90
for i := range inventoryConfigTypes {
91
91
invType := inventoryConfigTypes [i ]
92
- Context (fmt .Sprintf ("Inventory: %s" , invType ), func () {
92
+ Context (fmt .Sprintf ("Inventory%s" , invType ), func () {
93
93
var invConfig invconfig.InventoryConfig
94
94
95
95
BeforeEach (func () {
96
96
invConfig = inventoryConfigs [invType ]
97
97
})
98
98
99
- Context ("Apply and destroy " , func () {
99
+ Context ("Basic " , func () {
100
100
var namespace * v1.Namespace
101
101
var inventoryName string
102
102
var ctx context.Context
@@ -133,7 +133,7 @@ var _ = Describe("Applier", func() {
133
133
e2eutil .DeleteNamespace (ctx , c , namespace )
134
134
})
135
135
136
- It ("Apply and destroy " , func () {
136
+ It ("ApplyDestroy " , func () {
137
137
applyAndDestroyTest (ctx , c , invConfig , inventoryName , namespace .GetName ())
138
138
})
139
139
@@ -145,27 +145,27 @@ var _ = Describe("Applier", func() {
145
145
emptySetTest (ctx , c , invConfig , inventoryName , namespace .GetName ())
146
146
})
147
147
148
- It ("Deletion Prevention " , func () {
148
+ It ("DeletionPrevention " , func () {
149
149
deletionPreventionTest (ctx , c , invConfig , inventoryName , namespace .GetName ())
150
150
})
151
151
152
- It ("Apply CRD and CR " , func () {
152
+ It ("CustomResource " , func () {
153
153
crdTest (ctx , c , invConfig , inventoryName , namespace .GetName ())
154
154
})
155
155
156
- It ("Apply continues on error " , func () {
156
+ It ("ContinueOnError " , func () {
157
157
continueOnErrorTest (ctx , c , invConfig , inventoryName , namespace .GetName ())
158
158
})
159
159
160
- It ("Server-Side Apply " , func () {
160
+ It ("ServerSideApply " , func () {
161
161
serversideApplyTest (ctx , c , invConfig , inventoryName , namespace .GetName ())
162
162
})
163
163
164
- It ("Implements depends-on apply ordering " , func () {
164
+ It ("DependsOn " , func () {
165
165
dependsOnTest (ctx , c , invConfig , inventoryName , namespace .GetName ())
166
166
})
167
167
168
- It ("Implements apply-time-mutation " , func () {
168
+ It ("ApplyTimeMutation " , func () {
169
169
mutationTest (ctx , c , invConfig , inventoryName , namespace .GetName ())
170
170
})
171
171
@@ -177,15 +177,15 @@ var _ = Describe("Applier", func() {
177
177
namespaceFilterTest (ctx , c , invConfig , inventoryName , namespace .GetName ())
178
178
})
179
179
180
- It ("Prune retrieval error correctly handled " , func () {
180
+ It ("PruneRetrievalError " , func () {
181
181
pruneRetrieveErrorTest (ctx , c , invConfig , inventoryName , namespace .GetName ())
182
182
})
183
183
184
- It ("Reconciliation failure and timeout " , func () {
184
+ It ("ReconciliationFailure " , func () {
185
185
reconciliationFailed (ctx , invConfig , inventoryName , namespace .GetName ())
186
186
})
187
187
188
- It ("Reconciliation timeout " , func () {
188
+ It ("ReconciliationTimeout " , func () {
189
189
reconciliationTimeout (ctx , invConfig , inventoryName , namespace .GetName ())
190
190
})
191
191
@@ -233,7 +233,7 @@ var _ = Describe("Applier", func() {
233
233
})
234
234
}
235
235
236
- Context ("Strategy: Name " , func () {
236
+ Context ("NameStrategy " , func () {
237
237
var namespace * v1.Namespace
238
238
var inventoryName string
239
239
var ctx context.Context
@@ -255,7 +255,7 @@ var _ = Describe("Applier", func() {
255
255
e2eutil .DeleteNamespace (ctx , c , namespace )
256
256
})
257
257
258
- It ("Apply with existing inventory " , func () {
258
+ It ("InventoryIDMismatch " , func () {
259
259
applyWithExistingInvTest (ctx , c , inventoryConfigs [CustomTypeInvConfig ], inventoryName , namespace .GetName ())
260
260
})
261
261
})
0 commit comments