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.
Files changed (122) hide show
  1. checksums.yaml +4 -4
  2. data/.github/ISSUE_TEMPLATE/bug_report.md +20 -0
  3. data/.github/ISSUE_TEMPLATE/feature_request.md +20 -0
  4. data/.github/dependabot.yml +6 -0
  5. data/.github/workflows/CI.yml +29 -0
  6. data/.github/workflows/codeql.yml +96 -0
  7. data/.github/workflows/rubocop.yml +18 -0
  8. data/.gitignore +3 -1
  9. data/.rubocop.yml +120 -0
  10. data/.yardopts +4 -0
  11. data/Gemfile +11 -3
  12. data/Guardfile +2 -0
  13. data/README.md +94 -18
  14. data/Rakefile +3 -4
  15. data/jira-ruby.gemspec +11 -17
  16. data/lib/jira/base.rb +37 -36
  17. data/lib/jira/base_factory.rb +4 -1
  18. data/lib/jira/client.rb +123 -50
  19. data/lib/jira/has_many_proxy.rb +32 -28
  20. data/lib/jira/http_client.rb +80 -13
  21. data/lib/jira/http_error.rb +4 -0
  22. data/lib/jira/jwt_client.rb +18 -42
  23. data/lib/jira/oauth_client.rb +68 -3
  24. data/lib/jira/railtie.rb +2 -0
  25. data/lib/jira/request_client.rb +31 -2
  26. data/lib/jira/resource/agile.rb +7 -9
  27. data/lib/jira/resource/applinks.rb +5 -3
  28. data/lib/jira/resource/attachment.rb +128 -3
  29. data/lib/jira/resource/board.rb +5 -3
  30. data/lib/jira/resource/board_configuration.rb +2 -0
  31. data/lib/jira/resource/comment.rb +2 -0
  32. data/lib/jira/resource/component.rb +2 -0
  33. data/lib/jira/resource/createmeta.rb +3 -1
  34. data/lib/jira/resource/field.rb +13 -12
  35. data/lib/jira/resource/filter.rb +2 -0
  36. data/lib/jira/resource/issue.rb +95 -44
  37. data/lib/jira/resource/issue_picker_suggestions.rb +4 -1
  38. data/lib/jira/resource/issue_picker_suggestions_issue.rb +2 -0
  39. data/lib/jira/resource/issuelink.rb +6 -3
  40. data/lib/jira/resource/issuelinktype.rb +2 -0
  41. data/lib/jira/resource/issuetype.rb +2 -0
  42. data/lib/jira/resource/priority.rb +2 -0
  43. data/lib/jira/resource/project.rb +4 -2
  44. data/lib/jira/resource/rapidview.rb +5 -3
  45. data/lib/jira/resource/remotelink.rb +2 -0
  46. data/lib/jira/resource/resolution.rb +2 -0
  47. data/lib/jira/resource/serverinfo.rb +2 -0
  48. data/lib/jira/resource/sprint.rb +14 -23
  49. data/lib/jira/resource/status.rb +7 -1
  50. data/lib/jira/resource/status_category.rb +10 -0
  51. data/lib/jira/resource/suggested_issue.rb +2 -0
  52. data/lib/jira/resource/transition.rb +2 -0
  53. data/lib/jira/resource/user.rb +3 -1
  54. data/lib/jira/resource/version.rb +2 -0
  55. data/lib/jira/resource/watcher.rb +3 -2
  56. data/lib/jira/resource/webhook.rb +9 -3
  57. data/lib/jira/resource/worklog.rb +3 -2
  58. data/lib/jira/version.rb +3 -1
  59. data/lib/jira-ruby.rb +5 -3
  60. data/lib/tasks/generate.rake +3 -1
  61. data/spec/data/files/short.txt +1 -0
  62. data/spec/integration/attachment_spec.rb +3 -3
  63. data/spec/integration/comment_spec.rb +8 -8
  64. data/spec/integration/component_spec.rb +7 -7
  65. data/spec/integration/field_spec.rb +3 -3
  66. data/spec/integration/issue_spec.rb +20 -16
  67. data/spec/integration/issuelinktype_spec.rb +3 -3
  68. data/spec/integration/issuetype_spec.rb +3 -3
  69. data/spec/integration/priority_spec.rb +3 -3
  70. data/spec/integration/project_spec.rb +8 -8
  71. data/spec/integration/rapidview_spec.rb +10 -10
  72. data/spec/integration/resolution_spec.rb +3 -3
  73. data/spec/integration/status_category_spec.rb +20 -0
  74. data/spec/integration/status_spec.rb +4 -8
  75. data/spec/integration/transition_spec.rb +2 -2
  76. data/spec/integration/user_spec.rb +34 -11
  77. data/spec/integration/version_spec.rb +7 -7
  78. data/spec/integration/watcher_spec.rb +21 -18
  79. data/spec/integration/webhook_spec.rb +33 -0
  80. data/spec/integration/worklog_spec.rb +8 -8
  81. data/spec/jira/base_factory_spec.rb +13 -3
  82. data/spec/jira/base_spec.rb +135 -98
  83. data/spec/jira/client_spec.rb +63 -47
  84. data/spec/jira/has_many_proxy_spec.rb +3 -3
  85. data/spec/jira/http_client_spec.rb +94 -27
  86. data/spec/jira/http_error_spec.rb +2 -2
  87. data/spec/jira/oauth_client_spec.rb +14 -8
  88. data/spec/jira/request_client_spec.rb +4 -4
  89. data/spec/jira/resource/agile_spec.rb +30 -30
  90. data/spec/jira/resource/attachment_spec.rb +170 -57
  91. data/spec/jira/resource/board_spec.rb +24 -23
  92. data/spec/jira/resource/createmeta_spec.rb +48 -48
  93. data/spec/jira/resource/field_spec.rb +44 -27
  94. data/spec/jira/resource/filter_spec.rb +4 -4
  95. data/spec/jira/resource/issue_picker_suggestions_spec.rb +17 -17
  96. data/spec/jira/resource/issue_spec.rb +49 -43
  97. data/spec/jira/resource/jira_picker_suggestions_issue_spec.rb +3 -3
  98. data/spec/jira/resource/project_factory_spec.rb +3 -2
  99. data/spec/jira/resource/project_spec.rb +14 -14
  100. data/spec/jira/resource/sprint_spec.rb +88 -9
  101. data/spec/jira/resource/status_spec.rb +21 -0
  102. data/spec/jira/resource/user_factory_spec.rb +5 -5
  103. data/spec/jira/resource/worklog_spec.rb +4 -4
  104. data/spec/mock_responses/sprint/1.json +13 -0
  105. data/spec/mock_responses/status/1.json +8 -1
  106. data/spec/mock_responses/status.json +40 -5
  107. data/spec/mock_responses/statuscategory/1.json +7 -0
  108. data/spec/mock_responses/statuscategory.json +30 -0
  109. data/spec/mock_responses/{user_username=admin.json → user_accountId=1234567890abcdef01234567.json} +2 -1
  110. data/spec/spec_helper.rb +1 -0
  111. data/spec/support/clients_helper.rb +3 -5
  112. data/spec/support/mock_client.rb +9 -0
  113. data/spec/support/mock_response.rb +8 -0
  114. data/spec/support/shared_examples/integration.rb +25 -28
  115. metadata +27 -260
  116. data/.travis.yml +0 -9
  117. data/example.rb +0 -232
  118. data/http-basic-example.rb +0 -113
  119. data/lib/jira/resource/sprint_report.rb +0 -8
  120. data/lib/jira/tasks.rb +0 -0
  121. data/spec/integration/webhook.rb +0 -25
  122. 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 'should query correct url without parameters' do
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
- JIRA::Resource::Createmeta.all(client)
23
+ described_class.all(client)
24
24
  end
