Skip to content
Extraits de code Groupes Projets
receive_spec.rb 5,08 ko
Newer Older
  • Learn to ignore specific revisions
  • Raphael's avatar
    Raphael a validé
    #   Copyright (c) 2010, Disapora Inc.  This file is
    #   licensed under the Affero General Public License version 3.  See
    #   the COPYRIGHT file.
    
    require File.dirname(__FILE__) + '/../../spec_helper'
    
    describe User do
    
      before do
        @user = Factory.create :user
    
    Raphael's avatar
    Raphael a validé
        @aspect = @user.aspect(:name => 'heroes')
    
    
        @user2 = Factory.create(:user)
    
    Raphael's avatar
    Raphael a validé
        @aspect2 = @user2.aspect(:name => 'losers') 
    
    Raphael's avatar
    Raphael a validé
    
        @user3 = Factory.create(:user)
    
    Raphael's avatar
    Raphael a validé
        @aspect3 = @user3.aspect(:name => 'heroes')
    
    Raphael's avatar
    Raphael a validé
        friend_users(@user, @aspect, @user2, @aspect2)
    
      end
    
      it 'should be able to parse and store a status message from xml' do
    
    Raphael's avatar
    Raphael a validé
        status_message = @user2.post :status_message, :message => 'store this!', :to => @aspect2.id
    
        person = @user2.person
    
        xml = status_message.to_diaspora_xml
        @user2.destroy
        status_message.destroy
        StatusMessage.all.size.should == 0
        @user.receive( xml )
        
    
        Post.all(:person_id => person.id).first.message.should == 'store this!'
    
        StatusMessage.all.size.should == 1
      end
    
    Raphael's avatar
    Raphael a validé
      it 'should not create new aspects on message receive' do
        num_aspects = @user.aspects.size
    
    Raphael's avatar
    Raphael a validé
          status_message = @user2.post :status_message, :message => "store this #{n}!", :to => @aspect2.id
    
          xml = status_message.to_diaspora_xml
          @user.receive( xml )
        }
    
    
    Raphael's avatar
    Raphael a validé
        @user.aspects.size.should == num_aspects
    
    
      describe 'post refs' do
        before do
    
        end
        
        it "should add the post to that user's posts when a user posts it" do
    
    Raphael's avatar
    Raphael a validé
          status_message = @user.post :status_message, :message => "hi", :to => @aspect.id
    
          @user.reload
          @user.raw_visible_posts.include?(status_message).should be true
        end
    
        it 'should be removed on unfriending' do
    
    Raphael's avatar
    Raphael a validé
          status_message = @user2.post :status_message, :message => "hi", :to => @aspect2.id
    
          @user.receive status_message.to_diaspora_xml
          @user.reload
    
          @user.raw_visible_posts.count.should == 1
          
          @user.unfriend(@user2.person)
    
          @user.reload
          @user.raw_visible_posts.count.should == 0
          
          Post.count.should be 1
        end
    
        it 'should be remove a post if the noone links to it' do
    
    Raphael's avatar
    Raphael a validé
          status_message = @user2.post :status_message, :message => "hi", :to => @aspect2.id
    
          @user.receive status_message.to_diaspora_xml
          @user.reload
    
          @user.raw_visible_posts.count.should == 1
          
          person = @user2.person
          @user2.destroy
          @user.unfriend(person)
    
          @user.reload
          @user.raw_visible_posts.count.should == 0
          
          Post.count.should be 0
        end
    
        it 'should keep track of user references for one person ' do
    
    Raphael's avatar
    Raphael a validé
          status_message = @user2.post :status_message, :message => "hi", :to => @aspect2.id
    
          @user.receive status_message.to_diaspora_xml
          @user.reload
    
          @user.raw_visible_posts.count.should == 1
          
          status_message.reload
          status_message.user_refs.should == 1
          
          @user.unfriend(@user2.person)
          status_message.reload
    
          @user.reload
          @user.raw_visible_posts.count.should == 0
    
          status_message.reload
          status_message.user_refs.should == 0
          
          Post.count.should be 1
        end
    
        it 'should not override userrefs on receive by another person' do
    
    Raphael's avatar
    Raphael a validé
          @user3.activate_friend(@user2.person, @aspect3)
    
    Raphael's avatar
    Raphael a validé
          status_message = @user2.post :status_message, :message => "hi", :to => @aspect2.id
    
          @user.receive status_message.to_diaspora_xml
    
          @user3.receive status_message.to_diaspora_xml
          @user.reload
          @user3.reload
    
          @user.raw_visible_posts.count.should == 1
          
          status_message.reload
          status_message.user_refs.should == 2
          
          @user.unfriend(@user2.person)
          status_message.reload
    
          @user.reload
          @user.raw_visible_posts.count.should == 0
    
          status_message.reload
          status_message.user_refs.should == 1
          
          Post.count.should be 1
        end
      end
    
    Raphael's avatar
    Raphael a validé
    
      describe 'comments' do
    
        it 'should correctly marshal a stranger for the downstream user' do
    
    Raphael's avatar
    Raphael a validé
          friend_users(@user, @aspect, @user3, @aspect3)
          post = @user.post :status_message, :message => "hello", :to => @aspect.id
    
    Raphael's avatar
    Raphael a validé
    
    
          @user2.receive post.to_diaspora_xml
          @user3.receive post.to_diaspora_xml
    
    Raphael's avatar
    Raphael a validé
    
    
          comment = @user2.comment('tada',:on => post)
          @user.receive comment.to_diaspora_xml
          @user.reload
    
    Raphael's avatar
    Raphael a validé
    
    
          commenter_id = @user2.person.id
    
    
          @user2.person.delete
          @user2.delete
          comment_id = comment.id
    
    Raphael's avatar
    Raphael a validé
    
    
          comment.delete
          @user3.receive comment.to_diaspora_xml
          @user3.reload
    
    Raphael's avatar
    Raphael a validé
    
    
          new_comment = Comment.find_by_id(comment_id)
          new_comment.should_not be_nil
          new_comment.person.should_not be_nil
          new_comment.person.profile.should_not be_nil
          
    
          @user3.visible_person_by_id(commenter_id).should_not be_nil
    
    Raphael's avatar
    Raphael a validé
        end
      end
    
    Raphael's avatar
    Raphael a validé
    
      describe 'salmon' do
        before do
    
    Raphael's avatar
    Raphael a validé
          @post = @user.post :status_message, :message => "hello", :to => @aspect.id
    
    Raphael's avatar
    Raphael a validé
          @salmon = @user.salmon( @post, :to => @user2.person )
        end
    
        it 'should receive a salmon for a post' do
    
          @user2.receive_salmon( @user2.person.encrypt(@salmon.to_xml) )
    
    Raphael's avatar
    Raphael a validé
          @user2.visible_post_ids.include?(@post.id).should be true
        end
      end