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
|
require 'spec_helper'
describe JIRA::Resource::Issue do
class JIRAResourceDelegation < SimpleDelegator # :nodoc:
end
let(:client) do
client = double(options: { rest_base_path: '/jira/rest/api/2' })
allow(client).to receive(:Field).and_return(JIRA::Resource::FieldFactory.new(client))
allow(client).to receive(:cache).and_return(OpenStruct.new)
client
end
describe '#respond_to?' do
describe 'when decorated by SimpleDelegator' do
before(:each) do
response = double
allow(response).to receive(:body).and_return('{"key":"foo","id":"101"}')
allow(JIRA::Resource::Issue).to receive(:collection_path).and_return('/jira/rest/api/2/issue')
allow(client).to receive(:get).with('/jira/rest/api/2/issue/101')
.and_return(response)
issue = JIRA::Resource::Issue.find(client, 101)
@decorated = JIRAResourceDelegation.new(issue)
end
it 'responds to key' do
expect(@decorated.respond_to?(:key)).to eq(true)
end
it 'does not raise an error' do
expect do
@issue.respond_to?(:project)
end.not_to raise_error
end
end
end
it 'should find all issues' do
response = double
empty_response = double
issue = double
allow(response).to receive(:body).and_return('{"issues":[{"id":"1","summary":"Bugs Everywhere"}]}')
expect(client).to receive(:get).with('/jira/rest/api/2/search?expand=transitions.fields&maxResults=1000&startAt=0')
.and_return(response)
allow(empty_response).to receive(:body).and_return('{"issues":[]}')
expect(client).to receive(:get).with('/jira/rest/api/2/search?expand=transitions.fields&maxResults=1000&startAt=1')
.and_return(empty_response)
expect(client).to receive(:Issue).and_return(issue)
expect(issue).to receive(:build).with({ 'id' => '1', 'summary' => 'Bugs Everywhere' })
issues = JIRA::Resource::Issue.all(client)
end
it 'should find an issue by key or id' do
response = double
allow(response).to receive(:body).and_return('{"key":"foo","id":"101"}')
allow(JIRA::Resource::Issue).to receive(:collection_path).and_return('/jira/rest/api/2/issue')
expect(client).to receive(:get).with('/jira/rest/api/2/issue/foo')
.and_return(response)
expect(client).to receive(:get).with('/jira/rest/api/2/issue/101')
.and_return(response)
issue_from_id = JIRA::Resource::Issue.find(client, 101)
issue_from_key = JIRA::Resource::Issue.find(client, 'foo')
expect(issue_from_id.attrs).to eq(issue_from_key.attrs)
end
it 'should search an issue with a jql query string' do
response = double
issue = double
allow(response).to receive(:body).and_return('{"issues": {"key":"foo"}}')
expect(client).to receive(:get).with('/jira/rest/api/2/search?jql=foo+bar')
.and_return(response)
expect(client).to receive(:Issue).and_return(issue)
expect(issue).to receive(:build).with(%w[key foo]).and_return('')
expect(JIRA::Resource::Issue.jql(client, 'foo bar')).to eq([''])
end
it 'should search an issue with a jql query string and fields' do
response = double
issue = double
allow(response).to receive(:body).and_return('{"issues": {"key":"foo"}}')
expect(client).to receive(:get)
.with('/jira/rest/api/2/search?jql=foo+bar&fields=foo,bar')
.and_return(response)
expect(client).to receive(:Issue).and_return(issue)
expect(issue).to receive(:build).with(%w[key foo]).and_return('')
expect(JIRA::Resource::Issue.jql(client, 'foo bar', fields: %w[foo bar])).to eq([''])
end
it 'should search an issue with a jql query string, start at, and maxResults' do
response = double
issue = double
allow(response).to receive(:body).and_return('{"issues": {"key":"foo"}}')
expect(client).to receive(:get)
.with('/jira/rest/api/2/search?jql=foo+bar&startAt=1&maxResults=3')
.and_return(response)
expect(client).to receive(:Issue).and_return(issue)
expect(issue).to receive(:build).with(%w[key foo]).and_return('')
expect(JIRA::Resource::Issue.jql(client, 'foo bar', start_at: 1, max_results: 3)).to eq([''])
end
it 'should search an issue with a jql query string and maxResults equals zero and should return the count of tickets' do
response = double
issue = double
allow(response).to receive(:body).and_return('{"total": 1, "issues": []}')
expect(client).to receive(:get)
.with('/jira/rest/api/2/search?jql=foo+bar&maxResults=0')
.and_return(response)
expect(JIRA::Resource::Issue.jql(client, 'foo bar', max_results: 0)).to eq(1)
end
it 'should search an issue with a jql query string and string expand' do
response = double
issue = double
allow(response).to receive(:body).and_return('{"issues": {"key":"foo"}}')
expect(client).to receive(:get)
.with('/jira/rest/api/2/search?jql=foo+bar&expand=transitions')
.and_return(response)
expect(client).to receive(:Issue).and_return(issue)
expect(issue).to receive(:build).with(%w[key foo]).and_return('')
expect(JIRA::Resource::Issue.jql(client, 'foo bar', expand: 'transitions')).to eq([''])
end
it 'should search an issue with a jql query string and array expand' do
response = double
issue = double
allow(response).to receive(:body).and_return('{"issues": {"key":"foo"}}')
expect(client).to receive(:get)
.with('/jira/rest/api/2/search?jql=foo+bar&expand=transitions')
.and_return(response)
expect(client).to receive(:Issue).and_return(issue)
expect(issue).to receive(:build).with(%w[key foo]).and_return('')
expect(JIRA::Resource::Issue.jql(client, 'foo bar', expand: %w[transitions])).to eq([''])
end
it 'should return meta data available for editing an issue' do
subject = JIRA::Resource::Issue.new(client, attrs: { 'fields' => { 'key' => 'TST=123' } })
response = double
allow(response).to receive(:body).and_return(
'{"fields":{"summary":{"required":true,"name":"Summary","operations":["set"]}}}'
)
expect(client).to receive(:get)
.with('/jira/rest/api/2/issue/TST=123/editmeta')
.and_return(response)
expect(subject.editmeta).to eq('summary' => { 'required' => true, 'name' => 'Summary', 'operations' => ['set'] })
end
it 'provides direct accessors to the fields' do
subject = JIRA::Resource::Issue.new(client, attrs: { 'fields' => { 'foo' => 'bar' } })
expect(subject).to respond_to(:foo)
expect(subject.foo).to eq('bar')
end
describe 'relationships' do
subject do
JIRA::Resource::Issue.new(client, attrs: {
'id' => '123',
'fields' => {
'reporter' => { 'foo' => 'bar' },
'assignee' => { 'foo' => 'bar' },
'project' => { 'foo' => 'bar' },
'priority' => { 'foo' => 'bar' },
'issuetype' => { 'foo' => 'bar' },
'status' => { 'foo' => 'bar' },
'components' => [{ 'foo' => 'bar' }, { 'baz' => 'flum' }],
'versions' => [{ 'foo' => 'bar' }, { 'baz' => 'flum' }],
'comment' => { 'comments' => [{ 'foo' => 'bar' }, { 'baz' => 'flum' }] },
'attachment' => [{ 'foo' => 'bar' }, { 'baz' => 'flum' }],
'worklog' => { 'worklogs' => [{ 'foo' => 'bar' }, { 'baz' => 'flum' }] }
}
})
end
it 'has the correct relationships' do
expect(subject).to have_one(:reporter, JIRA::Resource::User)
expect(subject.reporter.foo).to eq('bar')
expect(subject).to have_one(:assignee, JIRA::Resource::User)
expect(subject.assignee.foo).to eq('bar')
expect(subject).to have_one(:project, JIRA::Resource::Project)
expect(subject.project.foo).to eq('bar')
expect(subject).to have_one(:issuetype, JIRA::Resource::Issuetype)
expect(subject.issuetype.foo).to eq('bar')
expect(subject).to have_one(:priority, JIRA::Resource::Priority)
expect(subject.priority.foo).to eq('bar')
expect(subject).to have_one(:status, JIRA::Resource::Status)
expect(subject.status.foo).to eq('bar')
expect(subject).to have_many(:components, JIRA::Resource::Component)
expect(subject.components.length).to eq(2)
expect(subject).to have_many(:comments, JIRA::Resource::Comment)
expect(subject.comments.length).to eq(2)
expect(subject).to have_many(:attachments, JIRA::Resource::Attachment)
expect(subject.attachments.length).to eq(2)
expect(subject).to have_many(:versions, JIRA::Resource::Version)
expect(subject.attachments.length).to eq(2)
expect(subject).to have_many(:worklogs, JIRA::Resource::Worklog)
expect(subject.worklogs.length).to eq(2)
end
end
end
|