2016-12-06 18:22:59 +01:00
|
|
|
require 'rails_helper'
|
|
|
|
|
|
|
|
RSpec.describe Api::V1::NotificationsController, type: :controller do
|
|
|
|
render_views
|
|
|
|
|
|
|
|
let(:user) { Fabricate(:user, account: Fabricate(:account, username: 'alice')) }
|
2018-07-05 18:31:35 +02:00
|
|
|
let(:token) { Fabricate(:accessible_access_token, resource_owner_id: user.id, scopes: scopes) }
|
2017-04-10 23:45:29 +02:00
|
|
|
let(:other) { Fabricate(:user, account: Fabricate(:account, username: 'bob')) }
|
2019-05-21 13:28:49 +02:00
|
|
|
let(:third) { Fabricate(:user, account: Fabricate(:account, username: 'carol')) }
|
2016-12-06 18:22:59 +01:00
|
|
|
|
|
|
|
before do
|
|
|
|
allow(controller).to receive(:doorkeeper_token) { token }
|
|
|
|
end
|
|
|
|
|
2017-05-19 23:32:37 +02:00
|
|
|
describe 'GET #show' do
|
2018-07-05 18:31:35 +02:00
|
|
|
let(:scopes) { 'read:notifications' }
|
|
|
|
|
2017-05-19 23:32:37 +02:00
|
|
|
it 'returns http success' do
|
|
|
|
notification = Fabricate(:notification, account: user.account)
|
|
|
|
get :show, params: { id: notification.id }
|
|
|
|
|
2018-04-21 21:35:07 +02:00
|
|
|
expect(response).to have_http_status(200)
|
2017-05-19 23:32:37 +02:00
|
|
|
end
|
|
|
|
end
|
|
|
|
|
|
|
|
describe 'POST #dismiss' do
|
2018-07-05 18:31:35 +02:00
|
|
|
let(:scopes) { 'write:notifications' }
|
|
|
|
|
2017-05-19 23:32:37 +02:00
|
|
|
it 'destroys the notification' do
|
|
|
|
notification = Fabricate(:notification, account: user.account)
|
|
|
|
post :dismiss, params: { id: notification.id }
|
|
|
|
|
2018-04-21 21:35:07 +02:00
|
|
|
expect(response).to have_http_status(200)
|
2017-05-19 23:32:37 +02:00
|
|
|
expect { notification.reload }.to raise_error(ActiveRecord::RecordNotFound)
|
|
|
|
end
|
|
|
|
end
|
|
|
|
|
|
|
|
describe 'POST #clear' do
|
2018-07-05 18:31:35 +02:00
|
|
|
let(:scopes) { 'write:notifications' }
|
|
|
|
|
2017-05-19 23:32:37 +02:00
|
|
|
it 'clears notifications for the account' do
|
|
|
|
notification = Fabricate(:notification, account: user.account)
|
|
|
|
post :clear
|
|
|
|
|
|
|
|
expect(notification.account.reload.notifications).to be_empty
|
2018-04-21 21:35:07 +02:00
|
|
|
expect(response).to have_http_status(200)
|
2017-05-19 23:32:37 +02:00
|
|
|
end
|
|
|
|
end
|
|
|
|
|
2016-12-06 18:22:59 +01:00
|
|
|
describe 'GET #index' do
|
2018-07-05 18:31:35 +02:00
|
|
|
let(:scopes) { 'read:notifications' }
|
|
|
|
|
2017-04-10 23:45:29 +02:00
|
|
|
before do
|
2019-01-05 12:43:28 +01:00
|
|
|
first_status = PostStatusService.new.call(user.account, text: 'Test')
|
2017-04-12 15:53:55 +02:00
|
|
|
@reblog_of_first_status = ReblogService.new.call(other.account, first_status)
|
2019-01-05 12:43:28 +01:00
|
|
|
mentioning_status = PostStatusService.new.call(other.account, text: 'Hello @alice')
|
2017-04-12 15:53:55 +02:00
|
|
|
@mention_from_status = mentioning_status.mentions.first
|
|
|
|
@favourite = FavouriteService.new.call(other.account, first_status)
|
2019-05-21 13:28:49 +02:00
|
|
|
@second_favourite = FavouriteService.new.call(third.account, first_status)
|
2021-02-24 06:32:13 +01:00
|
|
|
@follow = FollowService.new.call(other.account, user.account)
|
2017-04-10 23:45:29 +02:00
|
|
|
end
|
|
|
|
|
|
|
|
describe 'with no options' do
|
|
|
|
before do
|
|
|
|
get :index
|
|
|
|
end
|
|
|
|
|
|
|
|
it 'returns http success' do
|
2018-04-21 21:35:07 +02:00
|
|
|
expect(response).to have_http_status(200)
|
2017-04-10 23:45:29 +02:00
|
|
|
end
|
|
|
|
|
|
|
|
it 'includes reblog' do
|
2017-04-12 15:53:55 +02:00
|
|
|
expect(assigns(:notifications).map(&:activity)).to include(@reblog_of_first_status)
|
2017-04-10 23:45:29 +02:00
|
|
|
end
|
|
|
|
|
|
|
|
it 'includes mention' do
|
2017-04-12 15:53:55 +02:00
|
|
|
expect(assigns(:notifications).map(&:activity)).to include(@mention_from_status)
|
2017-04-10 23:45:29 +02:00
|
|
|
end
|
|
|
|
|
|
|
|
it 'includes favourite' do
|
2017-04-12 15:53:55 +02:00
|
|
|
expect(assigns(:notifications).map(&:activity)).to include(@favourite)
|
2017-04-10 23:45:29 +02:00
|
|
|
end
|
|
|
|
|
|
|
|
it 'includes follow' do
|
2017-04-12 15:53:55 +02:00
|
|
|
expect(assigns(:notifications).map(&:activity)).to include(@follow)
|
2017-04-10 23:45:29 +02:00
|
|
|
end
|
|
|
|
end
|
|
|
|
|
2019-05-21 13:28:49 +02:00
|
|
|
describe 'from specified user' do
|
|
|
|
before do
|
|
|
|
get :index, params: { account_id: third.account.id }
|
|
|
|
end
|
|
|
|
|
|
|
|
it 'returns http success' do
|
|
|
|
expect(response).to have_http_status(200)
|
|
|
|
end
|
|
|
|
|
|
|
|
it 'includes favourite' do
|
|
|
|
expect(assigns(:notifications).map(&:activity)).to include(@second_favourite)
|
|
|
|
end
|
|
|
|
|
|
|
|
it 'excludes favourite' do
|
|
|
|
expect(assigns(:notifications).map(&:activity)).to_not include(@favourite)
|
|
|
|
end
|
|
|
|
|
|
|
|
it 'excludes mention' do
|
|
|
|
expect(assigns(:notifications).map(&:activity)).to_not include(@mention_from_status)
|
|
|
|
end
|
|
|
|
|
|
|
|
it 'excludes reblog' do
|
|
|
|
expect(assigns(:notifications).map(&:activity)).to_not include(@reblog_of_first_status)
|
|
|
|
end
|
|
|
|
|
|
|
|
it 'excludes follow' do
|
|
|
|
expect(assigns(:notifications).map(&:activity)).to_not include(@follow)
|
|
|
|
end
|
|
|
|
end
|
|
|
|
|
|
|
|
describe 'from nonexistent user' do
|
|
|
|
before do
|
|
|
|
get :index, params: { account_id: 'foo' }
|
|
|
|
end
|
|
|
|
|
|
|
|
it 'returns http success' do
|
|
|
|
expect(response).to have_http_status(200)
|
|
|
|
end
|
|
|
|
|
|
|
|
it 'excludes favourite' do
|
|
|
|
expect(assigns(:notifications).map(&:activity)).to_not include(@favourite)
|
|
|
|
end
|
|
|
|
|
|
|
|
it 'excludes second favourite' do
|
|
|
|
expect(assigns(:notifications).map(&:activity)).to_not include(@second_favourite)
|
|
|
|
end
|
|
|
|
|
|
|
|
it 'excludes mention' do
|
|
|
|
expect(assigns(:notifications).map(&:activity)).to_not include(@mention_from_status)
|
|
|
|
end
|
|
|
|
|
|
|
|
it 'excludes reblog' do
|
|
|
|
expect(assigns(:notifications).map(&:activity)).to_not include(@reblog_of_first_status)
|
|
|
|
end
|
|
|
|
|
|
|
|
it 'excludes follow' do
|
|
|
|
expect(assigns(:notifications).map(&:activity)).to_not include(@follow)
|
|
|
|
end
|
|
|
|
end
|
|
|
|
|
2017-04-10 23:45:29 +02:00
|
|
|
describe 'with excluded mentions' do
|
|
|
|
before do
|
|
|
|
get :index, params: { exclude_types: ['mention'] }
|
|
|
|
end
|
|
|
|
|
|
|
|
it 'returns http success' do
|
2018-04-21 21:35:07 +02:00
|
|
|
expect(response).to have_http_status(200)
|
2017-04-10 23:45:29 +02:00
|
|
|
end
|
|
|
|
|
|
|
|
it 'includes reblog' do
|
2017-04-12 15:53:55 +02:00
|
|
|
expect(assigns(:notifications).map(&:activity)).to include(@reblog_of_first_status)
|
2017-04-10 23:45:29 +02:00
|
|
|
end
|
|
|
|
|
|
|
|
it 'excludes mention' do
|
2017-04-12 15:53:55 +02:00
|
|
|
expect(assigns(:notifications).map(&:activity)).to_not include(@mention_from_status)
|
2017-04-10 23:45:29 +02:00
|
|
|
end
|
|
|
|
|
|
|
|
it 'includes favourite' do
|
2017-04-12 15:53:55 +02:00
|
|
|
expect(assigns(:notifications).map(&:activity)).to include(@favourite)
|
2017-04-10 23:45:29 +02:00
|
|
|
end
|
|
|
|
|
2019-05-21 13:28:49 +02:00
|
|
|
it 'includes third favourite' do
|
|
|
|
expect(assigns(:notifications).map(&:activity)).to include(@second_favourite)
|
|
|
|
end
|
|
|
|
|
2017-04-10 23:45:29 +02:00
|
|
|
it 'includes follow' do
|
2017-04-12 15:53:55 +02:00
|
|
|
expect(assigns(:notifications).map(&:activity)).to include(@follow)
|
2017-04-10 23:45:29 +02:00
|
|
|
end
|
2016-12-06 18:22:59 +01:00
|
|
|
end
|
|
|
|
end
|
|
|
|
end
|