Cut 10 seconds off of visible_posts_spec
This commit is contained in:
parent
f9919d1cce
commit
e1cdcc68c8
1 changed files with 65 additions and 77 deletions
|
|
@ -5,115 +5,103 @@
|
||||||
require 'spec_helper'
|
require 'spec_helper'
|
||||||
|
|
||||||
describe User do
|
describe User do
|
||||||
let!(:user) { Factory(:user_with_aspect) }
|
|
||||||
let!(:first_aspect) { user.aspects.first }
|
|
||||||
let!(:second_aspect) { user.aspect(:name => 'losers') }
|
|
||||||
|
|
||||||
let!(:user2) { Factory(:user_with_aspect) }
|
let!(:user2) { Factory(:user_with_aspect) }
|
||||||
let!(:user3) { Factory(:user_with_aspect) }
|
|
||||||
let!(:user4) { Factory(:user_with_aspect) }
|
|
||||||
|
|
||||||
let!(:status_message1) { user2.post :status_message, :message => "hi", :to => user2.aspects.first.id }
|
context 'with two posts' do
|
||||||
let!(:status_message2) { user2.post :status_message, :message => "hey", :public => true , :to => user2.aspects.first.id }
|
let!(:status_message1) { user2.post :status_message, :message => "hi", :to => user2.aspects.first.id }
|
||||||
let!(:status_message3) { user2.post :status_message, :message => "va", :to => user2.aspects.first.id }
|
let!(:status_message2) { user2.post :status_message, :message => "hey", :public => true , :to => user2.aspects.first.id }
|
||||||
let!(:status_message4) { user2.post :status_message, :message => "da", :public => true , :to => user2.aspects.first.id }
|
|
||||||
let!(:status_message5) { user3.post :status_message, :message => "heyyyy", :to => user3.aspects.first.id}
|
|
||||||
let!(:status_message6) { user4.post :status_message, :message => "yooo", :to => user4.aspects.first.id}
|
|
||||||
|
|
||||||
|
|
||||||
before do
|
|
||||||
friend_users(user, first_aspect, user2, user2.aspects.first)
|
|
||||||
friend_users(user, second_aspect, user3, user3.aspects.first)
|
|
||||||
|
|
||||||
end
|
|
||||||
|
|
||||||
describe '#friends_not_in_aspect' do
|
|
||||||
it 'finds the people who are not in the given aspect' do
|
|
||||||
|
|
||||||
friend_users(user, first_aspect, user4, user4.aspects.first)
|
|
||||||
people = user.friends_not_in_aspect(first_aspect)
|
|
||||||
people.should == [user3.person]
|
|
||||||
|
|
||||||
people2 = user.friends_not_in_aspect(second_aspect)
|
|
||||||
people2.count.should == 2
|
|
||||||
people2.include?(user2.person).should be true
|
|
||||||
people2.include?(user4.person).should be true
|
|
||||||
end
|
|
||||||
end
|
|
||||||
|
|
||||||
|
|
||||||
describe "#visible_posts" do
|
describe "#visible_posts" do
|
||||||
it "queries by person id" do
|
it "queries by person id" do
|
||||||
user2.visible_posts(:person_id => user2.person.id).include?(status_message1).should == true
|
query = user2.visible_posts(:person_id => user2.person.id)
|
||||||
user2.visible_posts(:person_id => user2.person.id).include?(status_message2).should == true
|
query.include?(status_message1).should == true
|
||||||
user2.visible_posts(:person_id => user2.person.id).include?(status_message3).should == true
|
query.include?(status_message2).should == true
|
||||||
user2.visible_posts(:person_id => user2.person.id).include?(status_message4).should == true
|
end
|
||||||
end
|
|
||||||
|
|
||||||
it "selects public posts" do
|
it "selects public posts" do
|
||||||
user2.visible_posts(:public => true).include?(status_message2).should == true
|
query = user2.visible_posts(:public => true)
|
||||||
user2.visible_posts(:public => true).include?(status_message4).should == true
|
query.include?(status_message2).should == true
|
||||||
end
|
query.include?(status_message1).should == false
|
||||||
|
end
|
||||||
|
|
||||||
it "selects non public posts" do
|
it "selects non public posts" do
|
||||||
user2.visible_posts(:public => false).include?(status_message1).should == true
|
query = user2.visible_posts(:public => false)
|
||||||
user2.visible_posts(:public => false).include?(status_message3).should == true
|
query.include?(status_message1).should == true
|
||||||
end
|
query.include?(status_message2).should == false
|
||||||
|
end
|
||||||
|
|
||||||
it "selects by message contents" do
|
it "selects by message contents" do
|
||||||
user2.visible_posts(:message => "hi").include?(status_message1).should == true
|
user2.visible_posts(:message => "hi").include?(status_message1).should == true
|
||||||
end
|
end
|
||||||
|
|
||||||
it "queries by aspect" do
|
context 'with two users' do
|
||||||
friend_users(user, second_aspect, user4, user4.aspects.first)
|
let!(:user) {Factory :user}
|
||||||
|
let!(:first_aspect) {user.aspect(:name => 'bruisers')}
|
||||||
|
let!(:second_aspect) {user.aspect(:name => 'losers')}
|
||||||
|
|
||||||
user.receive status_message4.to_diaspora_xml, user2.person
|
it "queries by aspect" do
|
||||||
user.receive status_message5.to_diaspora_xml, user3.person
|
friend_users(user, first_aspect, user2, user2.aspects.first)
|
||||||
user.receive status_message6.to_diaspora_xml, user4.person
|
user.receive status_message1.to_diaspora_xml, user2.person
|
||||||
|
|
||||||
user.visible_posts(:by_members_of => first_aspect).should =~ [status_message4]
|
user.visible_posts(:by_members_of => first_aspect).should =~ [status_message1]
|
||||||
user.visible_posts(:by_members_of => second_aspect).should =~ [status_message5, status_message6]
|
user.visible_posts(:by_members_of => second_aspect).should =~ []
|
||||||
|
end
|
||||||
|
it '#find_visible_post_by_id' do
|
||||||
|
user2.find_visible_post_by_id(status_message1.id).should == status_message1
|
||||||
|
user.find_visible_post_by_id(status_message1.id).should == nil
|
||||||
|
end
|
||||||
|
end
|
||||||
end
|
end
|
||||||
end
|
end
|
||||||
|
|
||||||
context 'querying' do
|
context 'with two users' do
|
||||||
describe '#find_visible_post_by_id' do
|
let!(:user) {Factory :user}
|
||||||
it 'should query' do
|
let!(:first_aspect) {user.aspect(:name => 'bruisers')}
|
||||||
user2.find_visible_post_by_id(status_message1.id).should == status_message1
|
let!(:second_aspect) {user.aspect(:name => 'losers')}
|
||||||
user.find_visible_post_by_id(status_message1.id).should == nil
|
|
||||||
|
describe '#friends_not_in_aspect' do
|
||||||
|
it 'finds the people who are not in the given aspect' do
|
||||||
|
user4 = Factory.create(:user_with_aspect)
|
||||||
|
friend_users(user, first_aspect, user4, user4.aspects.first)
|
||||||
|
friend_users(user, second_aspect, user2, user2.aspects.first)
|
||||||
|
|
||||||
|
people = user.friends_not_in_aspect(first_aspect)
|
||||||
|
people.should == [user2.person]
|
||||||
end
|
end
|
||||||
end
|
end
|
||||||
|
|
||||||
describe '#find_friend_by_id' do
|
describe '#find_friend_by_id' do
|
||||||
it 'should find both friends' do
|
it 'should find a friend' do
|
||||||
user.reload
|
friend_users(user, first_aspect, user2, user2.aspects.first)
|
||||||
user.find_friend_by_id(user2.person.id).should == user2.person
|
user.find_friend_by_id(user2.person.id).should == user2.person
|
||||||
user.find_friend_by_id(user3.person.id).should == user3.person
|
|
||||||
end
|
end
|
||||||
|
|
||||||
it 'should not find a non-friend' do
|
it 'should not find a non-friend' do
|
||||||
user3.find_friend_by_id(user4.person.id).should be nil
|
user = Factory :user
|
||||||
|
user.find_friend_by_id(user2.person.id).should be nil
|
||||||
end
|
end
|
||||||
|
|
||||||
end
|
end
|
||||||
end
|
end
|
||||||
|
describe '#albums_by_aspect' do
|
||||||
context 'albums' do
|
let!(:first_aspect) {user2.aspect(:name => 'bruisers')}
|
||||||
|
let!(:second_aspect) {user2.aspect(:name => 'losers')}
|
||||||
before do
|
before do
|
||||||
user.post :album, :name => "Georges", :to => first_aspect.id
|
user2.post :album, :name => "Georges", :to => first_aspect.id
|
||||||
user.post :album, :name => "Borges", :to => first_aspect.id
|
user2.post :album, :name => "Borges", :to => first_aspect.id
|
||||||
user.post :album, :name => "Luises", :to => second_aspect.id
|
user2.post :album, :name => "Luises", :to => second_aspect.id
|
||||||
user.reload
|
user2.reload
|
||||||
end
|
end
|
||||||
|
|
||||||
it 'should find all albums if passed :all' do
|
it 'should find all albums if passed :all' do
|
||||||
user.albums_by_aspect(:all).should have(3).albums
|
user2.albums_by_aspect(:all).should have(3).albums
|
||||||
end
|
end
|
||||||
|
|
||||||
it 'should return the right number of albums' do
|
it 'should return the right number of albums' do
|
||||||
user.albums_by_aspect(first_aspect.reload).should have(2).albums
|
user2.albums_by_aspect(first_aspect.reload).should have(2).albums
|
||||||
user.albums_by_aspect(second_aspect.reload).should have(1).album
|
user2.albums_by_aspect(second_aspect.reload).should have(1).album
|
||||||
end
|
end
|
||||||
end
|
end
|
||||||
end
|
end
|
||||||
|
|
||||||
|
|
|
||||||
Loading…
Reference in a new issue