diaspora/spec/models/post_spec.rb
2010-09-08 18:29:39 -07:00

36 lines
1,020 B
Ruby

require File.dirname(__FILE__) + '/../spec_helper'
describe Post do
before do
@user = Factory.create(:user, :email => "bob@aol.com")
@user.person.save
end
describe 'xml' do
before do
@message = Factory.create(:status_message, :person => @user.person)
end
it 'should serialize to xml with its person' do
@message.to_xml.to_s.include?(@user.person.email).should == true
end
it 'should serialize to encrypted xml' do
enc_xml = @message.encrypted_xml_for(@user.person)
enc_xml.include?(@message.to_diaspora_xml).should be false
@user.decrypt(enc_xml).include?(@message.to_diaspora_xml).should be true
end
end
describe 'deletion' do
it 'should delete a posts comments on delete' do
post = Factory.create(:status_message, :person => @user.person)
@user.comment "hey", :on => post
post.destroy
Post.all(:id => post.id).empty?.should == true
Comment.all(:text => "hey").empty?.should == true
end
end
end