Added basic specs for attachment CRUD

improve_associations
Jonathan S. Katz 2008-10-22 01:41:21 -04:00 committed by Chris Anderson
parent 8d25cbc8b0
commit e497fbbab4
3 changed files with 61 additions and 2 deletions

View File

@ -588,7 +588,7 @@ module CouchRest
def get_mime_type(file)
MIME::Types.type_for(file.path).empty? ?
'text\/plain' : MIME::Types.type_for(file.path).content_type.gsub(/\//,'\/')
'text\/plain' : MIME::Types.type_for(file.path).first.content_type.gsub(/\//,'\/')
end
def set_attachment_attr(file, attachment_name)

View File

@ -727,4 +727,60 @@ describe CouchRest::Model do
lambda{Basic.get(@obj.id)}.should raise_error
end
end
end
describe "creating an attachment" do
before(:each) do
@obj = Basic.new
@obj.save.should == true
@file_ext = File.open(FIXTURE_PATH + '/attachments/test.html')
@file_no_text = File.open(FIXTURE_PATH + '/attachments/README')
@attachment_name = 'my_attachment'
end
it "should create an attachment from file with an extension" do
@obj.create_attachment(@file_ext, @attachment_name)
@obj.save.should == true
reloaded_obj = Basic.get(@obj.id)
reloaded_obj['_attachments'][@attachment_name].should_not be_nil
end
it "should create an attachment from file without an extension" do
@obj.create_attachment(@file_no_text, @attachment_name)
@obj.save.should == true
reloaded_obj = Basic.get(@obj.id)
reloaded_obj['_attachments'][@attachment_name].should_not be_nil
end
end
describe 'reading, updating, and deleting an attachment' do
before(:each) do
@obj = Basic.new
@file = File.open(FIXTURE_PATH + '/attachments/test.html')
@attachment_name = 'my_attachment'
@obj.create_attachment(@file, @attachment_name)
@obj.save.should == true
@file.rewind
end
it 'should read an attachment that exists' do
@obj.read_attachment(@attachment_name).should == @file.read
end
it 'should update an attachment that exists' do
file = File.open(FIXTURE_PATH + '/attachments/README')
@file.should_not == file
@obj.update_attachment(file, @attachment_name)
@obj.save
reloaded_obj = Basic.get(@obj.id)
file.rewind
reloaded_obj.read_attachment(@attachment_name).should_not == @file.read
reloaded_obj.read_attachment(@attachment_name).should == file.read
end
it 'should delete an attachment that exists' do
@obj.delete_attachment(@attachment_name)
@obj.save
lambda{Basic.get(@obj.id).read_attachment(@attachment_name)}.should raise_error
end
end
end

3
spec/fixtures/attachments/README vendored Normal file
View File

@ -0,0 +1,3 @@
This is an example README file.
More of the README, whee.