2015-10-11 17:41:23 +08:00
|
|
|
require 'rails_helper'
|
2013-02-06 03:16:51 +08:00
|
|
|
|
|
|
|
describe NotificationsController do
|
|
|
|
|
|
|
|
context 'when logged in' do
|
|
|
|
let!(:user) { log_in }
|
|
|
|
|
2017-04-07 17:32:13 +08:00
|
|
|
describe '#index' do
|
|
|
|
it 'should succeed for recent' do
|
2017-08-31 12:06:56 +08:00
|
|
|
get :index, params: { recent: true }
|
2017-04-07 17:32:13 +08:00
|
|
|
expect(response).to be_success
|
|
|
|
end
|
2014-09-03 09:32:27 +08:00
|
|
|
|
2017-04-07 17:32:13 +08:00
|
|
|
it 'should succeed for history' do
|
2017-08-31 12:06:56 +08:00
|
|
|
get :index
|
2017-04-07 17:32:13 +08:00
|
|
|
expect(response).to be_success
|
|
|
|
end
|
|
|
|
|
|
|
|
it 'should mark notifications as viewed' do
|
2018-01-12 11:15:10 +08:00
|
|
|
_notification = Fabricate(:notification, user: user)
|
2017-04-07 17:32:13 +08:00
|
|
|
expect(user.reload.unread_notifications).to eq(1)
|
|
|
|
expect(user.reload.total_unread_notifications).to eq(1)
|
2017-08-31 12:06:56 +08:00
|
|
|
get :index, params: { recent: true }, format: :json
|
2017-04-07 17:32:13 +08:00
|
|
|
expect(user.reload.unread_notifications).to eq(0)
|
|
|
|
expect(user.reload.total_unread_notifications).to eq(1)
|
|
|
|
end
|
|
|
|
|
|
|
|
it 'should not mark notifications as viewed if silent param is present' do
|
2018-01-12 11:15:10 +08:00
|
|
|
_notification = Fabricate(:notification, user: user)
|
2017-04-07 17:32:13 +08:00
|
|
|
expect(user.reload.unread_notifications).to eq(1)
|
|
|
|
expect(user.reload.total_unread_notifications).to eq(1)
|
2017-08-31 12:06:56 +08:00
|
|
|
get :index, params: { recent: true, silent: true }
|
2017-04-07 17:32:13 +08:00
|
|
|
expect(user.reload.unread_notifications).to eq(1)
|
|
|
|
expect(user.reload.total_unread_notifications).to eq(1)
|
|
|
|
end
|
|
|
|
|
|
|
|
context 'when username params is not valid' do
|
|
|
|
it 'should raise the right error' do
|
2017-08-31 12:06:56 +08:00
|
|
|
get :index, params: { username: 'somedude' }, format: :json
|
2017-04-25 09:56:26 +08:00
|
|
|
|
|
|
|
expect(response).to_not be_success
|
|
|
|
expect(response.status).to eq(404)
|
2017-04-07 17:32:13 +08:00
|
|
|
end
|
|
|
|
end
|
2013-02-06 03:16:51 +08:00
|
|
|
end
|
|
|
|
|
2015-05-06 01:44:19 +08:00
|
|
|
it 'should succeed' do
|
2017-08-31 12:06:56 +08:00
|
|
|
put :mark_read, format: :json
|
2015-01-10 01:04:02 +08:00
|
|
|
expect(response).to be_success
|
2014-10-13 18:26:30 +08:00
|
|
|
end
|
|
|
|
|
2016-09-16 14:14:00 +08:00
|
|
|
it "can update a single notification" do
|
|
|
|
notification = Fabricate(:notification, user: user)
|
|
|
|
notification2 = Fabricate(:notification, user: user)
|
2017-08-31 12:06:56 +08:00
|
|
|
put :mark_read, params: { id: notification.id }, format: :json
|
2016-09-16 14:14:00 +08:00
|
|
|
expect(response).to be_success
|
|
|
|
|
|
|
|
notification.reload
|
|
|
|
notification2.reload
|
|
|
|
|
|
|
|
expect(notification.read).to eq(true)
|
|
|
|
expect(notification2.read).to eq(false)
|
|
|
|
end
|
|
|
|
|
2014-10-13 18:26:30 +08:00
|
|
|
it "updates the `read` status" do
|
2018-01-12 11:15:10 +08:00
|
|
|
_notification = Fabricate(:notification, user: user)
|
2015-01-10 01:04:02 +08:00
|
|
|
expect(user.reload.unread_notifications).to eq(1)
|
|
|
|
expect(user.reload.total_unread_notifications).to eq(1)
|
2017-08-31 12:06:56 +08:00
|
|
|
put :mark_read, format: :json
|
2014-10-13 18:26:30 +08:00
|
|
|
user.reload
|
2015-01-10 01:04:02 +08:00
|
|
|
expect(user.reload.unread_notifications).to eq(0)
|
|
|
|
expect(user.reload.total_unread_notifications).to eq(0)
|
2014-06-07 18:17:45 +08:00
|
|
|
end
|
2013-02-06 03:16:51 +08:00
|
|
|
end
|
|
|
|
|
|
|
|
context 'when not logged in' do
|
|
|
|
it 'should raise an error' do
|
2018-01-12 11:15:10 +08:00
|
|
|
get :index, params: { recent: true }, format: :json
|
|
|
|
expect(response.status).to eq(403)
|
2013-02-26 00:42:20 +08:00
|
|
|
end
|
2013-02-06 03:16:51 +08:00
|
|
|
end
|
|
|
|
|
|
|
|
end
|