discourse/spec/components/unread_spec.rb

65 lines
2.3 KiB
Ruby
Raw Normal View History

2013-02-05 14:16:51 -05:00
require 'spec_helper'
require 'unread'
describe Unread do
before do
@topic = Fabricate(:topic, posts_count: 13, highest_post_number: 13)
@topic.notifier.watch_topic!(@topic.user_id)
2013-02-05 14:16:51 -05:00
@topic_user = TopicUser.get(@topic, @topic.user)
@topic_user.stubs(:notification_level).returns(TopicUser.notification_levels[:tracking])
@topic_user.notification_level = TopicUser.notification_levels[:tracking]
2013-02-05 14:16:51 -05:00
@unread = Unread.new(@topic, @topic_user)
end
describe 'unread_posts' do
it 'should have 0 unread posts if the user has seen all posts' do
@topic_user.stubs(:last_read_post_number).returns(13)
@topic_user.stubs(:highest_seen_post_number).returns(13)
2015-01-09 11:34:37 -05:00
expect(@unread.unread_posts).to eq(0)
2013-02-25 11:42:20 -05:00
end
2013-02-05 14:16:51 -05:00
it 'should have 6 unread posts if the user has seen all but 6 posts' do
@topic_user.stubs(:last_read_post_number).returns(5)
@topic_user.stubs(:highest_seen_post_number).returns(11)
2015-01-09 11:34:37 -05:00
expect(@unread.unread_posts).to eq(6)
2013-02-25 11:42:20 -05:00
end
2013-02-05 14:16:51 -05:00
it 'should have 0 unread posts if the user has seen more posts than exist (deleted)' do
@topic_user.stubs(:last_read_post_number).returns(100)
@topic_user.stubs(:highest_seen_post_number).returns(13)
2015-01-09 11:34:37 -05:00
expect(@unread.unread_posts).to eq(0)
2013-02-25 11:42:20 -05:00
end
2013-02-05 14:16:51 -05:00
end
describe 'new_posts' do
it 'should have 0 new posts if the user has read all posts' do
@topic_user.stubs(:last_read_post_number).returns(13)
2015-01-09 11:34:37 -05:00
expect(@unread.new_posts).to eq(0)
2013-02-05 14:16:51 -05:00
end
it 'returns 0 when the topic is the same length as when you last saw it' do
@topic_user.stubs(:highest_seen_post_number).returns(13)
2015-01-09 11:34:37 -05:00
expect(@unread.new_posts).to eq(0)
2013-02-05 14:16:51 -05:00
end
it 'has 3 new posts if the user has read 10 posts' do
@topic_user.stubs(:highest_seen_post_number).returns(10)
2015-01-09 11:34:37 -05:00
expect(@unread.new_posts).to eq(3)
2013-02-05 14:16:51 -05:00
end
2013-02-25 11:42:20 -05:00
2013-02-05 14:16:51 -05:00
it 'has 0 new posts if the user has read 10 posts but is not tracking' do
@topic_user.stubs(:highest_seen_post_number).returns(10)
@topic_user.stubs(:notification_level).returns(TopicUser.notification_levels[:regular])
2015-01-09 11:34:37 -05:00
expect(@unread.new_posts).to eq(0)
2013-02-05 14:16:51 -05:00
end
it 'has 0 new posts if the user read more posts than exist (deleted)' do
@topic_user.stubs(:highest_seen_post_number).returns(16)
2015-01-09 11:34:37 -05:00
expect(@unread.new_posts).to eq(0)
2013-02-25 11:42:20 -05:00
end
2013-02-05 14:16:51 -05:00
end
end