debian-mirror-gitlab/spec/serializers/admin/abuse_report_entity_spec.rb
2023-07-09 08:55:56 +05:30

40 lines
959 B
Ruby

# frozen_string_literal: true
require "spec_helper"
RSpec.describe Admin::AbuseReportEntity, feature_category: :insider_threat do
include Gitlab::Routing
let(:abuse_report) { build_stubbed(:abuse_report) }
let(:entity) do
described_class.new(abuse_report)
end
describe '#as_json' do
subject(:entity_hash) { entity.as_json }
it 'exposes correct attributes' do
expect(entity_hash.keys).to include(
:category,
:created_at,
:updated_at,
:reported_user,
:reporter,
:report_path
)
end
it 'correctly exposes `reported user`' do
expect(entity_hash[:reported_user].keys).to match_array([:name])
end
it 'correctly exposes `reporter`' do
expect(entity_hash[:reporter].keys).to match_array([:name])
end
it 'correctly exposes :report_path' do
expect(entity_hash[:report_path]).to eq admin_abuse_report_path(abuse_report)
end
end
end