diaspora/spec/lib/diaspora/exporter_spec.rb

108 lines
3.4 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'
require File.join(Rails.root, 'lib/diaspora/exporter')
describe Diaspora::Exporter do
before do
@user1 = alice
@user2 = Factory.create(:user)
@user3 = bob
@aspect = @user1.aspects.first
@aspect1 = @user1.aspects.create(:name => "Work")
@aspect2 = @user2.aspects.create(:name => "Family")
@aspect3 = @user3.aspects.first
@status_message1 = @user1.post(:status_message, :text => "One", :public => true, :to => @aspect1.id)
@status_message2 = @user1.post(:status_message, :text => "Two", :public => true, :to => @aspect1.id)
@status_message3 = @user2.post(:status_message, :text => "Three", :public => false, :to => @aspect2.id)
end
def exported
Nokogiri::XML(Diaspora::Exporter.new(Diaspora::Exporters::XML).execute(@user1))
end
context '<user/>' do
before do
@user_xml = exported.xpath('//user').to_s
end
it 'includes a users private key' do
@user_xml.to_s.should include @user1.serialized_private_key
end
end
context '<aspects/>' do
it 'includes the post_ids' do
aspects_xml = exported.xpath('//aspects').to_s
aspects_xml.should include @status_message1.id.to_s
aspects_xml.should include @status_message2.id.to_s
end
end
context '<contacts/>' do
before do
@user1.add_contact_to_aspect(@user1.contact_for(@user3.person), @aspect1)
@user1.reload
end
let(:contacts_xml) {exported.xpath('//contacts').to_s}
it "includes a person's guid" do
contacts_xml.should include @user3.person.guid
end
it "includes the names of all aspects they are in" do
#contact specific xml needs to be tested
@user1.contacts.find_by_person_id(@user3.person.id).aspects.count.should > 0
@user1.contacts.find_by_person_id(@user3.person.id).aspects.each { |aspect|
contacts_xml.should include aspect.name
}
end
end
context '<people/>' do
let(:people_xml) {exported.xpath('//people').to_s}
it 'includes their guid' do
people_xml.should include @user3.person.guid
end
it 'includes their profile' do
people_xml.should include @user3.person.profile.first_name
people_xml.should include @user3.person.profile.last_name
end
it 'includes their public key' do
people_xml.should include @user3.person.exported_key
end
it 'includes their diaspora handle' do
people_xml.should include @user3.person.diaspora_handle
end
end
context '<posts>' do
let(:posts_xml) {exported.xpath('//posts').to_s}
it "includes many posts' xml" do
posts_xml.should include @status_message1.text
posts_xml.should include @status_message2.text
posts_xml.should_not include @status_message3.text
end
it "includes the post's created at time" do
@status_message1.update_attribute(:created_at, Time.now - 1.day) # make sure they have different created at times
doc = Nokogiri::XML::parse(posts_xml)
created_at_text = doc.xpath('//posts/status_message').detect do |status|
status.to_s.include?(@status_message1.guid)
end.xpath('created_at').text
Time.zone.parse(created_at_text).to_i.should == @status_message1.created_at.to_i
end
end
end