Skip to content
This repository was archived by the owner on Nov 8, 2018. It is now read-only.

Commit 4e65a8f

Browse files
committed
add support for version: every in the check step
1 parent 9519fa9 commit 4e65a8f

File tree

5 files changed

+155
-74
lines changed

5 files changed

+155
-74
lines changed

README.md

+4
Original file line numberDiff line numberDiff line change
@@ -51,6 +51,10 @@ resource_types:
5151
* `api_endpoint`: *Optional.* If the repository is located on a GitHub Enterprise
5252
instance you need to specify the base api endpoint (e.g. "https://\<hostname\>/api/v3/").
5353

54+
* `every`: *Optional* If set to `true`, it will override the `check` step so every pull request can be iterated
55+
through, without relying on a status being on it. This feature should only be used in
56+
concourse version 1.2.x and higher and the [`version: every`](http://concourse.ci/get-step.html#get-version).
57+
5458
## Behavior
5559

5660
### `check`: Check for new pull requests

assets/lib/check.rb

+8-4
Original file line numberDiff line numberDiff line change
@@ -10,9 +10,13 @@
1010

1111
input['version'] ||= {}
1212

13-
next_pull_request = repo.next_pull_request(id: input['version']['pr'], sha: input['version']['ref'])
14-
if next_pull_request
15-
json!([next_pull_request.as_json])
13+
if input['source']['every']
14+
json!(repo.pull_requests.map(&:as_json))
1615
else
17-
json!([])
16+
next_pull_request = repo.next_pull_request(id: input['version']['pr'], sha: input['version']['ref'])
17+
if next_pull_request
18+
json!([next_pull_request.as_json])
19+
else
20+
json!([])
21+
end
1822
end

assets/lib/in.rb

+2
Original file line numberDiff line numberDiff line change
@@ -17,6 +17,8 @@ def ref
1717
input['version']['ref']
1818
end
1919

20+
$stderr.puts 'DEPRECATION: Please note that you should update to using `version: every` on your `get` for this resource.'
21+
2022
pr = Octokit.pull_request(input['source']['repo'], input['version']['pr'])
2123
id = pr['number']
2224
branch_ref = pr['head']['ref']

spec/integration/check_spec.rb

+134-70
Original file line numberDiff line numberDiff line change
@@ -11,126 +11,190 @@
1111
context 'when working with an external API' do
1212
it 'makes requests with respect to that endpoint' do
1313
proxy.stub('https://test.example.com:443/repos/jtarchie/test/pulls')
14-
.and_return(json: [])
14+
.and_return(json: [])
1515

1616
expect(check(source: {
17-
repo: 'jtarchie/test',
18-
api_endpoint: 'https://test.example.com'
19-
})).to eq []
17+
repo: 'jtarchie/test',
18+
api_endpoint: 'https://test.example.com'
19+
})).to eq []
2020
end
2121
end
2222

23-
context 'when there are no pull requests' do
24-
before do
25-
proxy.stub('https://api.github.com:443/repos/jtarchie/test/pulls')
26-
.and_return(json: [])
27-
end
23+
context 'with check for `version: every`' do
24+
context 'when there are no pull requests' do
25+
before do
26+
proxy.stub('https://api.github.com:443/repos/jtarchie/test/pulls')
27+
.and_return(json: [])
28+
end
29+
30+
it 'returns no versions' do
31+
expect(check(source: { repo: 'jtarchie/test', every: true })).to eq []
32+
end
33+
34+
context 'when there is a last known version' do
35+
it 'returns no versions' do
36+
payload = { version: { ref: '1' }, source: { repo: 'jtarchie/test', every: true } }
2837

29-
it 'returns no versions' do
30-
expect(check(source: { repo: 'jtarchie/test' })).to eq []
38+
proxy.stub('https://api.github.com:443/repos/jtarchie/test/pulls/1')
39+
.and_return(json: {})
40+
41+
expect(check(payload)).to eq []
42+
end
43+
end
3144
end
3245

33-
context 'when there is a last known version' do
34-
it 'returns no versions' do
35-
payload = { version: { ref: '1' }, source: { repo: 'jtarchie/test' } }
46+
context 'when there is an open pull request' do
47+
before do
48+
proxy.stub('https://api.github.com:443/repos/jtarchie/test/pulls')
49+
.and_return(json: [{ number: 1, head: { sha: 'abcdef' } }])
50+
end
3651

37-
proxy.stub('https://api.github.com:443/repos/jtarchie/test/pulls/1')
38-
.and_return(json: {})
52+
it 'returns SHA of the pull request' do
53+
expect(check(source: { repo: 'jtarchie/test', every: true }, version: {})).to eq [{ 'ref' => 'abcdef', 'pr' => '1' }]
54+
end
55+
56+
context 'and the version is the same as the pull request' do
57+
it 'returns that pull request' do
58+
payload = { version: { ref: 'abcdef', pr: '1' }, source: { repo: 'jtarchie/test', every: true } }
3959

