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
|
require 'spec_helper'
describe JIRA::Resource::Attachment do
subject(:attachment) do
JIRA::Resource::Attachment.new(
client,
issue: JIRA::Resource::Issue.new(client),
attrs: { 'author' => { 'foo' => 'bar' } }
)
end
let(:client) do
double(
'client',
options: {
rest_base_path: '/jira/rest/api/2'
},
request_client: double(
options: {
username: 'username',
password: 'password'
}
)
)
end
describe 'relationships' do
it 'has an author' do
expect(subject).to have_one(:author, JIRA::Resource::User)
end
it 'has the correct author name' do
expect(subject.author.foo).to eq('bar')
end
end
describe '.meta' do
subject { JIRA::Resource::Attachment.meta(client) }
let(:response) do
double(
'response',
body: '{"enabled":true,"uploadLimit":10485760}'
)
end
it 'returns meta information about attachment upload' do
expect(client).to receive(:get).with('/jira/rest/api/2/attachment/meta').and_return(response)
subject
end
context 'the factory delegates correctly' do
subject { JIRA::Resource::AttachmentFactory.new(client) }
it 'delegates #meta to to target class' do
expect(subject).to respond_to(:meta)
end
end
end
describe '#save' do
subject { attachment.save('file' => path_to_file) }
let(:path_to_file) { './spec/mock_responses/issue.json' }
let(:response) do
double(
body: [
{
"id": 10_001,
"self": 'http://www.example.com/jira/rest/api/2.0/attachments/10000',
"filename": 'picture.jpg',
"created": '2017-07-19T12:23:06.572+0000',
"size": 23_123,
"mimeType": 'image/jpeg'
}
].to_json
)
end
let(:issue) { JIRA::Resource::Issue.new(client) }
before do
allow(client).to receive(:post_multipart).and_return(response)
end
it 'successfully update the attachment' do
subject
expect(attachment.filename).to eq 'picture.jpg'
expect(attachment.mimeType).to eq 'image/jpeg'
expect(attachment.size).to eq 23_123
end
end
describe '#save!' do
subject { attachment.save!('file' => path_to_file) }
let(:path_to_file) { './spec/mock_responses/issue.json' }
let(:response) do
double(
body: [
{
"id": 10_001,
"self": 'http://www.example.com/jira/rest/api/2.0/attachments/10000',
"filename": 'picture.jpg',
"created": '2017-07-19T12:23:06.572+0000',
"size": 23_123,
"mimeType": 'image/jpeg'
}
].to_json
)
end
let(:issue) { JIRA::Resource::Issue.new(client) }
before do
allow(client).to receive(:post_multipart).and_return(response)
end
it 'successfully update the attachment' do
subject
expect(attachment.filename).to eq 'picture.jpg'
expect(attachment.mimeType).to eq 'image/jpeg'
expect(attachment.size).to eq 23_123
end
context 'when passing in a symbol as file key' do
subject { attachment.save!(file: path_to_file) }
it 'successfully update the attachment' do
subject
expect(attachment.filename).to eq 'picture.jpg'
expect(attachment.mimeType).to eq 'image/jpeg'
expect(attachment.size).to eq 23_123
end
end
end
end
|