-
Notifications
You must be signed in to change notification settings - Fork 3
/
prune.feature
260 lines (233 loc) · 11.7 KB
/
prune.feature
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
@prune @cats
Feature: clowder prune
@help
Scenario: prune help in empty directory
Given test directory is empty
When I run 'clowder prune -h' and 'clowder prune --help'
Then the commands succeed
@help
Scenario: prune help with invalid clowder.yaml
Given cats example is initialized
And has invalid clowder.yml
When I run 'clowder prune -h' and 'clowder prune --help'
Then the commands succeed
@help
Scenario: prune help with valid clowder.yaml
Given cats example is initialized
When I run 'clowder prune -h' and 'clowder prune --help'
Then the commands succeed
Scenario Outline: prune default existing local branch checked out
Given cats example is initialized and herded
And project at <directory> created local <test_branch>
And project at <directory> checked out <test_branch>
And project at <directory> is on <test_branch>
When I run 'clowder prune pytest-prune'
Then the command succeeds
And project at <directory> has no local <test_branch>
And project at <directory> is on <end_branch>
Examples:
| directory | test_branch | end_branch |
| mu | pytest-prune | knead |
| duke | pytest-prune | purr |
| black-cats/kishka | pytest-prune | master |
| black-cats/kit | pytest-prune | master |
| black-cats/sasha | pytest-prune | master |
| black-cats/june | pytest-prune | master |
@subdirectory
Scenario Outline: prune default from subdirectory with existing local branch checked out
Given cats example is initialized and herded
And project at <directory> created local <test_branch>
And project at <directory> checked out <test_branch>
And project at <directory> is on <test_branch>
When I change to directory mu
And I run 'clowder prune pytest-prune'
Then the command succeeds
And project at <directory> has no local <test_branch>
And project at <directory> is on <end_branch>
Examples:
| directory | test_branch | end_branch |
| mu | pytest-prune | knead |
| duke | pytest-prune | purr |
| black-cats/kishka | pytest-prune | master |
| black-cats/kit | pytest-prune | master |
| black-cats/sasha | pytest-prune | master |
| black-cats/june | pytest-prune | master |
Scenario Outline: prune default existing local branch checked out group selected
Given cats example is initialized and herded
And project at <directory> created local <test_branch>
And project at <directory> checked out <test_branch>
And project at <directory> is on <test_branch>
When I run 'clowder prune pytest-prune cats'
Then the command succeeds
And project at <directory> has no local <test_branch>
And project at <directory> is on <end_branch>
Examples:
| directory | test_branch | end_branch |
| mu | pytest-prune | knead |
| duke | pytest-prune | purr |
Scenario Outline: prune default existing local branch checked out group not selected
Given cats example is initialized and herded
And project at <directory> created local <test_branch>
And project at <directory> checked out <test_branch>
And project at <directory> is on <test_branch>
When I run 'clowder prune pytest-prune cats'
Then the command succeeds
And project at <directory> has local <test_branch>
And project at <directory> is on <test_branch>
Examples:
| directory | test_branch |
| black-cats/kishka | pytest-prune |
| black-cats/kit | pytest-prune |
| black-cats/sasha | pytest-prune |
| black-cats/june | pytest-prune |
@fail
Scenario Outline: prune default existing local branch checked out fail not fully merged
Given cats example is initialized and herded
And project at <directory> created local <test_branch>
And project at <directory> checked out <test_branch>
And project at <directory> created a new commit
And project at <directory> is on <test_branch>
When I run 'clowder prune pytest-prune'
Then the command fails
And project at <directory> has local <test_branch>
And project at <directory> is on <end_branch>
Examples:
| directory | test_branch | end_branch |
| mu | pytest-prune | knead |
| duke | pytest-prune | purr |
| black-cats/kishka | pytest-prune | master |
| black-cats/kit | pytest-prune | master |
| black-cats/sasha | pytest-prune | master |
| black-cats/june | pytest-prune | master |
Scenario Outline: prune force default existing local branch checked out not fully merged
Given cats example is initialized and herded
And project at <directory> created local <test_branch>
And project at <directory> checked out <test_branch>
And project at <directory> created a new commit
And project at <directory> is on <test_branch>
When I run 'clowder prune -f pytest-prune'
Then the command succeeds
And project at <directory> has no local <test_branch>
And project at <directory> is on <end_branch>
Examples:
| directory | test_branch | end_branch |
| mu | pytest-prune | knead |
| duke | pytest-prune | purr |
| black-cats/kishka | pytest-prune | master |
| black-cats/kit | pytest-prune | master |
| black-cats/sasha | pytest-prune | master |
| black-cats/june | pytest-prune | master |
@offline
Scenario Outline: prune offline
Given cats example is initialized and herded
And project at <directory> created local <test_branch>
And project at <directory> checked out <test_branch>
And project at <directory> is on <test_branch>
When the network connection is disabled
And I run 'clowder prune pytest-prune'
And the network connection is enabled
Then the command succeeds
And project at <directory> has no local <test_branch>
And project at <directory> is on <end_branch>
Examples:
| directory | test_branch | end_branch |
| mu | pytest-prune | knead |
| duke | pytest-prune | purr |
| black-cats/kishka | pytest-prune | master |
| black-cats/kit | pytest-prune | master |
| black-cats/sasha | pytest-prune | master |
| black-cats/june | pytest-prune | master |
@fail @offline @ssh @write
Scenario Outline: prune remote offline
Given cats example is initialized and herded with ssh
And project at <directory> created remote <test_branch>
When the network connection is disabled
And I run 'clowder prune -r pytest-prune-remote-offline'
And the network connection is enabled
Then the command fails
And project at <directory> has remote <test_branch>
Examples:
| directory | test_branch |
| mu | pytest-prune-remote-offline |
| duke | pytest-prune-remote-offline |
| black-cats/kishka | pytest-prune-remote-offline |
| black-cats/kit | pytest-prune-remote-offline |
| black-cats/sasha | pytest-prune-remote-offline |
| black-cats/june | pytest-prune-remote-offline |
@fail @offline @ssh @write
Scenario Outline: prune all offline
Given cats example is initialized and herded with ssh
And project at <directory> created remote <test_branch>
When the network connection is disabled
And I run 'clowder prune -a pytest-prune-all-offline'
And the network connection is enabled
Then the command fails
And project at <directory> has no local <test_branch>
And project at <directory> has remote <test_branch>
Examples:
| directory | test_branch |
| mu | pytest-prune-all-offline |
| duke | pytest-prune-all-offline |
| black-cats/kishka | pytest-prune-all-offline |
| black-cats/kit | pytest-prune-all-offline |
| black-cats/sasha | pytest-prune-all-offline |
| black-cats/june | pytest-prune-all-offline |
@internet @write @ssh
Scenario Outline: prune remote no local branch
Given cats example is initialized and herded with ssh
And cats example projects have remote branch <test_branch>
And cats example projects have no local branch <test_branch>
When I run 'clowder prune -r pytest-prune-remote'
Then the command succeeds
And project at <directory> has no remote <test_branch>
And project at <directory> has no local <test_branch>
Examples:
| directory | test_branch |
| mu | pytest-prune-remote |
| duke | pytest-prune-remote |
| black-cats/kishka | pytest-prune-remote |
| black-cats/kit | pytest-prune-remote |
| black-cats/sasha | pytest-prune-remote |
| black-cats/june | pytest-prune-remote |
@internet @write @ssh
Scenario Outline: prune remote tracking branch
Given cats example is initialized and herded with ssh
And cats example projects have tracking branch <test_branch>
And project at <directory> has local <test_branch>
And project at <directory> has remote <test_branch>
And project at <directory> checked out <test_branch>
And project at <directory> is on <test_branch>
When I run 'clowder prune -r pytest-prune-remote'
Then the command succeeds
And project at <directory> has no remote <test_branch>
And project at <directory> has local <test_branch>
And project at <directory> is on <test_branch>
Examples:
| directory | test_branch |
| mu | pytest-prune-remote |
| duke | pytest-prune-remote |
| black-cats/kishka | pytest-prune-remote |
| black-cats/kit | pytest-prune-remote |
| black-cats/sasha | pytest-prune-remote |
| black-cats/june | pytest-prune-remote |
@internet @write @ssh
Scenario Outline: prune all
Given cats example is initialized and herded with ssh
And cats example projects have tracking branch <test_branch>
And project at <directory> has local <test_branch>
And project at <directory> has remote <test_branch>
And project at <directory> checked out <test_branch>
And project at <directory> is on <test_branch>
When I run 'clowder prune -a pytest-prune-all'
Then the command succeeds
And project at <directory> has no remote <test_branch>
And project at <directory> has no local <test_branch>
And project at <directory> is on <end_branch>
Examples:
| directory | test_branch | end_branch |
| mu | pytest-prune-all | knead |
| duke | pytest-prune-all | purr |
| black-cats/kishka | pytest-prune-all | master |
| black-cats/kit | pytest-prune-all | master |
| black-cats/sasha | pytest-prune-all | master |
| black-cats/june | pytest-prune-all | master |