2013-02-05 13:16:51 -06:00
|
|
|
require 'spec_helper'
|
|
|
|
|
|
|
|
describe NotificationsController do
|
|
|
|
|
|
|
|
context 'when logged in' do
|
|
|
|
let!(:user) { log_in }
|
|
|
|
|
2014-09-02 20:32:27 -05:00
|
|
|
it 'should succeed for recent' do
|
|
|
|
xhr :get, :recent
|
|
|
|
response.should be_success
|
|
|
|
end
|
|
|
|
|
|
|
|
it 'should succeed for history' do
|
|
|
|
xhr :get, :history
|
2014-06-07 05:17:45 -05:00
|
|
|
response.should be_success
|
2013-02-05 13:16:51 -06:00
|
|
|
end
|
|
|
|
|
2014-06-07 05:17:45 -05:00
|
|
|
it 'should mark notifications as viewed' do
|
|
|
|
notification = Fabricate(:notification, user: user)
|
|
|
|
user.reload.unread_notifications.should == 1
|
2014-09-02 20:32:27 -05:00
|
|
|
xhr :get, :recent
|
2014-06-07 05:17:45 -05:00
|
|
|
user.reload.unread_notifications.should == 0
|
|
|
|
end
|
|
|
|
|
|
|
|
it 'should not mark notifications as viewed if silent param is present' do
|
|
|
|
notification = Fabricate(:notification, user: user)
|
|
|
|
user.reload.unread_notifications.should == 1
|
2014-09-02 20:32:27 -05:00
|
|
|
xhr :get, :recent, silent: true
|
2014-06-07 05:17:45 -05:00
|
|
|
user.reload.unread_notifications.should == 1
|
|
|
|
end
|
2013-02-05 13:16:51 -06:00
|
|
|
end
|
|
|
|
|
|
|
|
context 'when not logged in' do
|
|
|
|
it 'should raise an error' do
|
2014-09-02 20:32:27 -05:00
|
|
|
lambda { xhr :get, :recent }.should raise_error(Discourse::NotLoggedIn)
|
2013-02-25 10:42:20 -06:00
|
|
|
end
|
2013-02-05 13:16:51 -06:00
|
|
|
end
|
|
|
|
|
|
|
|
end
|