forked from mislav/hub
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathfork.feature
More file actions
315 lines (295 loc) · 11.8 KB
/
Copy pathfork.feature
File metadata and controls
315 lines (295 loc) · 11.8 KB
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
264
265
266
267
268
269
270
271
272
273
274
275
276
277
278
279
280
281
282
283
284
285
286
287
288
289
290
291
292
293
294
295
296
297
298
299
300
301
302
303
304
305
306
307
308
309
310
311
312
313
314
315
Feature: hub fork
Background:
Given I am in "dotfiles" git repo
And the "origin" remote has url "git://github.com/evilchelu/dotfiles.git"
And I am "mislav" on github.com with OAuth token "OTOKEN"
Scenario: Fork the repository
Given the GitHub API server:
"""
before {
halt 400 unless request.env['HTTP_X_ORIGINAL_SCHEME'] == 'https'
halt 401 unless request.env['HTTP_AUTHORIZATION'] == 'token OTOKEN'
}
get('/repos/mislav/dotfiles', :host_name => 'api.github.com') { 404 }
post('/repos/evilchelu/dotfiles/forks', :host_name => 'api.github.com') {
assert :organization => nil
status 202
json :name => 'dotfiles', :owner => { :login => 'mislav' }
}
"""
When I successfully run `hub fork`
Then the output should contain exactly "new remote: mislav\n"
And "git remote add -f mislav git://github.com/evilchelu/dotfiles.git" should be run
And "git remote set-url mislav git@github.com:mislav/dotfiles.git" should be run
And the url for "mislav" should be "git@github.com:mislav/dotfiles.git"
Scenario: Fork the repository with new remote name specified
Given the GitHub API server:
"""
get('/repos/mislav/dotfiles') { 404 }
post('/repos/evilchelu/dotfiles/forks') {
assert :organization => nil
status 202
json :name => 'dotfiles', :owner => { :login => 'mislav' }
}
"""
When I successfully run `hub fork --remote-name=origin`
Then the output should contain exactly:
"""
renaming existing "origin" remote to "upstream"
new remote: origin\n
"""
And "git remote add -f origin git://github.com/evilchelu/dotfiles.git" should be run
And "git remote set-url origin git@github.com:mislav/dotfiles.git" should be run
And the url for "origin" should be "git@github.com:mislav/dotfiles.git"
And the url for "upstream" should be "git://github.com/evilchelu/dotfiles.git"
Scenario: Fork the repository with redirect
Given the GitHub API server:
"""
before {
halt 400 unless request.env['HTTP_X_ORIGINAL_SCHEME'] == 'https'
halt 401 unless request.env['HTTP_AUTHORIZATION'] == 'token OTOKEN'
}
get('/repos/mislav/dotfiles', :host_name => 'api.github.com') { 404 }
post('/repos/evilchelu/dotfiles/forks', :host_name => 'api.github.com') {
redirect 'https://api.github.com/repositories/1234/forks', 307
}
post('/repositories/1234/forks', :host_name => 'api.github.com') {
status 202
json :name => 'my-dotfiles', :owner => { :login => 'MiSlAv' }
}
"""
When I successfully run `hub fork`
Then the output should contain exactly "new remote: mislav\n"
And "git remote add -f mislav git://github.com/evilchelu/dotfiles.git" should be run
And "git remote set-url mislav git@github.com:MiSlAv/my-dotfiles.git" should be run
And the url for "mislav" should be "git@github.com:MiSlAv/my-dotfiles.git"
Scenario: Fork the repository when origin URL is private
Given the "origin" remote has url "git@github.com:evilchelu/dotfiles.git"
Given the GitHub API server:
"""
before { halt 401 unless request.env['HTTP_AUTHORIZATION'] == 'token OTOKEN' }
get('/repos/mislav/dotfiles', :host_name => 'api.github.com') { 404 }
post('/repos/evilchelu/dotfiles/forks', :host_name => 'api.github.com') {
status 202
json :name => 'dotfiles', :owner => { :login => 'mislav' }
}
"""
When I successfully run `hub fork`
Then the output should contain exactly "new remote: mislav\n"
And "git remote add -f mislav ssh://git@github.com/evilchelu/dotfiles.git" should be run
And "git remote set-url mislav git@github.com:mislav/dotfiles.git" should be run
And the url for "mislav" should be "git@github.com:mislav/dotfiles.git"
Scenario: --no-remote
Given the GitHub API server:
"""
post('/repos/evilchelu/dotfiles/forks') {
status 202
json :name => 'dotfiles', :owner => { :login => 'mislav' }
}
"""
When I successfully run `hub fork --no-remote`
Then the output should not contain anything
And there should be no "mislav" remote
Scenario: Fork failed
Given the GitHub API server:
"""
post('/repos/evilchelu/dotfiles/forks') { halt 500 }
"""
When I run `hub fork`
Then the exit status should be 1
And the stderr should contain exactly:
"""
Error creating fork: Internal Server Error (HTTP 500)\n
"""
And there should be no "mislav" remote
Scenario: Unrelated fork already exists
Given the GitHub API server:
"""
get('/repos/mislav/dotfiles') {
halt 406 unless request.env['HTTP_ACCEPT'] == 'application/vnd.github.v3+json;charset=utf-8'
json :html_url => 'https://github.com/mislav/dotfiles',
:parent => { :html_url => 'https://github.com/unrelated/dotfiles' }
}
"""
When I run `hub fork`
Then the exit status should be 1
And the stderr should contain exactly:
"""
Error creating fork: mislav/dotfiles already exists on github.com\n
"""
And there should be no "mislav" remote
Scenario: Related fork already exists
Given the GitHub API server:
"""
get('/repos/mislav/dotfiles') {
json :html_url => 'https://github.com/mislav/dotfiles',
:parent => { :html_url => 'https://github.com/EvilChelu/Dotfiles' }
}
"""
When I run `hub fork`
Then the exit status should be 0
Then the stdout should contain exactly:
"""
new remote: mislav\n
"""
And the url for "mislav" should be "git@github.com:mislav/dotfiles.git"
Scenario: Redirected repo already exists
Given the GitHub API server:
"""
get('/repos/mislav/dotfiles') {
redirect 'https://api.github.com/repositories/12345', 301
}
get('/repositories/12345') {
json :html_url => 'https://github.com/mislav/old-dotfiles'
}
post('/repos/evilchelu/dotfiles/forks') {
status 202
json :name => 'dotfiles', :owner => { :login => 'mislav' }
}
"""
When I successfully run `hub fork`
And the stdout should contain exactly "new remote: mislav\n"
Scenario: Unrelated remote already exists
Given the "mislav" remote has url "git@github.com:mislav/unrelated.git"
Given the GitHub API server:
"""
get('/repos/mislav/dotfiles', :host_name => 'api.github.com') { 404 }
post('/repos/evilchelu/dotfiles/forks', :host_name => 'api.github.com') {
assert :organization => nil
status 202
json :name => 'dotfiles', :owner => { :login => 'mislav' }
}
"""
When I run `hub fork`
Then the exit status should be 128
And the stderr should contain exactly:
"""
fatal: remote mislav already exists.\n
"""
And the url for "mislav" should be "git@github.com:mislav/unrelated.git"
Scenario: Related fork and related remote already exist
Given the "mislav" remote has url "git@github.com:mislav/dotfiles.git"
Given the GitHub API server:
"""
get('/repos/mislav/dotfiles') {
json :html_url => 'https://github.com/mislav/dotfiles',
:parent => { :html_url => 'https://github.com/EvilChelu/Dotfiles' }
}
"""
When I run `hub fork`
Then the exit status should be 0
And the stdout should contain exactly:
"""
existing remote: mislav\n
"""
And the url for "mislav" should be "git@github.com:mislav/dotfiles.git"
Scenario: Related fork and related remote, but with differing protocol, already exist
Given the "mislav" remote has url "https://github.com/mislav/dotfiles.git"
Given the GitHub API server:
"""
get('/repos/mislav/dotfiles') {
json :html_url => 'https://github.com/mislav/dotfiles',
:parent => { :html_url => 'https://github.com/EvilChelu/Dotfiles' }
}
"""
When I run `hub fork`
Then the exit status should be 0
And the stdout should contain exactly:
"""
existing remote: mislav\n
"""
And the url for "mislav" should be "https://github.com/mislav/dotfiles.git"
Scenario: Invalid OAuth token
Given the GitHub API server:
"""
before { halt 401 unless request.env['HTTP_AUTHORIZATION'] == 'token OTOKEN' }
"""
And I am "mislav" on github.com with OAuth token "WRONGTOKEN"
When I run `hub fork`
Then the exit status should be 1
And the stderr should contain exactly:
"""
Error creating fork: Unauthorized (HTTP 401)\n
"""
Scenario: HTTPS is preferred
Given the GitHub API server:
"""
post('/repos/evilchelu/dotfiles/forks') {
status 202
json :name => 'dotfiles', :owner => { :login => 'mislav' }
}
"""
And HTTPS is preferred
When I successfully run `hub fork`
Then the output should contain exactly "new remote: mislav\n"
And the url for "mislav" should be "https://github.com/mislav/dotfiles.git"
Scenario: Not in repo
Given the current dir is not a repo
When I run `hub fork`
Then the exit status should be 1
And the stderr should contain "fatal: Not a git repository"
Scenario: Origin remote doesn't exist
Given I run `git remote rm origin`
When I run `hub fork`
Then the exit status should be 1
And the stderr should contain exactly:
"""
Aborted: could not find any git remote pointing to a GitHub repository\n
"""
And there should be no "origin" remote
Scenario: Unknown host
Given the "origin" remote has url "git@git.my.org:evilchelu/dotfiles.git"
When I run `hub fork`
Then the exit status should be 1
And the stderr should contain exactly:
"""
Aborted: could not find any git remote pointing to a GitHub repository\n
"""
Scenario: Enterprise fork
Given the GitHub API server:
"""
before {
halt 400 unless request.env['HTTP_X_ORIGINAL_SCHEME'] == 'https'
halt 401 unless request.env['HTTP_AUTHORIZATION'] == 'token FITOKEN'
}
post('/api/v3/repos/evilchelu/dotfiles/forks', :host_name => 'git.my.org') {
status 202
json :name => 'dotfiles', :owner => { :login => 'mislav' }
}
"""
And the "origin" remote has url "git@git.my.org:evilchelu/dotfiles.git"
And I am "mislav" on git.my.org with OAuth token "FITOKEN"
And "git.my.org" is a whitelisted Enterprise host
When I successfully run `hub fork`
Then the url for "mislav" should be "git@git.my.org:mislav/dotfiles.git"
Scenario: Enterprise fork using regular HTTP
Given the GitHub API server:
"""
before {
halt 400 unless request.env['HTTP_X_ORIGINAL_SCHEME'] == 'http'
halt 400 unless request.env['HTTP_X_ORIGINAL_PORT'] == '80'
halt 401 unless request.env['HTTP_AUTHORIZATION'] == 'token FITOKEN'
}
post('/api/v3/repos/evilchelu/dotfiles/forks', :host_name => 'git.my.org') {
status 202
json :name => 'dotfiles', :owner => { :login => 'mislav' }
}
"""
And the "origin" remote has url "git@git.my.org:evilchelu/dotfiles.git"
And I am "mislav" on http://git.my.org with OAuth token "FITOKEN"
And "git.my.org" is a whitelisted Enterprise host
When I successfully run `hub fork`
Then the url for "mislav" should be "git@git.my.org:mislav/dotfiles.git"
Scenario: Fork a repo to a specific organization
Given the GitHub API server:
"""
get('/repos/acme/dotfiles') { 404 }
post('/repos/evilchelu/dotfiles/forks') {
assert :organization => "acme"
status 202
json :name => 'dotfiles', :owner => { :login => 'acme' }
}
"""
When I successfully run `hub fork --org=acme`
Then the output should contain exactly "new remote: acme\n"
Then the url for "acme" should be "git@github.com:acme/dotfiles.git"