mirror of
https://0xacab.org/sutty/sutty
synced 2024-11-15 06:31:44 +00:00
26 lines
770 B
Ruby
26 lines
770 B
Ruby
|
# frozen_string_literal: true
|
||
|
|
||
|
require 'test_helper'
|
||
|
|
||
|
module Api
|
||
|
module V1
|
||
|
class CSPReportsControllerTest < ActionDispatch::IntegrationTest
|
||
|
test 'se puede enviar un reporte' do
|
||
|
post v1_csp_reports_url,
|
||
|
params: {
|
||
|
'csp-report': {
|
||
|
'document-uri': 'http://example.com/signup.html',
|
||
|
'referrer': '',
|
||
|
'blocked-uri': 'http://example.com/css/style.css',
|
||
|
'violated-directive': 'style-src cdn.example.com',
|
||
|
'original-policy': "default-src 'none'; style-src cdn.example.com; report-uri /_/csp-reports"
|
||
|
}
|
||
|
}
|
||
|
|
||
|
assert_equal 201, response.status
|
||
|
assert_equal 1, CspReport.all.count
|
||
|
end
|
||
|
end
|
||
|
end
|
||
|
end
|