71 lines
2 KiB
Ruby
71 lines
2 KiB
Ruby
require 'spec_helper'
|
|
require File.join(Rails.root, 'spec', 'shared_behaviors', 'stream')
|
|
|
|
describe Stream::Multi do
|
|
before do
|
|
@stream = Stream::Multi.new(Factory(:user), :max_time => Time.now, :order => 'updated_at')
|
|
end
|
|
|
|
|
|
describe 'shared behaviors' do
|
|
it_should_behave_like 'it is a stream'
|
|
end
|
|
|
|
describe '#is_in?' do
|
|
it 'handles when the cache returns strings' do
|
|
p = Factory(:status_message)
|
|
@stream.should_receive(:aspects_post_ids).and_return([p.id.to_s])
|
|
@stream.send(:is_in?, :aspects, p).should be_true
|
|
end
|
|
end
|
|
|
|
describe '#publisher_opts' do
|
|
it 'prefills, sets public, and autoexpands if welcome? is set' do
|
|
prefill_text = "sup?"
|
|
@stream.stub(:welcome?).and_return(true)
|
|
@stream.stub(:publisher_prefill).and_return(prefill_text)
|
|
@stream.send(:publisher_opts).should == {:open => true,
|
|
:prefill => prefill_text,
|
|
:public => true}
|
|
end
|
|
|
|
it 'provides no opts if welcome? is not set' do
|
|
prefill_text = "sup?"
|
|
@stream.stub(:welcome?).and_return(false)
|
|
@stream.send(:publisher_opts).should == {}
|
|
end
|
|
end
|
|
|
|
describe "#publisher_prefill" do
|
|
before do
|
|
@tag = ActsAsTaggableOn::Tag.find_or_create_by_name("cats")
|
|
@tag_following = alice.tag_followings.create(:tag_id => @tag.id)
|
|
|
|
@stream = Stream::Multi.new(alice)
|
|
end
|
|
|
|
it 'returns includes new user hashtag' do
|
|
@stream.send(:publisher_prefill).include?("#newhere").should be_true
|
|
end
|
|
|
|
it 'includes followed hashtags' do
|
|
@stream.send(:publisher_prefill).include?("#cats").should be_true
|
|
end
|
|
end
|
|
|
|
describe "#welcome?" do
|
|
before do
|
|
@stream = Stream::Multi.new(alice)
|
|
end
|
|
|
|
it 'returns true if user is getting started' do
|
|
alice.getting_started = true
|
|
@stream.send(:welcome?).should be_true
|
|
end
|
|
|
|
it 'returns false if user is getting started' do
|
|
alice.getting_started = false
|
|
@stream.send(:welcome?).should be_false
|
|
end
|
|
end
|
|
end
|