218 lines
7.1 KiB
Ruby
218 lines
7.1 KiB
Ruby
require File.dirname(__FILE__) + '/../spec_helper'
|
|
|
|
include ApplicationHelper
|
|
include Diaspora::Parser
|
|
|
|
|
|
|
|
describe Diaspora::Parser do
|
|
before do
|
|
@user = Factory.create(:user, :email => "bob@aol.com")
|
|
@person = Factory.create(:person_with_private_key, :email => "bill@gates.com")
|
|
end
|
|
|
|
it "should not store posts from me" do
|
|
10.times {
|
|
message = Factory.build(:status_message, :person => @user)
|
|
xml = message.build_xml_for
|
|
store_objects_from_xml(xml, @user)
|
|
}
|
|
StatusMessage.count.should == 0
|
|
end
|
|
|
|
it "should reject xml with no sender" do
|
|
xml = "<XML>
|
|
<head>
|
|
</head><posts>
|
|
<post><status_message>\n <message>Here is another message</message>\n <owner>a@a.com</owner>\n <snippet>a@a.com</snippet>\n <source>a@a.com</source>\n</status_message></post>
|
|
<post><person></person></post>
|
|
<post><status_message>\n <message>HEY DUDE</message>\n <owner>a@a.com</owner>\n <snippet>a@a.com</snippet>\n <source>a@a.com</source>\n</status_message></post>
|
|
</posts></XML>"
|
|
store_objects_from_xml(xml, @user)
|
|
Post.count.should == 0
|
|
|
|
end
|
|
|
|
it "should reject xml with a sender not in the database" do
|
|
xml = "<XML>
|
|
<head>
|
|
<sender>
|
|
<email>foo@example.com</email>
|
|
</sender>
|
|
</head><posts>
|
|
<post><status_message>\n <message>Here is another message</message>\n <owner>a@a.com</owner>\n <snippet>a@a.com</snippet>\n <source>a@a.com</source>\n</status_message></post>
|
|
<post><person></person></post>
|
|
<post><status_message>\n <message>HEY DUDE</message>\n <owner>a@a.com</owner>\n <snippet>a@a.com</snippet>\n <source>a@a.com</source>\n</status_message></post>
|
|
</posts></XML>"
|
|
store_objects_from_xml(xml, @user)
|
|
Post.count.should == 0
|
|
end
|
|
|
|
it 'should discard types which are not of type post' do
|
|
xml = "<XML>
|
|
<head>
|
|
<sender>
|
|
<email>#{Person.first.email}</email>
|
|
</sender>
|
|
</head>
|
|
<posts>
|
|
<post><person></person></post>
|
|
</posts></XML>"
|
|
|
|
store_objects_from_xml(xml, @user)
|
|
Post.count.should == 0
|
|
end
|
|
|
|
|
|
describe "parsing compliant XML object" do
|
|
before do
|
|
@xml = Factory.build(:status_message).build_xml_for
|
|
end
|
|
|
|
it 'should be able to parse the body\'s contents' do
|
|
body = parse_body_contents_from_xml(@xml).to_s
|
|
body.should_not include "<posts>"
|
|
body.should_not include "</posts>"
|
|
body.should include "<post>"
|
|
body.should include "</post>"
|
|
end
|
|
|
|
it 'should be able to extract all posts to an array' do
|
|
posts = parse_objects_from_xml(@xml)
|
|
posts.is_a?(Array).should be true
|
|
posts.count.should == 1
|
|
end
|
|
|
|
it 'should be able to correctly handle comments' do
|
|
person = Factory.create(:person, :email => "test@testing.com")
|
|
post = Factory.create(:status_message, :person => @user.person)
|
|
comment = Factory.build(:comment, :post => post, :person => person, :text => "Freedom!")
|
|
xml = "<XML>
|
|
<posts>
|
|
<post>#{comment.to_xml}</post>
|
|
</posts></XML>"
|
|
|
|
objects = parse_objects_from_xml(xml)
|
|
comment = objects.first
|
|
comment.text.should == "Freedom!"
|
|
comment.person.should == person
|
|
comment.post.should == post
|
|
end
|
|
|
|
it 'should marshal retractions' do
|
|
person = Factory.create(:person)
|
|
message = Factory.create(:status_message, :person => person)
|
|
retraction = Retraction.for(message)
|
|
request = retraction.build_xml_for
|
|
|
|
StatusMessage.count.should == 1
|
|
store_objects_from_xml( request, @user )
|
|
StatusMessage.count.should == 0
|
|
end
|
|
|
|
it "should create a new person upon getting a person request" do
|
|
request = Request.instantiate(:to =>"http://www.google.com/", :from => @person)
|
|
|
|
original_person_id = @person.id
|
|
xml = request.build_xml_for
|
|
|
|
@person.destroy
|
|
Person.all.count.should be 1
|
|
store_objects_from_xml(xml, @user)
|
|
Person.all.count.should be 2
|
|
|
|
Person.first(:_id => original_person_id).serialized_key.include?("PUBLIC").should be true
|
|
url = "http://" + request.callback_url.split("/")[2] + "/"
|
|
Person.where(:url => url).first.id.should == original_person_id
|
|
end
|
|
|
|
it "should not create a new person if the person is already here" do
|
|
@user2 = Factory.create(:user)
|
|
request = Request.instantiate(:to =>"http://www.google.com/", :from => @user2.person)
|
|
|
|
original_person_id = @user2.person.id
|
|
xml = request.build_xml_for
|
|
|
|
|
|
Person.all.count.should be 3
|
|
store_objects_from_xml(xml, @user)
|
|
Person.all.count.should be 3
|
|
|
|
@user2.reload
|
|
@user2.person.reload
|
|
@user2.person.serialized_key.include?("PRIVATE").should be true
|
|
|
|
url = "http://" + request.callback_url.split("/")[2] + "/"
|
|
Person.where(:url => url).first.id.should == original_person_id
|
|
end
|
|
|
|
it "should activate the Person if I initiated a request to that url" do
|
|
request = Request.instantiate(:to => @person.receive_url, :from => @user)
|
|
request.save
|
|
@user.pending_requests << request
|
|
@user.save
|
|
|
|
|
|
request_remote = Request.new
|
|
request_remote.id = request.id
|
|
request_remote.destination_url = @user.receive_url
|
|
request_remote.callback_url = @user.receive_url
|
|
request_remote.person = @person
|
|
request_remote.exported_key = @person.export_key
|
|
|
|
xml = request_remote.build_xml_for
|
|
|
|
@person.destroy
|
|
request_remote.destroy
|
|
store_objects_from_xml(xml, @user)
|
|
new_person = Person.first(:url => @person.url)
|
|
new_person.nil?.should be false
|
|
|
|
@user.reload
|
|
@user.friends.include?(new_person).should be true
|
|
end
|
|
|
|
|
|
it 'should process retraction for a person' do
|
|
retraction = Retraction.for(@user)
|
|
request = retraction.build_xml_for
|
|
|
|
Person.count.should == 2
|
|
store_objects_from_xml( request , @user)
|
|
Person.count.should == 1
|
|
end
|
|
|
|
it 'should marshal a profile for a person' do
|
|
#Create person
|
|
person = Factory.create(:person)
|
|
id = person.id
|
|
person.profile = Profile.new(:first_name => 'bob', :last_name => 'billytown', :image_url => "http://clown.com")
|
|
person.save
|
|
|
|
#Cache profile for checking against marshaled profile
|
|
old_profile = person.profile
|
|
old_profile.first_name.should == 'bob'
|
|
|
|
#Build xml for profile, clear profile
|
|
xml = person.profile.build_xml_for
|
|
reloaded_person = Person.first(:id => id)
|
|
reloaded_person.profile = nil
|
|
reloaded_person.save(:validate => false)
|
|
|
|
#Make sure profile is cleared
|
|
Person.first(:id => id).profile.should be nil
|
|
old_profile.first_name.should == 'bob'
|
|
|
|
#Marshal profile
|
|
store_objects_from_xml xml, @user
|
|
|
|
#Check that marshaled profile is the same as old profile
|
|
person = Person.first(:id => person.id)
|
|
person.profile.should_not be nil
|
|
person.profile.first_name.should == old_profile.first_name
|
|
person.profile.last_name.should == old_profile.last_name
|
|
person.profile.image_url.should == old_profile.image_url
|
|
end
|
|
end
|
|
end
|
|
|