40-
expect(check(payload)).to eq []
60+
expect(check(payload)).to eq [
61+
{ 'ref' => 'abcdef', 'pr' => '1' }
62+
]
63+
end
4164
end
4265
end
43-
end
4466

45-
context 'when there is an open pull request' do
46-
before do
47-
proxy.stub('https://api.github.com:443/repos/jtarchie/test/pulls')
48-
.and_return(json: [{ number: 1, head: { sha: 'abcdef' } }])
67+
context 'when there is more than one open pull request' do
68+
before do
69+
proxy.stub('https://api.github.com:443/repos/jtarchie/test/pulls')
70+
.and_return(json: [
71+
{ number: 2, head: { sha: 'zyxwvu' } },
72+
{ number: 1, head: { sha: 'abcdef' } }
73+
])
74+
end
75+
76+
it 'returns all the pull request SHAs' do
77+
expect(check(source: { repo: 'jtarchie/test', every: true }, version: {})).to eq [
78+
{ 'ref' => 'zyxwvu', 'pr' => '2' },
79+
{ 'ref' => 'abcdef', 'pr' => '1' }
80+
]
81+
end
4982
end
83+
end
5084

51-
context 'that has no status' do
85+
context 'with current check steps' do
86+
context 'when there are no pull requests' do
5287
before do
53-
proxy.stub('https://api.github.com:443/repos/jtarchie/test/statuses/abcdef')
88+
proxy.stub('https://api.github.com:443/repos/jtarchie/test/pulls')
5489
.and_return(json: [])
5590
end
5691

57-
it 'returns SHA of the pull request' do
58-
expect(check(source: { repo: 'jtarchie/test' }, version: {})).to eq [{ 'ref' => 'abcdef', 'pr' => '1' }]
92+
it 'returns no versions' do
93+
expect(check(source: { repo: 'jtarchie/test' })).to eq []
5994
end
6095

61-
context 'and the version is the same as the pull request' do
96+
context 'when there is a last known version' do
6297
it 'returns no versions' do
63-
payload = { version: { ref: 'abcdef', pr: '1' }, source: { repo: 'jtarchie/test' } }
98+
payload = { version: { ref: '1' }, source: { repo: 'jtarchie/test' } }
99+
100+
proxy.stub('https://api.github.com:443/repos/jtarchie/test/pulls/1')
101+
.and_return(json: {})
64102

65103
expect(check(payload)).to eq []
66104
end
67105
end
68106
end
69107

70-
context 'that has a pending status' do
108+
context 'when there is an open pull request' do
71109
before do
72-
proxy.stub('https://api.github.com:443/repos/jtarchie/test/statuses/abcdef')
73-
.and_return(json: [{ state: 'pending', context: 'concourse-ci' }])
110+
proxy.stub('https://api.github.com:443/repos/jtarchie/test/pulls')
111+
.and_return(json: [{ number: 1, head: { sha: 'abcdef' } }])
74112
end
75113

76-
it 'returns no versions' do
77-
expect(check(source: { repo: 'jtarchie/test' }, version: {})).to eq []
114+
context 'that has no status' do
115+
before do
116+
proxy.stub('https://api.github.com:443/repos/jtarchie/test/statuses/abcdef')
117+
.and_return(json: [])
118+
end
119+
120+
it 'returns SHA of the pull request' do
121+
expect(check(source: { repo: 'jtarchie/test' }, version: {})).to eq [{ 'ref' => 'abcdef', 'pr' => '1' }]
122+
end
123+
124+
context 'and the version is the same as the pull request' do
125+
it 'returns no versions' do
126+
payload = { version: { ref: 'abcdef', pr: '1' }, source: { repo: 'jtarchie/test' } }
127+
128+
expect(check(payload)).to eq []
129+
end
130+
end
78131
end
79132

80-
context 'and the version is the same as the pull request' do
133+
context 'that has a pending status' do
134+
before do
135+
proxy.stub('https://api.github.com:443/repos/jtarchie/test/statuses/abcdef')
136+
.and_return(json: [{ state: 'pending', context: 'concourse-ci' }])
137+
end
138+
81139
it 'returns no versions' do
82-
payload = { version: { ref: 'abcdef', pr: '1' }, source: { repo: 'jtarchie/test' } }
140+
expect(check(source: { repo: 'jtarchie/test' }, version: {})).to eq []
141+
end
83142

84-
expect(check(payload)).to eq []
143+
context 'and the version is the same as the pull request' do
144+
it 'returns no versions' do
145+
payload = { version: { ref: 'abcdef', pr: '1' }, source: { repo: 'jtarchie/test' } }
146+
147+
expect(check(payload)).to eq []
148+
end
85149
end
86150
end
87-
end
88151

