- `Rails.root` is a `Pathname`, so let's use `Rails.root.join` - Clean up most of the remaining `File.join`s
80 lines
2.3 KiB
Ruby
80 lines
2.3 KiB
Ruby
require 'spec_helper'
|
|
require Rails.root.join('spec', 'shared_behaviors', 'stream')
|
|
describe Stream::Base do
|
|
before do
|
|
@stream = Stream::Base.new(alice)
|
|
end
|
|
|
|
describe '#contacts_link' do
|
|
it 'should default to your contacts page' do
|
|
@stream.contacts_link.should =~ /contacts/
|
|
end
|
|
end
|
|
|
|
describe '#stream_posts' do
|
|
it "should returns the posts.for_a_stream" do
|
|
posts = mock
|
|
@stream.stub(:posts).and_return(posts)
|
|
@stream.stub(:like_posts_for_stream!)
|
|
|
|
posts.should_receive(:for_a_stream).with(anything, anything, alice).and_return(posts)
|
|
@stream.stream_posts
|
|
end
|
|
|
|
context "when alice has liked some posts" do
|
|
before do
|
|
bob.post(:status_message, :text => "sup", :to => bob.aspects.first.id)
|
|
@liked_status = bob.posts.last
|
|
@like = Factory(:like, :target => @liked_status, :author => alice.person)
|
|
end
|
|
|
|
it "marks the posts as liked" do
|
|
@stream.stream_posts.first.user_like.id.should == @like.id
|
|
end
|
|
end
|
|
end
|
|
|
|
describe '.can_comment?' do
|
|
before do
|
|
@person = Factory(:person)
|
|
@stream.stub(:people).and_return([bob.person, eve.person, @person])
|
|
end
|
|
|
|
it 'allows me to comment on my local contacts post' do
|
|
post = Factory(:status_message, :author => bob.person)
|
|
@stream.can_comment?(post).should be_true
|
|
end
|
|
|
|
it 'allows me to comment on my own post' do
|
|
post = Factory(:status_message, :author => alice.person)
|
|
@stream.can_comment?(post).should be_true
|
|
end
|
|
|
|
it 'allows me to comment on any local public post' do
|
|
post = Factory(:status_message, :author => eve.person)
|
|
@stream.can_comment?(post).should be_true
|
|
end
|
|
|
|
it 'allows me to comment on a remote contacts post' do
|
|
Contact.create!(:user => @stream.user, :person => @person)
|
|
post = Factory(:status_message, :author => @person)
|
|
@stream.can_comment?(post).should be_true
|
|
end
|
|
|
|
it 'returns false if person is remote and not a contact' do
|
|
post = Factory(:status_message, :author => @person)
|
|
@stream.can_comment?(post).should be_false
|
|
end
|
|
end
|
|
|
|
describe '#people' do
|
|
it 'excludes blocked people' do
|
|
@stream.should_receive(:stream_posts).and_return(stub.as_null_object)
|
|
@stream.people
|
|
end
|
|
end
|
|
|
|
describe 'shared behaviors' do
|
|
it_should_behave_like 'it is a stream'
|
|
end
|
|
end
|