Newer
Older
# licensed under the Affero General Public License version 3 or later. See
Daniel Vincent Grippi
a validé
describe 'a user receives a post' do
zord = Postzord::Receiver.new(user, :person => person)
zord.parse_and_receive(xml)
end
before do
@user1 = alice
@aspect = @user1.aspects.first
@user2 = bob
@aspect2 = @user2.aspects.first
@user3 = eve
@aspect3 = @user3.aspects.first
it 'streams only one message to the everyone aspect when a multi-aspected contacts posts' do
contact = @user1.contact_for(@user2.person)
@user1.add_contact_to_aspect(contact, @user1.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(@user1, :object => status, :person => @user2.person)
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
receive_with_zord(@user1, @user2.person, xml)
num_aspects = @user1.aspects.size
status_message = @user2.post :status_message, :message => "store this #{n}!", :to => @aspect2.id
Raphael
a validé
@user1.aspects.size.should == num_aspects
Raphael
a validé
end
maxwell
a validé
it 'does not update posts not marked as mutable' do
status = @user1.post :status_message, :message => "store this!", :to => @aspect.id
maxwell
a validé
status.message = 'foo'
receive_with_zord(@user2, @user1.person, xml)
status.reload.message.should == 'store this!'
maxwell
a validé
end
it 'updates posts marked as mutable' do
photo = @user1.post(:photo, :user_file => uploaded_photo, :caption => "Original", :to => @aspect.id)
receive_with_zord(@user2, @user1.person, xml)
maxwell
a validé
end
end
@status_message = @user2.post :status_message, :message => "hi", :to => @aspect2.id
@user1.reload
@aspect.reload
it "adds a received post to the aspect and visible_posts array" do
@user1.raw_visible_posts.include?(@status_message).should be_true
@aspect.posts.include?(@status_message).should be_true
it 'removes posts upon disconnecting' do
@user1.disconnect(@user2.person)
@user1.reload
@user1.raw_visible_posts.should_not include @status_message
it 'deletes a post if the noone links to it' do
@user1.activate_contact(person, @aspect)
post = Factory.create(:status_message, :person => person)
post.post_visibilities.should be_empty
receive_with_zord(@user1, 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 {
@user1.disconnected_by(person)
}.should change(Post, :count).by(-1)
it 'deletes post_visibilities on disconnected by' do
person = Factory(:person)
@user1.activate_contact(person, @aspect)
post = Factory.create(:status_message, :person => person)
post.post_visibilities.should be_empty
receive_with_zord(@user1, 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 {
@user1.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.user_refs.should == 3
@user1.disconnect(@user2.person)
@status_message.user_refs.should == 2
end
it 'should not override userrefs on receive by another person' do
new_user = Factory(:user)
@status_message.post_visibilities.reset
@status_message.user_refs.should == 3
new_user.activate_contact(@user2.person, @aspect3)
xml = @status_message.to_diaspora_xml
receive_with_zord(new_user, @user2.person, xml)
@status_message.post_visibilities.reset
@status_message.user_refs.should == 4
@user1.disconnect(@user2.person)
@status_message.post_visibilities.reset
@status_message.user_refs.should == 3
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
context 'remote' do
before do
connect_users(@user1, @aspect, @user3, @aspect3)
@post = @user1.post :status_message, :message => "hello", :to => @aspect.id
xml = @post.to_diaspora_xml
receive_with_zord(@user2, @user1.person, xml)
receive_with_zord(@user3, @user1.person, xml)
@comment = @user3.comment('tada',:on => @post)
@comment.post_creator_signature = @comment.sign_with_key(@user1.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, @user1.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 == @user1.person.diaspora_handle
@user1.person.save
@user1.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, @user1.person, @xml)
post_in_db.comments(true).first.person.should == remote_person
end
end
context 'local' do
before do
@post = @user1.post :status_message, :message => "hello", :to => @aspect.id
xml = @post.to_diaspora_xml
receive_with_zord(@user2, @user1.person, xml)
@comment = @user2.comment('tada',:on => @post)
@xml = @comment.to_diaspora_xml
end
it 'does not raise a `Mysql2::Error: Duplicate entry...` exception on save' do
#lambda {
receive_with_zord(@user1, @user2.person, @xml)
#}.should_not raise_exception
end
let(:post){@user1.post :status_message, :message => "hello", :to => @aspect.id}
let(:salmon){@user1.salmon( post )}
salmon_xml = salmon.xml_for(@user2.person)
zord = Postzord::Receiver.new(@user2, :salmon_xml => salmon_xml)
@user2.raw_visible_posts.include?(post).should be_true