|
11 | 11 | context 'when working with an external API' do
|
12 | 12 | it 'makes requests with respect to that endpoint' do
|
13 | 13 | proxy.stub('https://test.example.com:443/repos/jtarchie/test/pulls')
|
14 |
| - .and_return(json: []) |
| 14 | + .and_return(json: []) |
15 | 15 |
|
16 | 16 | 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 [] |
20 | 20 | end
|
21 | 21 | end
|
22 | 22 |
|
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 } } |
28 | 37 |
|
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 |
31 | 44 | end
|
32 | 45 |
|
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 |
36 | 51 |
|
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 } } |
39 | 59 |
|
40 |
| - expect(check(payload)).to eq [] |
| 60 | + expect(check(payload)).to eq [ |
| 61 | + { 'ref' => 'abcdef', 'pr' => '1' } |
| 62 | + ] |
| 63 | + end |
41 | 64 | end
|
42 | 65 | end
|
43 |
| - end |
44 | 66 |
|
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 |
49 | 82 | end
|
| 83 | + end |
50 | 84 |
|
51 |
| - context 'that has no status' do |
| 85 | + context 'with current check steps' do |
| 86 | + context 'when there are no pull requests' do |
52 | 87 | 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') |
54 | 89 | .and_return(json: [])
|
55 | 90 | end
|
56 | 91 |
|
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 [] |
59 | 94 | end
|
60 | 95 |
|
61 |
| - context 'and the version is the same as the pull request' do |
| 96 | + context 'when there is a last known version' do |
62 | 97 | 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: {}) |
64 | 102 |
|
65 | 103 | expect(check(payload)).to eq []
|
66 | 104 | end
|
67 | 105 | end
|
68 | 106 | end
|
69 | 107 |
|
70 |
| - context 'that has a pending status' do |
| 108 | + context 'when there is an open pull request' do |
71 | 109 | 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' } }]) |
74 | 112 | end
|
75 | 113 |
|
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 |
78 | 131 | end
|
79 | 132 |
|
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 | + |
81 | 139 | 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 |
83 | 142 |
|
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 |
85 | 149 | end
|
86 | 150 | end
|
87 |
| - end |
88 | 151 |
|
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 | + ]) |
96 | 159 |
|
97 |
| - expect(check(source: { repo: 'jtarchie/test' }, version: {})).to eq [] |
| 160 | + expect(check(source: { repo: 'jtarchie/test' }, version: {})).to eq [] |
| 161 | + end |
98 | 162 | end
|
99 | 163 | end
|
100 |
| - end |
101 | 164 |
|
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 |
110 | 173 |
|
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' } } |
114 | 177 |
|
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' }]) |
117 | 180 |
|
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: []) |
120 | 183 |
|
121 |
| - expect(check(payload)).to eq [{ 'ref' => 'zyxwvu', 'pr' => '2' }] |
122 |
| - end |
| 184 | + expect(check(payload)).to eq [{ 'ref' => 'zyxwvu', 'pr' => '2' }] |
| 185 | + end |
123 | 186 |
|
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' } } |
126 | 189 |
|
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' }]) |
129 | 192 |
|
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' }]) |
132 | 195 |
|
133 |
| - expect(check(payload)).to eq [] |
| 196 | + expect(check(payload)).to eq [] |
| 197 | + end |
134 | 198 | end
|
135 | 199 | end
|
136 | 200 | end
|
|
0 commit comments