25
25
 
26
- it 'should query correct url with `expand` parameter' do
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
- JIRA::Resource::Createmeta.all(client, expand: 'projects.issuetypes.fields')
28
+ described_class.all(client, expand: 'projects.issuetypes.fields')
29
29
  end
30
30
 
31
- it 'should query correct url with `foo` parameter' do
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
- JIRA::Resource::Createmeta.all(client, foo: 'bar')
33
+ described_class.all(client, foo: 'bar')
34
34
  end
35
35
 
36
- it 'should return an array of createmeta objects' do
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 = JIRA::Resource::Createmeta.all(client)
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 'should query correct url when only one `projectKeys` given as string' do
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
- JIRA::Resource::Createmeta.all(
50
+ described_class.all(
51
51
  client,
52
52
  projectKeys: 'PROJECT_1'
53
53
  )
54
54
  end
55
55
 
56
- it 'should query correct url when multiple `projectKeys` given as string' do
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
- JIRA::Resource::Createmeta.all(
58
+ described_class.all(
59
59
  client,
60
60
  projectKeys: %w[PROJECT_1 PROJECT_2]
61
61
  )
62
62
  end
63
63
 
64
- it 'should query correct url when only one `projectKeys` given as Project' do
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
- JIRA::Resource::Createmeta.all(
69
+ described_class.all(
70
70
  client,
71
71
  projectKeys: prj
72
72
  )
73
73
  end
74
74
 
75
- it 'should query correct url when multiple `projectKeys` given as Project' do
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
- JIRA::Resource::Createmeta.all(
82
+ described_class.all(
83
83
  client,
84
84
  projectKeys: [prj_2, prj_1]
85
85
  )
86
86
  end
87
87
 
88
- it 'should query correct url when multiple `projectKeys` given as different types' do
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
- JIRA::Resource::Createmeta.all(
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 'should query correct url when only one `projectIds` given as string' do
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
- JIRA::Resource::Createmeta.all(
103
+ described_class.all(
104
104
  client,
105
105
  projectIds: '10101'
106
106
  )
107
107
  end
108
108
 
109
- it 'should query correct url when multiple `projectIds` given as string' do
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
- JIRA::Resource::Createmeta.all(
111
+ described_class.all(
112
112
  client,
113
113
  projectIds: %w[10101 20202]
114
114
  )
115
115
  end
116
116
 
117
- it 'should query correct url when only one `projectIds` given as Project' do
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
- JIRA::Resource::Createmeta.all(
122
+ described_class.all(
123
123
  client,
124
124
  projectIds: prj
125
125
  )
126
126
  end
127
127
 
128
- it 'should query correct url when multiple `projectIds` given as Project' do
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
- JIRA::Resource::Createmeta.all(
135
+ described_class.all(
136
136
  client,
137
137
  projectIds: [prj_2, prj_1]
138
138
  )
139
139
  end
140
140
 
141
- it 'should query correct url when multiple `projectIds` given as different types' do
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
- JIRA::Resource::Createmeta.all(
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 'should query correct url when only one `issuetypeNames` given as string' do
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
- JIRA::Resource::Createmeta.all(
156
+ described_class.all(
157
157
  client,
158
158
  issuetypeNames: 'Feature'
159
159
  )
160
160
  end
161
161
 
162
- it 'should query correct url when multiple `issuetypeNames` given as string' do
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
- JIRA::Resource::Createmeta.all(
164
+ described_class.all(
165
165
  client,
166
166
  issuetypeNames: %w[Feature Bug]
167
167
  )
168
168
  end
169
169
 
170
- it 'should query correct url when only one `issuetypeNames` given as Issuetype' do
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
- JIRA::Resource::Createmeta.all(
175
+ described_class.all(
176
176
  client,
177
177
  issuetypeNames: issue_type
178
178
  )
179
179
  end
180
180
 
181
- it 'should query correct url when multiple `issuetypeNames` given as Issuetype' do
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
- JIRA::Resource::Createmeta.all(
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 'should query correct url when multiple `issuetypeNames` given as different types' do
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
- JIRA::Resource::Createmeta.all(
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 'should query correct url when only one `issuetypeIds` given as string' do
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
- JIRA::Resource::Createmeta.all(
209
+ described_class.all(
210
210
  client,
211
211
  issuetypeIds: '10101'
212
212
  )
213
213
  end
214
214
 
215
- it 'should query correct url when multiple `issuetypeIds` given as string' do
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
- JIRA::Resource::Createmeta.all(
217
+ described_class.all(
218
218
  client,
219
219
  issuetypeIds: %w[10101 20202]
220
220
  )
221
221
  end
222
222
 
223
- it 'should query correct url when only one `issuetypeIds` given as Issuetype' do
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
- JIRA::Resource::Createmeta.all(
228
+ described_class.all(
229
229
  client,
230
230
  issuetypeIds: issue_type
231
231
  )
232
232
  end
233
233
 
234
- it 'should query correct url when multiple `issuetypeIds` given as Issuetype' do
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
- JIRA::Resource::Createmeta.all(
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 'should query correct url when multiple `issuetypeIds` given as different types' do
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
- JIRA::Resource::Createmeta.all(
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(:cache).and_return(cache)
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
- JIRA::Resource::Field.new(client, attrs: { 'id' => 'customfield_10666', 'name' => 'Priority', 'custom' => true, 'orderable' => true, 'navigable' => true, 'searchable' => true, 'clauseNames' => ['cf[10666]', 'Priority'], 'schema' => { 'type' => 'string', 'custom' => 'com.atlassian.jira.plugin.system.customfieldtypes:select', 'customId' => 10_666 } }),
14
- JIRA::Resource::Field.new(client, attrs: { 'id' => 'issuekey', 'name' => 'Key', 'custom' => false, 'orderable' => false, 'navigable' => true, 'searchable' => false, 'clauseNames' => %w[id issue issuekey key] }),
15
- JIRA::Resource::Field.new(client, attrs: { 'id' => 'priority', 'name' => 'Priority', 'custom' => false, 'orderable' => true, 'navigable' => true, 'searchable' => true, 'clauseNames' => ['priority'], 'schema' => { 'type' => 'priority', 'system' => 'priority' } }),
16
- JIRA::Resource::Field.new(client, attrs: { 'id' => 'summary', 'name' => 'Summary', 'custom' => false, 'orderable' => true, 'navigable' => true, 'searchable' => true, 'clauseNames' => ['summary'], 'schema' => { 'type' => 'string', 'system' => 'summary' } }),
17
- JIRA::Resource::Field.new(client, attrs: { 'id' => 'issuetype', 'name' => 'Issue Type', 'custom' => false, 'orderable' => true, 'navigable' => true, 'searchable' => true, 'clauseNames' => %w[issuetype type], 'schema' => { 'type' => 'issuetype', 'system' => 'issuetype' } }),
18
- JIRA::Resource::Field.new(client, attrs: { 'id' => 'customfield_10111', 'name' => 'SingleWord', 'custom' => true, 'orderable' => true, 'navigable' => true, 'searchable' => true, 'clauseNames' => ['cf[10111]', 'SingleWord'], 'schema' => { 'type' => 'string', 'custom' => 'com.atlassian.jira.plugin.system.customfieldtypes:select', 'customId' => 10_111 } }),
19
- JIRA::Resource::Field.new(client, attrs: { 'id' => 'customfield_10222', 'name' => 'Multi Word', 'custom' => true, 'orderable' => true, 'navigable' => true, 'searchable' => true, 'clauseNames' => ['cf[10222]', 'Multi Word'], 'schema' => { 'type' => 'string', 'custom' => 'com.atlassian.jira.plugin.system.customfieldtypes:select', 'customId' => 10_222 } }),
20
- JIRA::Resource::Field.new(client, attrs: { 'id' => 'customfield_10333', 'name' => 'Why/N@t', 'custom' => true, 'orderable' => true, 'navigable' => true, 'searchable' => true, 'clauseNames' => ['cf[10333]', 'Why/N@t'], 'schema' => { 'type' => 'string', 'custom' => 'com.atlassian.jira.plugin.system.customfieldtypes:select', 'customId' => 10_333 } }),
21
- JIRA::Resource::Field.new(client, attrs: { 'id' => 'customfield_10444', 'name' => 'SingleWord', 'custom' => true, 'orderable' => true, 'navigable' => true, 'searchable' => true, 'clauseNames' => ['cf[10444]', 'SingleWord'], 'schema' => { 'type' => 'string', 'custom' => 'com.atlassian.jira.plugin.system.customfieldtypes:select', 'customId' => 10_444 } })
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 'mapped or not' do
44
+ shared_context 'with or without mapping' do
28
45
  subject do
29
- JIRA::Resource::Field.new(client, attrs: {
30
- 'priority' => 1,
31
- 'customfield_10111' => 'data_in_custom_field',
32
- 'customfield_10222' => 'multi word custom name',
33
- 'customfield_10333' => 'complex custom name',
34
- 'customfield_10444' => 'duplicated custom name',
35
- 'customfield_10666' => 'duplicate of a system name'
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 eq(nil) # picks up ID from the parent -
67
+ expect(subject.id).to be_nil # picks up ID from the parent -
51
68
  end
52
69
  end
53
70
 
54
- context 'before fields are mapped' do
55
- include_context 'mapped or not'
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 eq(nil) # picks up ID from the parent -
89
+ expect(subject.id).to be_nil # picks up ID from the parent -
73
90
  end
74
91
  end
75
92
 
76
- context 'after fields are mapped' do
77
- include_context 'mapped or not'
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
- expect(client).to receive(:get).with("#{collection_path}/42").and_return(filter_response)
52
- allow(JIRA::Resource::Filter).to receive(:collection_path).and_return(collection_path)
53
- JIRA::Resource::Filter.find(client, 42)
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 eql(1)
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
- rest_base_path: '/jira/rest/api/2'
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
- JIRA::Resource::IssuePickerSuggestions.new(client, attrs: {
13
- 'sections' => [{ 'id' => 'hs'}, { 'id' => 'cs' }]
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 'should autocomplete issues' do
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
- JIRA::Resource::IssuePickerSuggestions.all(client, 'query')
41
+ described_class.all(client, 'query')
42
42
  end
43
43
 
44
- it 'should autocomplete issues with current jql' do
44
+ it 'autocompletes issues with current jql' do
45
45
  expect(client).to receive(:get).with('/jira/rest/api/2/issue/picker?query=query&currentJQL=project+%3D+PR')
46
46
  .and_return(response)
47
47
 
48
- JIRA::Resource::IssuePickerSuggestions.all(client, 'query', current_jql: 'project = PR')
48
+ described_class.all(client, 'query', current_jql: 'project = PR')
49
49
  end
50
50
 
51
- it 'should autocomplete issues with current issue jey' do
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&currentIssueKey=PR-42')
53
53
  .and_return(response)
54
54
 
55
- JIRA::Resource::IssuePickerSuggestions.all(client, 'query', current_issue_key: 'PR-42')
55
+ described_class.all(client, 'query', current_issue_key: 'PR-42')
56
56
  end
57
57
 
58
- it 'should autocomplete issues with current project id' do
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&currentProjectId=PR')
60
60
  .and_return(response)
61
61
 
62
- JIRA::Resource::IssuePickerSuggestions.all(client, 'query', current_project_id: 'PR')
62
+ described_class.all(client, 'query', current_project_id: 'PR')
63
63
  end
64
64
 
65
- it 'should autocomplete issues with show sub tasks' do
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
- JIRA::Resource::IssuePickerSuggestions.all(client, 'query', show_sub_tasks: true)
69
+ described_class.all(client, 'query', show_sub_tasks: true)
70
70
  end
71
71
 
72
- it 'should autocomplete issues with show sub tasks parent' do
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
- JIRA::Resource::IssuePickerSuggestions.all(client, 'query', show_sub_task_parent: true)
76
+ described_class.all(client, 'query', show_sub_task_parent: true)
77
77
  end
78
78
  end
79
79
  end