diaspora/spec/intergration/receiving_spec.rb
2011-01-14 16:00:10 -08:00

222 lines
7 KiB
Ruby

# Copyright (c) 2010, Diaspora Inc. This file is
# licensed under the Affero General Public License version 3 or later. See
# the COPYRIGHT file.
require 'spec_helper'
describe 'a user receives a post' do
let(:user) { Factory.create(:user) }
let(:aspect) { user.aspects.create(:name => 'heroes') }
let(:user2) { Factory.create(:user) }
let(:aspect2) { user2.aspects.create(:name => 'losers') }
let(:user3) { Factory.create(:user) }
let(:aspect3) { user3.aspects.create(:name => 'heroes') }
def receive_with_zord(user, person, xml)
zord = Postzord::Receiver.new(user, :person => person)
zord.parse_and_receive(xml)
end
before do
connect_users(user, aspect, user2, aspect2)
end
it 'streams only one message to the everyone aspect when a multi-aspected contacts posts' do
contact = user.contact_for(user2.person)
user.add_contact_to_aspect(contact, user.aspects.create(:name => "villains"))
status = user2.build_post(:status_message, :message => "Users do things", :to => aspect2.id)
Diaspora::WebSocket.should_receive(:queue_to_user).exactly(:once)
zord = Postzord::Receiver.new(user, :object => status, :person => user2.person)
zord.receive_object
end
it 'should be able to parse and store a status message from xml' do
status_message = user2.post :status_message, :message => 'store this!', :to => aspect2.id
xml = status_message.to_diaspora_xml
user2.delete
status_message.destroy
lambda {
receive_with_zord(user, user2.person, xml)
}.should change(Post,:count).by(1)
end
it 'should not create new aspects on message receive' do
num_aspects = user.aspects.size
2.times do |n|
status_message = user2.post :status_message, :message => "store this #{n}!", :to => aspect2.id
end
user.aspects.size.should == num_aspects
end
context 'update posts' do
it 'does not update posts not marked as mutable' do
status = user.post :status_message, :message => "store this!", :to => aspect.id
status.message = 'foo'
xml = status.to_diaspora_xml
receive_with_zord(user2, user.person, xml)
status.reload.message.should == 'store this!'
end
it 'updates posts marked as mutable' do
photo = user.post(:photo, :user_file => uploaded_photo, :caption => "Original", :to => aspect.id)
photo.caption = 'foo'
xml = photo.to_diaspora_xml
user2.reload
receive_with_zord(user2, user.person, xml)
photo.reload.caption.should match(/foo/)
end
end
describe 'post refs' do
before do
@status_message = user2.post :status_message, :message => "hi", :to => aspect2.id
user.reload
aspect.reload
end
it "adds a received post to the aspect and visible_posts array" do
user.raw_visible_posts.include?(@status_message).should be_true
aspect.posts.include?(@status_message).should be_true
end
it 'removes posts upon disconnecting' do
user.disconnect(user2.person)
user.reload
user.raw_visible_posts.should_not include @status_message
end
it 'deletes a post if the noone links to it' do
person = Factory(:person)
user.activate_contact(person, aspect)
post = Factory.create(:status_message, :person => person)
post.post_visibilities.should be_empty
receive_with_zord(user, person, post.to_diaspora_xml)
aspect.post_visibilities.reset
aspect.posts(true).should include(post)
post.post_visibilities.reset
post.post_visibilities.length.should == 1
lambda {
user.disconnected_by(person)
}.should change(Post, :count).by(-1)
end
it 'deletes post_visibilities on disconnected by' do
person = Factory(:person)
user.activate_contact(person, aspect)
post = Factory.create(:status_message, :person => person)
post.post_visibilities.should be_empty
receive_with_zord(user, person, post.to_diaspora_xml)
aspect.post_visibilities.reset
aspect.posts(true).should include(post)
post.post_visibilities.reset
post.post_visibilities.length.should == 1
lambda {
user.disconnected_by(person)
}.should change{post.post_visibilities(true).count}.by(-1)
end
it 'should keep track of user references for one person ' do
@status_message.reload
@status_message.user_refs.should == 2
user.disconnect(user2.person)
@status_message.reload
@status_message.user_refs.should == 1
end
it 'should not override userrefs on receive by another person' do
@status_message.post_visibilities.reset
@status_message.user_refs.should == 2
user3.activate_contact(user2.person, aspect3)
xml = @status_message.to_diaspora_xml
receive_with_zord(user3, user2.person, xml)
@status_message.post_visibilities.reset
@status_message.user_refs.should == 3
user.disconnect(user2.person)
@status_message.post_visibilities.reset
@status_message.user_refs.should == 2
end
end
describe 'comments' do
before do
connect_users(user, aspect, user3, aspect3)
@post = user.post :status_message, :message => "hello", :to => aspect.id
xml = @post.to_diaspora_xml
receive_with_zord(user2, user.person, xml)
receive_with_zord(user3, user.person, xml)
@comment = user3.comment('tada',:on => @post)
@comment.post_creator_signature = @comment.sign_with_key(user.encryption_key)
@xml = @comment.to_diaspora_xml
@comment.delete
end
it 'should correctly attach the user already on the pod' do
user2.reload.raw_visible_posts.size.should == 1
post_in_db = StatusMessage.find(@post.id)
post_in_db.comments.should == []
receive_with_zord(user2, user.person, @xml)
post_in_db.comments(true).first.person.should == user3.person
end
it 'should correctly marshal a stranger for the downstream user' do
remote_person = user3.person.dup
user3.person.delete
user3.delete
remote_person.id = nil
#stubs async webfinger
Person.should_receive(:by_account_identifier).twice.and_return{ |handle|
if handle == user.person.diaspora_handle
user.person.save
user.person
else
remote_person.profile = Factory(:profile)
remote_person.save!
remote_person
end
}
user2.reload.raw_visible_posts.size.should == 1
post_in_db = StatusMessage.find(@post.id)
post_in_db.comments.should == []
receive_with_zord(user2, user.person, @xml)
post_in_db.comments(true).first.person.should == remote_person
end
end
describe 'salmon' do
let(:post){user.post :status_message, :message => "hello", :to => aspect.id}
let(:salmon){user.salmon( post )}
it 'processes a salmon for a post' do
salmon_xml = salmon.xml_for(user2.person)
zord = Postzord::Receiver.new(user2, :salmon_xml => salmon_xml)
zord.perform
user2.raw_visible_posts.include?(post).should be_true
end
end
end