mirror of
https://github.com/mastodon/mastodon.git
synced 2025-05-11 20:21:10 +00:00
Convert admin/action_logs
spec controller->system (#34214)
This commit is contained in:
parent
5eba86e2d1
commit
0284e77e5f
|
@ -2,29 +2,33 @@
|
||||||
|
|
||||||
require 'rails_helper'
|
require 'rails_helper'
|
||||||
|
|
||||||
RSpec.describe Admin::ActionLogsController do
|
RSpec.describe 'Admin Action Logs' do
|
||||||
render_views
|
|
||||||
|
|
||||||
# Action logs typically cause issues when their targets are not in the database
|
# Action logs typically cause issues when their targets are not in the database
|
||||||
let!(:account) { Fabricate(:account) }
|
let!(:account) { Fabricate(:account) }
|
||||||
|
|
||||||
before do
|
before do
|
||||||
orphaned_log_types.map do |type|
|
populate_action_logs
|
||||||
Fabricate(:action_log, account: account, action: 'destroy', target_type: type, target_id: 1312)
|
sign_in Fabricate(:admin_user)
|
||||||
end
|
|
||||||
end
|
end
|
||||||
|
|
||||||
describe 'GET #index' do
|
describe 'Viewing action logs' do
|
||||||
it 'returns 200' do
|
it 'shows page with action logs listed' do
|
||||||
sign_in Fabricate(:admin_user)
|
visit admin_action_logs_path
|
||||||
get :index, params: { page: 1 }
|
|
||||||
|
|
||||||
expect(response).to have_http_status(200)
|
expect(page)
|
||||||
|
.to have_title(I18n.t('admin.action_logs.title'))
|
||||||
|
.and have_css('.log-entry')
|
||||||
end
|
end
|
||||||
end
|
end
|
||||||
|
|
||||||
private
|
private
|
||||||
|
|
||||||
|
def populate_action_logs
|
||||||
|
orphaned_log_types.map do |type|
|
||||||
|
Fabricate(:action_log, account: account, action: 'destroy', target_type: type, target_id: 1312)
|
||||||
|
end
|
||||||
|
end
|
||||||
|
|
||||||
def orphaned_log_types
|
def orphaned_log_types
|
||||||
%w(
|
%w(
|
||||||
Account
|
Account
|
Loading…
Reference in New Issue
Block a user