111 lines
3.2 KiB
Ruby
111 lines
3.2 KiB
Ruby
require File.dirname(__FILE__) + '/../spec_helper'
|
|
|
|
describe Photo do
|
|
before do
|
|
@user = Factory.create(:user)
|
|
@fixture_filename = 'bp.jpeg'
|
|
@fixture_name = File.dirname(__FILE__) + '/../fixtures/bp.jpeg'
|
|
@fail_fixture_name = File.dirname(__FILE__) + '/../fixtures/msg.xml'
|
|
@album = Album.create(:name => "foo", :person => @user)
|
|
@photo = Photo.new(:person => @user, :album => @album)
|
|
end
|
|
|
|
it 'should have a constructor' do
|
|
image = File.open(@fixture_name)
|
|
photo = Photo.instantiate(:person => @user, :album => @album, :user_file => [image])
|
|
photo.save.should be true
|
|
|
|
photo.image.read.nil?.should be false
|
|
end
|
|
|
|
it 'should save a @photo to GridFS' do
|
|
@photo.image.store! File.open(@fixture_name)
|
|
@photo.save.should == true
|
|
binary = @photo.image.read
|
|
fixture_binary = File.open(@fixture_name).read
|
|
binary.should == fixture_binary
|
|
end
|
|
|
|
it 'must have an album' do
|
|
photo = Photo.new(:person => @user)
|
|
photo.image = File.open(@fixture_name)
|
|
photo.save
|
|
photo.valid?.should be false
|
|
photo.album = Album.create(:name => "foo", :person => @user)
|
|
photo.save
|
|
Photo.first.album.name.should == 'foo'
|
|
end
|
|
|
|
it 'should remove its reference in user profile if it is referred' do
|
|
@photo.image.store! File.open(@fixture_name)
|
|
@photo.save
|
|
|
|
@user.profile.image_url = @photo.image.url(:thumb_medium)
|
|
@user.save
|
|
|
|
User.first.profile.image_url.should == @photo.image.url(:thumb_medium)
|
|
@photo.destroy
|
|
User.first.profile.image_url.should be nil
|
|
end
|
|
|
|
it 'should not use the imported filename as the url' do
|
|
@photo.image.store! File.open(@fixture_name)
|
|
puts @photo.image.url(:thumb_medium)
|
|
@photo.image.url.include?(@fixture_filename).should be false
|
|
@photo.image.url(:thumb_medium).include?(@fixture_filename).should be false
|
|
end
|
|
|
|
describe 'non-image files' do
|
|
it 'should not store' do
|
|
file = File.open(@fail_fixture_name)
|
|
@photo.image.should_receive(:check_whitelist!)
|
|
lambda {
|
|
@photo.image.store! file
|
|
}.should raise_error
|
|
end
|
|
|
|
it 'should not save' do
|
|
pending "We need to figure out the difference between us and the example app"
|
|
file = File.open(@fail_fixture_name)
|
|
@photo.image.should_receive(:check_whitelist!)
|
|
@photo.image = file
|
|
@photo.save.should == false
|
|
end
|
|
end
|
|
|
|
describe 'with encryption' do
|
|
|
|
before do
|
|
unstub_mocha_stubs
|
|
end
|
|
|
|
after do
|
|
stub_signature_verification
|
|
end
|
|
|
|
it 'should save a signed @photo to GridFS' do
|
|
photo = Photo.create(:person => @user, :album => @album, :image => File.open(@fixture_name))
|
|
photo.save.should == true
|
|
photo.verify_creator_signature.should be true
|
|
end
|
|
|
|
end
|
|
|
|
describe 'remote photos' do
|
|
it 'should write the url on serialization' do
|
|
@photo.image = File.open(@fixture_name)
|
|
@photo.image.store!
|
|
@photo.save
|
|
|
|
xml = @photo.to_xml.to_s
|
|
|
|
xml.include?(@photo.image.url).should be true
|
|
end
|
|
|
|
it 'should have an album id on serialization' do
|
|
@photo.image.store! File.open(@fixture_name)
|
|
xml = @photo.to_xml.to_s
|
|
xml.include?(@photo.album_id.to_s).should be true
|
|
end
|
|
end
|
|
end
|