2018-12-14 20:37:01 +01:00
|
|
|
# frozen_string_literal: true
|
|
|
|
|
|
|
|
require 'rails_helper'
|
|
|
|
|
2023-05-04 05:49:53 +02:00
|
|
|
describe Admin::ActionLogsController do
|
2022-11-03 16:06:42 +01:00
|
|
|
render_views
|
|
|
|
|
|
|
|
# Action logs typically cause issues when their targets are not in the database
|
|
|
|
let!(:account) { Fabricate(:account) }
|
|
|
|
|
2023-10-31 09:22:19 +01:00
|
|
|
before do
|
2023-12-04 13:56:28 +01:00
|
|
|
orphaned_log_types.map do |type|
|
|
|
|
Fabricate(:action_log, account: account, action: 'destroy', target_type: type, target_id: 1312)
|
|
|
|
end
|
2022-11-03 16:06:42 +01:00
|
|
|
end
|
|
|
|
|
2018-12-14 20:37:01 +01:00
|
|
|
describe 'GET #index' do
|
|
|
|
it 'returns 200' do
|
2022-07-05 02:41:40 +02:00
|
|
|
sign_in Fabricate(:user, role: UserRole.find_by(name: 'Admin'))
|
2018-12-14 20:37:01 +01:00
|
|
|
get :index, params: { page: 1 }
|
|
|
|
|
|
|
|
expect(response).to have_http_status(200)
|
|
|
|
end
|
|
|
|
end
|
2023-12-04 13:56:28 +01:00
|
|
|
|
|
|
|
private
|
|
|
|
|
|
|
|
def orphaned_log_types
|
|
|
|
%w(
|
|
|
|
Account
|
|
|
|
AccountWarning
|
|
|
|
Announcement
|
|
|
|
Appeal
|
|
|
|
CanonicalEmailBlock
|
|
|
|
CustomEmoji
|
|
|
|
DomainAllow
|
|
|
|
DomainBlock
|
|
|
|
EmailDomainBlock
|
|
|
|
Instance
|
|
|
|
IpBlock
|
|
|
|
Report
|
|
|
|
Status
|
|
|
|
UnavailableDomain
|
|
|
|
User
|
|
|
|
UserRole
|
|
|
|
)
|
|
|
|
end
|
2018-12-14 20:37:01 +01:00
|
|
|
end
|