jira-ruby 2.3.0 → 3.0.0.beta2
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- checksums.yaml +4 -4
- data/.github/ISSUE_TEMPLATE/bug_report.md +20 -0
- data/.github/ISSUE_TEMPLATE/feature_request.md +20 -0
- data/.github/dependabot.yml +6 -0
- data/.github/workflows/CI.yml +29 -0
- data/.github/workflows/codeql.yml +96 -0
- data/.github/workflows/rubocop.yml +18 -0
- data/.gitignore +3 -1
- data/.rubocop.yml +120 -0
- data/.yardopts +4 -0
- data/Gemfile +11 -3
- data/Guardfile +2 -0
- data/README.md +94 -18
- data/Rakefile +3 -4
- data/jira-ruby.gemspec +11 -17
- data/lib/jira/base.rb +37 -36
- data/lib/jira/base_factory.rb +4 -1
- data/lib/jira/client.rb +123 -50
- data/lib/jira/has_many_proxy.rb +32 -28
- data/lib/jira/http_client.rb +80 -13
- data/lib/jira/http_error.rb +4 -0
- data/lib/jira/jwt_client.rb +18 -42
- data/lib/jira/oauth_client.rb +68 -3
- data/lib/jira/railtie.rb +2 -0
- data/lib/jira/request_client.rb +31 -2
- data/lib/jira/resource/agile.rb +7 -9
- data/lib/jira/resource/applinks.rb +5 -3
- data/lib/jira/resource/attachment.rb +128 -3
- data/lib/jira/resource/board.rb +5 -3
- data/lib/jira/resource/board_configuration.rb +2 -0
- data/lib/jira/resource/comment.rb +2 -0
- data/lib/jira/resource/component.rb +2 -0
- data/lib/jira/resource/createmeta.rb +3 -1
- data/lib/jira/resource/field.rb +13 -12
- data/lib/jira/resource/filter.rb +2 -0
- data/lib/jira/resource/issue.rb +95 -44
- data/lib/jira/resource/issue_picker_suggestions.rb +4 -1
- data/lib/jira/resource/issue_picker_suggestions_issue.rb +2 -0
- data/lib/jira/resource/issuelink.rb +6 -3
- data/lib/jira/resource/issuelinktype.rb +2 -0
- data/lib/jira/resource/issuetype.rb +2 -0
- data/lib/jira/resource/priority.rb +2 -0
- data/lib/jira/resource/project.rb +4 -2
- data/lib/jira/resource/rapidview.rb +5 -3
- data/lib/jira/resource/remotelink.rb +2 -0
- data/lib/jira/resource/resolution.rb +2 -0
- data/lib/jira/resource/serverinfo.rb +2 -0
- data/lib/jira/resource/sprint.rb +14 -23
- data/lib/jira/resource/status.rb +7 -1
- data/lib/jira/resource/status_category.rb +10 -0
- data/lib/jira/resource/suggested_issue.rb +2 -0
- data/lib/jira/resource/transition.rb +2 -0
- data/lib/jira/resource/user.rb +3 -1
- data/lib/jira/resource/version.rb +2 -0
- data/lib/jira/resource/watcher.rb +3 -2
- data/lib/jira/resource/webhook.rb +9 -3
- data/lib/jira/resource/worklog.rb +3 -2
- data/lib/jira/version.rb +3 -1
- data/lib/jira-ruby.rb +5 -3
- data/lib/tasks/generate.rake +3 -1
- data/spec/data/files/short.txt +1 -0
- data/spec/integration/attachment_spec.rb +3 -3
- data/spec/integration/comment_spec.rb +8 -8
- data/spec/integration/component_spec.rb +7 -7
- data/spec/integration/field_spec.rb +3 -3
- data/spec/integration/issue_spec.rb +20 -16
- data/spec/integration/issuelinktype_spec.rb +3 -3
- data/spec/integration/issuetype_spec.rb +3 -3
- data/spec/integration/priority_spec.rb +3 -3
- data/spec/integration/project_spec.rb +8 -8
- data/spec/integration/rapidview_spec.rb +10 -10
- data/spec/integration/resolution_spec.rb +3 -3
- data/spec/integration/status_category_spec.rb +20 -0
- data/spec/integration/status_spec.rb +4 -8
- data/spec/integration/transition_spec.rb +2 -2
- data/spec/integration/user_spec.rb +34 -11
- data/spec/integration/version_spec.rb +7 -7
- data/spec/integration/watcher_spec.rb +21 -18
- data/spec/integration/webhook_spec.rb +33 -0
- data/spec/integration/worklog_spec.rb +8 -8
- data/spec/jira/base_factory_spec.rb +13 -3
- data/spec/jira/base_spec.rb +135 -98
- data/spec/jira/client_spec.rb +63 -47
- data/spec/jira/has_many_proxy_spec.rb +3 -3
- data/spec/jira/http_client_spec.rb +94 -27
- data/spec/jira/http_error_spec.rb +2 -2
- data/spec/jira/oauth_client_spec.rb +14 -8
- data/spec/jira/request_client_spec.rb +4 -4
- data/spec/jira/resource/agile_spec.rb +30 -30
- data/spec/jira/resource/attachment_spec.rb +170 -57
- data/spec/jira/resource/board_spec.rb +24 -23
- data/spec/jira/resource/createmeta_spec.rb +48 -48
- data/spec/jira/resource/field_spec.rb +44 -27
- data/spec/jira/resource/filter_spec.rb +4 -4
- data/spec/jira/resource/issue_picker_suggestions_spec.rb +17 -17
- data/spec/jira/resource/issue_spec.rb +49 -43
- data/spec/jira/resource/jira_picker_suggestions_issue_spec.rb +3 -3
- data/spec/jira/resource/project_factory_spec.rb +3 -2
- data/spec/jira/resource/project_spec.rb +14 -14
- data/spec/jira/resource/sprint_spec.rb +88 -9
- data/spec/jira/resource/status_spec.rb +21 -0
- data/spec/jira/resource/user_factory_spec.rb +5 -5
- data/spec/jira/resource/worklog_spec.rb +4 -4
- data/spec/mock_responses/sprint/1.json +13 -0
- data/spec/mock_responses/status/1.json +8 -1
- data/spec/mock_responses/status.json +40 -5
- data/spec/mock_responses/statuscategory/1.json +7 -0
- data/spec/mock_responses/statuscategory.json +30 -0
- data/spec/mock_responses/{user_username=admin.json → user_accountId=1234567890abcdef01234567.json} +2 -1
- data/spec/spec_helper.rb +1 -0
- data/spec/support/clients_helper.rb +3 -5
- data/spec/support/mock_client.rb +9 -0
- data/spec/support/mock_response.rb +8 -0
- data/spec/support/shared_examples/integration.rb +25 -28
- metadata +27 -260
- data/.travis.yml +0 -9
- data/example.rb +0 -232
- data/http-basic-example.rb +0 -113
- data/lib/jira/resource/sprint_report.rb +0 -8
- data/lib/jira/tasks.rb +0 -0
- data/spec/integration/webhook.rb +0 -25
- data/spec/jira/jwt_uri_builder_spec.rb +0 -59
@@ -18,24 +18,24 @@ describe JIRA::Resource::Createmeta do
|
|
18
18
|
end
|
19
19
|
|
20
20
|
describe 'general' do
|
21
|
-
it '
|
21
|
+
it 'queries correct url without parameters' do
|
22
22
|
expect(client).to receive(:get).with('/jira/rest/api/2/issue/createmeta').and_return(response)
|
23
|
-
|
23
|
+
described_class.all(client)
|
24
24
|
end
|
25
25
|
|
26
|
-
it '
|
26
|
+
it 'queries correct url with `expand` parameter' do
|
27
27
|
expect(client).to receive(:get).with('/jira/rest/api/2/issue/createmeta?expand=projects.issuetypes.fields').and_return(response)
|
28
|
-
|
28
|
+
described_class.all(client, expand: 'projects.issuetypes.fields')
|
29
29
|
end
|
30
30
|
|
31
|
-
it '
|
31
|
+
it 'queries correct url with `foo` parameter' do
|
32
32
|
expect(client).to receive(:get).with('/jira/rest/api/2/issue/createmeta?foo=bar').and_return(response)
|
33
|
-
|
33
|
+
described_class.all(client, foo: 'bar')
|
34
34
|
end
|
35
35
|
|
36
|
-
it '
|
36
|
+
it 'returns an array of createmeta objects' do
|
37
37
|
expect(client).to receive(:get).with('/jira/rest/api/2/issue/createmeta').and_return(response)
|
38
|
-
createmetas =
|
38
|
+
createmetas = described_class.all(client)
|
39
39
|
expect(createmetas).to be_an Array
|
40
40
|
createmeta = createmetas.first
|
41
41
|
expect(createmeta.id).to eq '10200'
|
@@ -45,52 +45,52 @@ describe JIRA::Resource::Createmeta do
|
|
45
45
|
end
|
46
46
|
|
47
47
|
describe 'projectKeys' do
|
48
|
-
it '
|
48
|
+
it 'queries correct url when only one `projectKeys` given as string' do
|
49
49
|
expect(client).to receive(:get).with('/jira/rest/api/2/issue/createmeta?projectKeys=PROJECT_1').and_return(response)
|
50
|
-
|
50
|
+
described_class.all(
|
51
51
|
client,
|
52
52
|
projectKeys: 'PROJECT_1'
|
53
53
|
)
|
54
54
|
end
|
55
55
|
|
56
|
-
it '
|
56
|
+
it 'queries correct url when multiple `projectKeys` given as string' do
|
57
57
|
expect(client).to receive(:get).with('/jira/rest/api/2/issue/createmeta?projectKeys=PROJECT_1%2CPROJECT_2').and_return(response)
|
58
|
-
|
58
|
+
described_class.all(
|
59
59
|
client,
|
60
60
|
projectKeys: %w[PROJECT_1 PROJECT_2]
|
61
61
|
)
|
62
62
|
end
|
63
63
|
|
64
|
-
it '
|
64
|
+
it 'queries correct url when only one `projectKeys` given as Project' do
|
65
65
|
prj = JIRA::Resource::Project.new(client)
|
66
66
|
allow(prj).to receive(:key).and_return('PRJ')
|
67
67
|
|
68
68
|
expect(client).to receive(:get).with('/jira/rest/api/2/issue/createmeta?projectKeys=PRJ').and_return(response)
|
69
|
-
|
69
|
+
described_class.all(
|
70
70
|
client,
|
71
71
|
projectKeys: prj
|
72
72
|
)
|
73
73
|
end
|
74
74
|
|
75
|
-
it '
|
75
|
+
it 'queries correct url when multiple `projectKeys` given as Project' do
|
76
76
|
prj_1 = JIRA::Resource::Project.new(client)
|
77
77
|
allow(prj_1).to receive(:key).and_return('PRJ_1')
|
78
78
|
prj_2 = JIRA::Resource::Project.new(client)
|
79
79
|
allow(prj_2).to receive(:key).and_return('PRJ_2')
|
80
80
|
|
81
81
|
expect(client).to receive(:get).with('/jira/rest/api/2/issue/createmeta?projectKeys=PRJ_2%2CPRJ_1').and_return(response)
|
82
|
-
|
82
|
+
described_class.all(
|
83
83
|
client,
|
84
84
|
projectKeys: [prj_2, prj_1]
|
85
85
|
)
|
86
86
|
end
|
87
87
|
|
88
|
-
it '
|
88
|
+
it 'queries correct url when multiple `projectKeys` given as different types' do
|
89
89
|
prj_5 = JIRA::Resource::Project.new(client)
|
90
90
|
allow(prj_5).to receive(:key).and_return('PRJ_5')
|
91
91
|
|
92
92
|
expect(client).to receive(:get).with('/jira/rest/api/2/issue/createmeta?projectKeys=PROJECT_1%2CPRJ_5').and_return(response)
|
93
|
-
|
93
|
+
described_class.all(
|
94
94
|
client,
|
95
95
|
projectKeys: ['PROJECT_1', prj_5]
|
96
96
|
)
|
@@ -98,52 +98,52 @@ describe JIRA::Resource::Createmeta do
|
|
98
98
|
end
|
99
99
|
|
100
100
|
describe 'projectIds' do
|
101
|
-
it '
|
101
|
+
it 'queries correct url when only one `projectIds` given as string' do
|
102
102
|
expect(client).to receive(:get).with('/jira/rest/api/2/issue/createmeta?projectIds=10101').and_return(response)
|
103
|
-
|
103
|
+
described_class.all(
|
104
104
|
client,
|
105
105
|
projectIds: '10101'
|
106
106
|
)
|
107
107
|
end
|
108
108
|
|
109
|
-
it '
|
109
|
+
it 'queries correct url when multiple `projectIds` given as string' do
|
110
110
|
expect(client).to receive(:get).with('/jira/rest/api/2/issue/createmeta?projectIds=10101%2C20202').and_return(response)
|
111
|
-
|
111
|
+
described_class.all(
|
112
112
|
client,
|
113
113
|
projectIds: %w[10101 20202]
|
114
114
|
)
|
115
115
|
end
|
116
116
|
|
117
|
-
it '
|
117
|
+
it 'queries correct url when only one `projectIds` given as Project' do
|
118
118
|
prj = JIRA::Resource::Project.new(client)
|
119
119
|
allow(prj).to receive(:id).and_return('30303')
|
120
120
|
|
121
121
|
expect(client).to receive(:get).with('/jira/rest/api/2/issue/createmeta?projectIds=30303').and_return(response)
|
122
|
-
|
122
|
+
described_class.all(
|
123
123
|
client,
|
124
124
|
projectIds: prj
|
125
125
|
)
|
126
126
|
end
|
127
127
|
|
128
|
-
it '
|
128
|
+
it 'queries correct url when multiple `projectIds` given as Project' do
|
129
129
|
prj_1 = JIRA::Resource::Project.new(client)
|
130
130
|
allow(prj_1).to receive(:id).and_return('30303')
|
131
131
|
prj_2 = JIRA::Resource::Project.new(client)
|
132
132
|
allow(prj_2).to receive(:id).and_return('50505')
|
133
133
|
|
134
134
|
expect(client).to receive(:get).with('/jira/rest/api/2/issue/createmeta?projectIds=50505%2C30303').and_return(response)
|
135
|
-
|
135
|
+
described_class.all(
|
136
136
|
client,
|
137
137
|
projectIds: [prj_2, prj_1]
|
138
138
|
)
|
139
139
|
end
|
140
140
|
|
141
|
-
it '
|
141
|
+
it 'queries correct url when multiple `projectIds` given as different types' do
|
142
142
|
prj_5 = JIRA::Resource::Project.new(client)
|
143
143
|
allow(prj_5).to receive(:id).and_return('60606')
|
144
144
|
|
145
145
|
expect(client).to receive(:get).with('/jira/rest/api/2/issue/createmeta?projectIds=10101%2C60606').and_return(response)
|
146
|
-
|
146
|
+
described_class.all(
|
147
147
|
client,
|
148
148
|
projectIds: ['10101', prj_5]
|
149
149
|
)
|
@@ -151,52 +151,52 @@ describe JIRA::Resource::Createmeta do
|
|
151
151
|
end
|
152
152
|
|
153
153
|
describe 'issuetypeNames' do
|
154
|
-
it '
|
154
|
+
it 'queries correct url when only one `issuetypeNames` given as string' do
|
155
155
|
expect(client).to receive(:get).with('/jira/rest/api/2/issue/createmeta?issuetypeNames=Feature').and_return(response)
|
156
|
-
|
156
|
+
described_class.all(
|
157
157
|
client,
|
158
158
|
issuetypeNames: 'Feature'
|
159
159
|
)
|
160
160
|
end
|
161
161
|
|
162
|
-
it '
|
162
|
+
it 'queries correct url when multiple `issuetypeNames` given as string' do
|
163
163
|
expect(client).to receive(:get).with('/jira/rest/api/2/issue/createmeta?issuetypeNames=Feature%2CBug').and_return(response)
|
164
|
-
|
164
|
+
described_class.all(
|
165
165
|
client,
|
166
166
|
issuetypeNames: %w[Feature Bug]
|
167
167
|
)
|
168
168
|
end
|
169
169
|
|
170
|
-
it '
|
170
|
+
it 'queries correct url when only one `issuetypeNames` given as Issuetype' do
|
171
171
|
issue_type = JIRA::Resource::Issuetype.new(client)
|
172
172
|
allow(issue_type).to receive(:name).and_return('Epic')
|
173
173
|
|
174
174
|
expect(client).to receive(:get).with('/jira/rest/api/2/issue/createmeta?issuetypeNames=Epic').and_return(response)
|
175
|
-
|
175
|
+
described_class.all(
|
176
176
|
client,
|
177
177
|
issuetypeNames: issue_type
|
178
178
|
)
|
179
179
|
end
|
180
180
|
|
181
|
-
it '
|
181
|
+
it 'queries correct url when multiple `issuetypeNames` given as Issuetype' do
|
182
182
|
issue_type_1 = JIRA::Resource::Issuetype.new(client)
|
183
183
|
allow(issue_type_1).to receive(:name).and_return('Epic')
|
184
184
|
issue_type_2 = JIRA::Resource::Issuetype.new(client)
|
185
185
|
allow(issue_type_2).to receive(:name).and_return('Sub-Task')
|
186
186
|
|
187
187
|
expect(client).to receive(:get).with('/jira/rest/api/2/issue/createmeta?issuetypeNames=Sub-Task%2CEpic').and_return(response)
|
188
|
-
|
188
|
+
described_class.all(
|
189
189
|
client,
|
190
190
|
issuetypeNames: [issue_type_2, issue_type_1]
|
191
191
|
)
|
192
192
|
end
|
193
193
|
|
194
|
-
it '
|
194
|
+
it 'queries correct url when multiple `issuetypeNames` given as different types' do
|
195
195
|
issue_type = JIRA::Resource::Issuetype.new(client)
|
196
196
|
allow(issue_type).to receive(:name).and_return('Epic')
|
197
197
|
|
198
198
|
expect(client).to receive(:get).with('/jira/rest/api/2/issue/createmeta?issuetypeNames=Feature%2CEpic').and_return(response)
|
199
|
-
|
199
|
+
described_class.all(
|
200
200
|
client,
|
201
201
|
issuetypeNames: ['Feature', issue_type]
|
202
202
|
)
|
@@ -204,52 +204,52 @@ describe JIRA::Resource::Createmeta do
|
|
204
204
|
end
|
205
205
|
|
206
206
|
describe 'issuetypeIds' do
|
207
|
-
it '
|
207
|
+
it 'queries correct url when only one `issuetypeIds` given as string' do
|
208
208
|
expect(client).to receive(:get).with('/jira/rest/api/2/issue/createmeta?issuetypeIds=10101').and_return(response)
|
209
|
-
|
209
|
+
described_class.all(
|
210
210
|
client,
|
211
211
|
issuetypeIds: '10101'
|
212
212
|
)
|
213
213
|
end
|
214
214
|
|
215
|
-
it '
|
215
|
+
it 'queries correct url when multiple `issuetypeIds` given as string' do
|
216
216
|
expect(client).to receive(:get).with('/jira/rest/api/2/issue/createmeta?issuetypeIds=10101%2C20202').and_return(response)
|
217
|
-
|
217
|
+
described_class.all(
|
218
218
|
client,
|
219
219
|
issuetypeIds: %w[10101 20202]
|
220
220
|
)
|
221
221
|
end
|
222
222
|
|
223
|
-
it '
|
223
|
+
it 'queries correct url when only one `issuetypeIds` given as Issuetype' do
|
224
224
|
issue_type = JIRA::Resource::Issuetype.new(client)
|
225
225
|
allow(issue_type).to receive(:id).and_return('30303')
|
226
226
|
|
227
227
|
expect(client).to receive(:get).with('/jira/rest/api/2/issue/createmeta?issuetypeIds=30303').and_return(response)
|
228
|
-
|
228
|
+
described_class.all(
|
229
229
|
client,
|
230
230
|
issuetypeIds: issue_type
|
231
231
|
)
|
232
232
|
end
|
233
233
|
|
234
|
-
it '
|
234
|
+
it 'queries correct url when multiple `issuetypeIds` given as Issuetype' do
|
235
235
|
issue_type_1 = JIRA::Resource::Issuetype.new(client)
|
236
236
|
allow(issue_type_1).to receive(:id).and_return('30303')
|
237
237
|
issue_type_2 = JIRA::Resource::Issuetype.new(client)
|
238
238
|
allow(issue_type_2).to receive(:id).and_return('50505')
|
239
239
|
|
240
240
|
expect(client).to receive(:get).with('/jira/rest/api/2/issue/createmeta?issuetypeIds=50505%2C30303').and_return(response)
|
241
|
-
|
241
|
+
described_class.all(
|
242
242
|
client,
|
243
243
|
issuetypeIds: [issue_type_2, issue_type_1]
|
244
244
|
)
|
245
245
|
end
|
246
246
|
|
247
|
-
it '
|
247
|
+
it 'queries correct url when multiple `issuetypeIds` given as different types' do
|
248
248
|
issue_type = JIRA::Resource::Issuetype.new(client)
|
249
249
|
allow(issue_type).to receive(:id).and_return('30303')
|
250
250
|
|
251
251
|
expect(client).to receive(:get).with('/jira/rest/api/2/issue/createmeta?issuetypeIds=10101%2C30303').and_return(response)
|
252
|
-
|
252
|
+
described_class.all(
|
253
253
|
client,
|
254
254
|
issuetypeIds: ['10101', issue_type]
|
255
255
|
)
|
@@ -1,39 +1,56 @@
|
|
1
1
|
require 'spec_helper'
|
2
2
|
|
3
3
|
describe JIRA::Resource::Field do
|
4
|
-
let(:cache) { OpenStruct.new }
|
5
|
-
|
6
4
|
let(:client) do
|
7
5
|
client = double(options: { rest_base_path: '/jira/rest/api/2' })
|
8
6
|
field = JIRA::Resource::FieldFactory.new(client)
|
9
7
|
allow(client).to receive(:Field).and_return(field)
|
10
|
-
allow(client).to receive(:
|
8
|
+
allow(client).to receive(:field_map_cache).and_return(nil)
|
9
|
+
allow(client).to receive(:field_map_cache=)
|
11
10
|
# info about all fields on the client
|
12
11
|
allow(client.Field).to receive(:all).and_return([
|
13
|
-
|
14
|
-
|
15
|
-
|
16
|
-
|
17
|
-
|
18
|
-
|
19
|
-
|
20
|
-
|
21
|
-
|
12
|
+
described_class.new(client,
|
13
|
+
attrs: { 'id' => 'customfield_10666', 'name' => 'Priority', 'custom' => true, 'orderable' => true, 'navigable' => true,
|
14
|
+
'searchable' => true, 'clauseNames' => ['cf[10666]', 'Priority'], 'schema' => { 'type' => 'string', 'custom' => 'com.atlassian.jira.plugin.system.customfieldtypes:select', 'customId' => 10_666 } }),
|
15
|
+
described_class.new(client,
|
16
|
+
attrs: { 'id' => 'issuekey', 'name' => 'Key', 'custom' => false, 'orderable' => false,
|
17
|
+
'navigable' => true, 'searchable' => false, 'clauseNames' => %w[id issue issuekey key] }),
|
18
|
+
described_class.new(client,
|
19
|
+
attrs: { 'id' => 'priority', 'name' => 'Priority', 'custom' => false, 'orderable' => true,
|
20
|
+
'navigable' => true, 'searchable' => true, 'clauseNames' => ['priority'], 'schema' => { 'type' => 'priority', 'system' => 'priority' } }),
|
21
|
+
described_class.new(client,
|
22
|
+
attrs: { 'id' => 'summary', 'name' => 'Summary', 'custom' => false, 'orderable' => true,
|
23
|
+
'navigable' => true, 'searchable' => true, 'clauseNames' => ['summary'], 'schema' => { 'type' => 'string', 'system' => 'summary' } }),
|
24
|
+
described_class.new(client,
|
25
|
+
attrs: { 'id' => 'issuetype', 'name' => 'Issue Type', 'custom' => false, 'orderable' => true,
|
26
|
+
'navigable' => true, 'searchable' => true, 'clauseNames' => %w[issuetype type], 'schema' => { 'type' => 'issuetype', 'system' => 'issuetype' } }),
|
27
|
+
described_class.new(client,
|
28
|
+
attrs: { 'id' => 'customfield_10111', 'name' => 'SingleWord', 'custom' => true, 'orderable' => true,
|
29
|
+
'navigable' => true, 'searchable' => true, 'clauseNames' => ['cf[10111]', 'SingleWord'], 'schema' => { 'type' => 'string', 'custom' => 'com.atlassian.jira.plugin.system.customfieldtypes:select', 'customId' => 10_111 } }),
|
30
|
+
described_class.new(client,
|
31
|
+
attrs: { 'id' => 'customfield_10222', 'name' => 'Multi Word', 'custom' => true, 'orderable' => true,
|
32
|
+
'navigable' => true, 'searchable' => true, 'clauseNames' => ['cf[10222]', 'Multi Word'], 'schema' => { 'type' => 'string', 'custom' => 'com.atlassian.jira.plugin.system.customfieldtypes:select', 'customId' => 10_222 } }),
|
33
|
+
described_class.new(client,
|
34
|
+
attrs: { 'id' => 'customfield_10333', 'name' => 'Why/N@t', 'custom' => true, 'orderable' => true,
|
35
|
+
'navigable' => true, 'searchable' => true, 'clauseNames' => ['cf[10333]', 'Why/N@t'], 'schema' => { 'type' => 'string', 'custom' => 'com.atlassian.jira.plugin.system.customfieldtypes:select', 'customId' => 10_333 } }),
|
36
|
+
described_class.new(client,
|
37
|
+
attrs: { 'id' => 'customfield_10444', 'name' => 'SingleWord', 'custom' => true, 'orderable' => true,
|
38
|
+
'navigable' => true, 'searchable' => true, 'clauseNames' => ['cf[10444]', 'SingleWord'], 'schema' => { 'type' => 'string', 'custom' => 'com.atlassian.jira.plugin.system.customfieldtypes:select', 'customId' => 10_444 } })
|
22
39
|
])
|
23
40
|
client
|
24
41
|
end
|
25
42
|
|
26
43
|
describe 'field_mappings' do
|
27
|
-
shared_context '
|
44
|
+
shared_context 'with or without mapping' do
|
28
45
|
subject do
|
29
|
-
|
30
|
-
|
31
|
-
|
32
|
-
|
33
|
-
|
34
|
-
|
35
|
-
|
36
|
-
|
46
|
+
described_class.new(client, attrs: {
|
47
|
+
'priority' => 1,
|
48
|
+
'customfield_10111' => 'data_in_custom_field',
|
49
|
+
'customfield_10222' => 'multi word custom name',
|
50
|
+
'customfield_10333' => 'complex custom name',
|
51
|
+
'customfield_10444' => 'duplicated custom name',
|
52
|
+
'customfield_10666' => 'duplicate of a system name'
|
53
|
+
})
|
37
54
|
end
|
38
55
|
|
39
56
|
it 'can find a standard field by id' do
|
@@ -47,12 +64,12 @@ describe JIRA::Resource::Field do
|
|
47
64
|
it 'is not confused by common attribute keys' do
|
48
65
|
expect { subject.name }.to raise_error(NoMethodError)
|
49
66
|
expect { subject.custom }.to raise_error(NoMethodError)
|
50
|
-
expect(subject.id).to
|
67
|
+
expect(subject.id).to be_nil # picks up ID from the parent -
|
51
68
|
end
|
52
69
|
end
|
53
70
|
|
54
|
-
context '
|
55
|
-
include_context '
|
71
|
+
context 'when fields are not yet mapped' do
|
72
|
+
include_context 'with or without mapping'
|
56
73
|
|
57
74
|
it 'can find a standard field by id' do
|
58
75
|
expect(subject.priority).to eq(1)
|
@@ -69,12 +86,12 @@ describe JIRA::Resource::Field do
|
|
69
86
|
it 'is not confused by common attribute keys and raises error' do
|
70
87
|
expect { subject.name }.to raise_error(NoMethodError)
|
71
88
|
expect { subject.custom }.to raise_error(NoMethodError)
|
72
|
-
expect(subject.id).to
|
89
|
+
expect(subject.id).to be_nil # picks up ID from the parent -
|
73
90
|
end
|
74
91
|
end
|
75
92
|
|
76
|
-
context '
|
77
|
-
include_context '
|
93
|
+
context 'when fields have been mapped' do
|
94
|
+
include_context 'with or without mapping'
|
78
95
|
|
79
96
|
it 'warns of duplicate fields' do
|
80
97
|
expect { client.Field.map_fields }.to output(/renaming as Priority_10666/).to_stderr
|
@@ -48,9 +48,9 @@ describe JIRA::Resource::Filter do
|
|
48
48
|
response
|
49
49
|
end
|
50
50
|
let(:filter) do
|
51
|
-
|
52
|
-
allow(
|
53
|
-
|
51
|
+
allow(client).to receive(:get).with("#{collection_path}/42").and_return(filter_response)
|
52
|
+
allow(described_class).to receive(:collection_path).and_return(collection_path)
|
53
|
+
described_class.find(client, 42)
|
54
54
|
end
|
55
55
|
let(:jql_issue) do
|
56
56
|
{
|
@@ -90,7 +90,7 @@ describe JIRA::Resource::Filter do
|
|
90
90
|
.and_return(issue_jql_response)
|
91
91
|
issues = filter.issues
|
92
92
|
expect(issues).to be_an(Array)
|
93
|
-
expect(issues.size).to
|
93
|
+
expect(issues.size).to be(1)
|
94
94
|
expected_issue = client.Issue.build(JSON.parse(jql_issue.to_json))
|
95
95
|
expect(issues.first.attrs).to eql(expected_issue.attrs)
|
96
96
|
end
|
@@ -3,15 +3,15 @@ require 'spec_helper'
|
|
3
3
|
describe JIRA::Resource::IssuePickerSuggestions do
|
4
4
|
let(:client) do
|
5
5
|
double('client', options: {
|
6
|
-
|
7
|
-
|
6
|
+
rest_base_path: '/jira/rest/api/2'
|
7
|
+
})
|
8
8
|
end
|
9
9
|
|
10
10
|
describe 'relationships' do
|
11
11
|
subject do
|
12
|
-
|
13
|
-
|
14
|
-
|
12
|
+
described_class.new(client, attrs: {
|
13
|
+
'sections' => [{ 'id' => 'hs' }, { 'id' => 'cs' }]
|
14
|
+
})
|
15
15
|
end
|
16
16
|
|
17
17
|
it 'has the correct relationships' do
|
@@ -30,7 +30,7 @@ describe JIRA::Resource::IssuePickerSuggestions do
|
|
30
30
|
allow(issue_picker_suggestions).to receive(:build)
|
31
31
|
end
|
32
32
|
|
33
|
-
it '
|
33
|
+
it 'autocompletes issues' do
|
34
34
|
allow(response).to receive(:body).and_return('{"sections":[{"id": "cs"}]}')
|
35
35
|
expect(client).to receive(:get).with('/jira/rest/api/2/issue/picker?query=query')
|
36
36
|
.and_return(response)
|
@@ -38,42 +38,42 @@ describe JIRA::Resource::IssuePickerSuggestions do
|
|
38
38
|
expect(client).to receive(:IssuePickerSuggestions).and_return(issue_picker_suggestions)
|
39
39
|
expect(issue_picker_suggestions).to receive(:build).with({ 'sections' => [{ 'id' => 'cs' }] })
|
40
40
|
|
41
|
-
|
41
|
+
described_class.all(client, 'query')
|
42
42
|
end
|
43
43
|
|
44
|
-
it '
|
44
|
+
it 'autocompletes issues with current jql' do
|
45
45
|
expect(client).to receive(:get).with('/jira/rest/api/2/issue/picker?query=query¤tJQL=project+%3D+PR')
|
46
46
|
.and_return(response)
|
47
47
|
|
48
|
-
|
48
|
+
described_class.all(client, 'query', current_jql: 'project = PR')
|
49
49
|
end
|
50
50
|
|
51
|
-
it '
|
51
|
+
it 'autocompletes issues with current issue jey' do
|
52
52
|
expect(client).to receive(:get).with('/jira/rest/api/2/issue/picker?query=query¤tIssueKey=PR-42')
|
53
53
|
.and_return(response)
|
54
54
|
|
55
|
-
|
55
|
+
described_class.all(client, 'query', current_issue_key: 'PR-42')
|
56
56
|
end
|
57
57
|
|
58
|
-
it '
|
58
|
+
it 'autocompletes issues with current project id' do
|
59
59
|
expect(client).to receive(:get).with('/jira/rest/api/2/issue/picker?query=query¤tProjectId=PR')
|
60
60
|
.and_return(response)
|
61
61
|
|
62
|
-
|
62
|
+
described_class.all(client, 'query', current_project_id: 'PR')
|
63
63
|
end
|
64
64
|
|
65
|
-
it '
|
65
|
+
it 'autocompletes issues with show sub tasks' do
|
66
66
|
expect(client).to receive(:get).with('/jira/rest/api/2/issue/picker?query=query&showSubTasks=true')
|
67
67
|
.and_return(response)
|
68
68
|
|
69
|
-
|
69
|
+
described_class.all(client, 'query', show_sub_tasks: true)
|
70
70
|
end
|
71
71
|
|
72
|
-
it '
|
72
|
+
it 'autocompletes issues with show sub tasks parent' do
|
73
73
|
expect(client).to receive(:get).with('/jira/rest/api/2/issue/picker?query=query&showSubTaskParent=true')
|
74
74
|
.and_return(response)
|
75
75
|
|
76
|
-
|
76
|
+
described_class.all(client, 'query', show_sub_task_parent: true)
|
77
77
|
end
|
78
78
|
end
|
79
79
|
end
|