89-
context 'that has another status' do
90-
it 'does not return it' do
91-
proxy.stub('https://api.github.com:443/repos/jtarchie/test/statuses/abcdef')
92-
.and_return(json: [
93-
{ state: 'pending', context: 'concourse-ci' },
94-
{ state: 'success', context: 'concourse-ci' }
95-
])
152+
context 'that has another status' do
153+
it 'does not return it' do
154+
proxy.stub('https://api.github.com:443/repos/jtarchie/test/statuses/abcdef')
155+
.and_return(json: [
156+
{ state: 'pending', context: 'concourse-ci' },
157+
{ state: 'success', context: 'concourse-ci' }
158+
])
96159

97-
expect(check(source: { repo: 'jtarchie/test' }, version: {})).to eq []
160+
expect(check(source: { repo: 'jtarchie/test' }, version: {})).to eq []
161+
end
98162
end
99163
end
100-
end
101164

102-
context 'when there is more than one open pull request' do
103-
before do
104-
proxy.stub('https://api.github.com:443/repos/jtarchie/test/pulls')
105-
.and_return(json: [
106-
{ number: 2, head: { sha: 'zyxwvu' } },
107-
{ number: 1, head: { sha: 'abcdef' } }
108-
])
109-
end
165+
context 'when there is more than one open pull request' do
166+
before do
167+
proxy.stub('https://api.github.com:443/repos/jtarchie/test/pulls')
168+
.and_return(json: [
169+
{ number: 2, head: { sha: 'zyxwvu' } },
170+
{ number: 1, head: { sha: 'abcdef' } }
171+
])
172+
end
110173

111-
context 'and the version is the same as the older pull request' do
112-
it 'returns the latest pull request when the current version is not pending' do
113-
payload = { version: { ref: 'abcdef', pr: '1' }, source: { repo: 'jtarchie/test' } }
174+
context 'and the version is the same as the older pull request' do
175+
it 'returns the latest pull request when the current version is not pending' do
176+
payload = { version: { ref: 'abcdef', pr: '1' }, source: { repo: 'jtarchie/test' } }
114177

115-
proxy.stub('https://api.github.com:443/repos/jtarchie/test/statuses/abcdef')
116-
.and_return(json: [{ state: 'pending', context: 'concourse-ci' }])
178+
proxy.stub('https://api.github.com:443/repos/jtarchie/test/statuses/abcdef')
179+
.and_return(json: [{ state: 'pending', context: 'concourse-ci' }])
117180

118-
proxy.stub('https://api.github.com:443/repos/jtarchie/test/statuses/zyxwvu')
119-
.and_return(json: [])
181+
proxy.stub('https://api.github.com:443/repos/jtarchie/test/statuses/zyxwvu')
182+
.and_return(json: [])
120183

121-
expect(check(payload)).to eq [{ 'ref' => 'zyxwvu', 'pr' => '2' }]
122-
end
184+
expect(check(payload)).to eq [{ 'ref' => 'zyxwvu', 'pr' => '2' }]
185+
end
123186

124-
it 'returns nothing when its still pending' do
125-
payload = { version: { ref: 'abcdef', pr: '1' }, source: { repo: 'jtarchie/test' } }
187+
it 'returns nothing when its still pending' do
188+
payload = { version: { ref: 'abcdef', pr: '1' }, source: { repo: 'jtarchie/test' } }
126189

127-
proxy.stub('https://api.github.com:443/repos/jtarchie/test/statuses/abcdef')
128-
.and_return(json: [{ state: 'success', context: 'concourse-ci' }])
190+
proxy.stub('https://api.github.com:443/repos/jtarchie/test/statuses/abcdef')
191+
.and_return(json: [{ state: 'success', context: 'concourse-ci' }])
129192

130-
proxy.stub('https://api.github.com:443/repos/jtarchie/test/statuses/zyxwvu')
131-
.and_return(json: [{ state: 'pending', context: 'concourse-ci' }])
193+
proxy.stub('https://api.github.com:443/repos/jtarchie/test/statuses/zyxwvu')
194+
.and_return(json: [{ state: 'pending', context: 'concourse-ci' }])
132195

133-
expect(check(payload)).to eq []
196+
expect(check(payload)).to eq []
197+
end
134198
end
135199
end
136200
end

spec/integration/in_spec.rb

+7
Original file line numberDiff line numberDiff line change
@@ -72,4 +72,11 @@ def commit(msg)
7272
expect(error).to include 'git clone failed'
7373
end
7474
end
75+
76+
context 'when `every` is not defined' do
77+
it 'shows a deprecation warning' do
78+
_, error = get(version: { ref: @ref, pr: '1' }, source: { uri: git_uri, repo: 'jtarchie/test' })
79+
expect(error).to include 'DEPRECATION: Please note that you should update to using `version: every` on your `get` for this resource.'
80+
end
81+
end
7582
end

0 commit comments

Comments
 (0)