2016-12-06 18:22:59 +01:00
|
|
|
require 'rails_helper'
|
|
|
|
|
|
|
|
RSpec.describe Api::V1::NotificationsController, type: :controller do
|
|
|
|
render_views
|
|
|
|
|
2022-01-28 00:46:42 +01:00
|
|
|
let(:user) { Fabricate(:user, account_attributes: { username: 'alice' }) }
|
2018-07-05 18:31:35 +02:00
|
|
|
let(:token) { Fabricate(:accessible_access_token, resource_owner_id: user.id, scopes: scopes) }
|
2022-01-28 00:46:42 +01:00
|
|
|
let(:other) { Fabricate(:user) }
|
|
|
|
let(:third) { Fabricate(:user) }
|
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
|
2022-03-15 04:11:29 +01:00
|
|
|
expect(body_as_json.map { |x| x[:type] }).to include 'reblog'
|
2017-04-10 23:45:29 +02:00
|
|
|
end
|
|
|
|
|
|
|
|
it 'includes mention' do
|
2022-03-15 04:11:29 +01:00
|
|
|
expect(body_as_json.map { |x| x[:type] }).to include 'mention'
|
2017-04-10 23:45:29 +02:00
|
|
|
end
|
|
|
|
|
|
|
|
it 'includes favourite' do
|
2022-03-15 04:11:29 +01:00
|
|
|
expect(body_as_json.map { |x| x[:type] }).to include 'favourite'
|
2017-04-10 23:45:29 +02:00
|
|
|
end
|
|
|
|
|
|
|
|
it 'includes follow' do
|
2022-03-15 04:11:29 +01:00
|
|
|
expect(body_as_json.map { |x| x[:type] }).to include 'follow'
|
2017-04-10 23:45:29 +02:00
|
|
|
end
|
|
|
|
end
|
|
|
|
|
2022-03-15 04:11:29 +01:00
|
|
|
describe 'with account_id param' do
|
2019-05-21 13:28:49 +02:00
|
|
|
before do
|
|
|
|
get :index, params: { account_id: third.account.id }
|
|
|
|
end
|
|
|
|
|
|
|
|
it 'returns http success' do
|
|
|
|
expect(response).to have_http_status(200)
|
|
|
|
end
|
|
|
|
|
2022-03-15 04:11:29 +01:00
|
|
|
it 'returns only notifications from specified user' do
|
|
|
|
expect(body_as_json.map { |x| x[:account][:id] }.uniq).to eq [third.account.id.to_s]
|
2019-05-21 13:28:49 +02:00
|
|
|
end
|
|
|
|
end
|
|
|
|
|
2022-03-15 04:11:29 +01:00
|
|
|
describe 'with invalid account_id param' do
|
2019-05-21 13:28:49 +02:00
|
|
|
before do
|
|
|
|
get :index, params: { account_id: 'foo' }
|
|
|
|
end
|
|
|
|
|
|
|
|
it 'returns http success' do
|
|
|
|
expect(response).to have_http_status(200)
|
|
|
|
end
|
|
|
|
|
2022-03-15 04:11:29 +01:00
|
|
|
it 'returns nothing' do
|
|
|
|
expect(body_as_json.size).to eq 0
|
2019-05-21 13:28:49 +02:00
|
|
|
end
|
|
|
|
end
|
|
|
|
|
2022-03-15 04:11:29 +01:00
|
|
|
describe 'with excluded_types param' do
|
2017-04-10 23:45:29 +02:00
|
|
|
before do
|
2022-03-15 04:11:29 +01:00
|
|
|
get :index, params: { exclude_types: %w(mention) }
|
2017-04-10 23:45:29 +02:00
|
|
|
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
|
|
|
|
|
2022-03-15 04:11:29 +01:00
|
|
|
it 'returns everything but excluded type' do
|
|
|
|
expect(body_as_json.size).to_not eq 0
|
|
|
|
expect(body_as_json.map { |x| x[:type] }.uniq).to_not include 'mention'
|
2017-04-10 23:45:29 +02:00
|
|
|
end
|
2022-03-15 04:11:29 +01:00
|
|
|
end
|
2017-04-10 23:45:29 +02:00
|
|
|
|
2022-03-15 04:11:29 +01:00
|
|
|
describe 'with types param' do
|
|
|
|
before do
|
|
|
|
get :index, params: { types: %w(mention) }
|
2017-04-10 23:45:29 +02:00
|
|
|
end
|
|
|
|
|
2022-03-15 04:11:29 +01:00
|
|
|
it 'returns http success' do
|
|
|
|
expect(response).to have_http_status(200)
|
2019-05-21 13:28:49 +02:00
|
|
|
end
|
|
|
|
|
2022-03-15 04:11:29 +01:00
|
|
|
it 'returns only requested type' do
|
|
|
|
expect(body_as_json.map { |x| x[:type] }.uniq).to eq ['mention']
|
2017-04-10 23:45:29 +02:00
|
|
|
end
|
2016-12-06 18:22:59 +01:00
|
|
|
end
|
|
|
|
end
|
|
|
|
end
|