mirror of
https://github.com/nuxt/nuxt.git
synced 2024-11-05 13:43:59 +00:00
317 lines
9.2 KiB
JavaScript
317 lines
9.2 KiB
JavaScript
import { getPort, loadFixture, Nuxt, rp } from '../utils'
|
|
|
|
let port
|
|
const url = route => 'http://localhost:' + port + route
|
|
|
|
const startCspServer = async (csp, isProduction = true) => {
|
|
const options = await loadFixture('basic', {
|
|
debug: !isProduction,
|
|
render: { csp }
|
|
})
|
|
const nuxt = new Nuxt(options)
|
|
port = await getPort()
|
|
await nuxt.server.listen(port, '0.0.0.0')
|
|
return nuxt
|
|
}
|
|
|
|
const getHeader = debug => debug ? 'content-security-policy-report-only' : 'content-security-policy'
|
|
const cspHeader = getHeader(false)
|
|
const reportOnlyHeader = getHeader(true)
|
|
|
|
const startCspDevServer = csp => startCspServer(csp, false)
|
|
|
|
describe('basic ssr csp', () => {
|
|
let nuxt
|
|
|
|
afterEach(async () => {
|
|
await nuxt.close()
|
|
})
|
|
|
|
describe('production mode', () => {
|
|
test(
|
|
'Not contain Content-Security-Policy header, when csp is false',
|
|
async () => {
|
|
nuxt = await startCspServer(false)
|
|
const { headers } = await rp(url('/stateless'), {
|
|
resolveWithFullResponse: true
|
|
})
|
|
|
|
expect(headers[cspHeader]).toBe(undefined)
|
|
}
|
|
)
|
|
|
|
test(
|
|
'Contain Content-Security-Policy header, when csp is set',
|
|
async () => {
|
|
nuxt = await startCspServer(true)
|
|
const { headers } = await rp(url('/stateless'), {
|
|
resolveWithFullResponse: true
|
|
})
|
|
|
|
expect(headers[cspHeader]).toMatch(/^script-src 'self' 'sha256-.*'$/)
|
|
}
|
|
)
|
|
|
|
test(
|
|
'Contain Content-Security-Policy-Report-Only header, when explicitly asked for',
|
|
async () => {
|
|
nuxt = await startCspDevServer({ reportOnly: true })
|
|
const { headers } = await rp(url('/stateless'), {
|
|
resolveWithFullResponse: true
|
|
})
|
|
|
|
expect(headers[reportOnlyHeader]).toMatch(/^script-src 'self' 'sha256-.*'$/)
|
|
}
|
|
)
|
|
|
|
test(
|
|
'Contain only unique hashes in header when csp is set',
|
|
async () => {
|
|
nuxt = await startCspServer(true)
|
|
const { headers } = await rp(url('/stateless'), {
|
|
resolveWithFullResponse: true
|
|
})
|
|
|
|
const hashes = headers[cspHeader].split(' ').filter(s => s.startsWith('\'sha256-'))
|
|
const uniqueHashes = [...new Set(hashes)]
|
|
|
|
expect(uniqueHashes.length).toBe(hashes.length)
|
|
}
|
|
)
|
|
|
|
test(
|
|
'Contain Content-Security-Policy header, when csp.allowedSources set',
|
|
async () => {
|
|
const cspOption = {
|
|
allowedSources: ['https://example.com', 'https://example.io']
|
|
}
|
|
|
|
nuxt = await startCspServer(cspOption)
|
|
const { headers } = await rp(url('/stateless'), {
|
|
resolveWithFullResponse: true
|
|
})
|
|
|
|
expect(headers[cspHeader]).toMatch(/^script-src 'self' 'sha256-.*'/)
|
|
expect(headers[cspHeader]).toContain('https://example.com')
|
|
expect(headers[cspHeader]).toContain('https://example.io')
|
|
}
|
|
)
|
|
|
|
test(
|
|
'Contain Content-Security-Policy header, when csp.policies set',
|
|
async () => {
|
|
const cspOption = {
|
|
enabled: true,
|
|
policies: {
|
|
'default-src': [`'none'`],
|
|
'script-src': ['https://example.com', 'https://example.io']
|
|
}
|
|
}
|
|
|
|
nuxt = await startCspServer(cspOption)
|
|
const { headers } = await rp(url('/stateless'), {
|
|
resolveWithFullResponse: true
|
|
})
|
|
|
|
expect(headers[cspHeader]).toMatch(/default-src 'none'/)
|
|
expect(headers[cspHeader]).toMatch(/script-src 'sha256-(.*)?' 'self'/)
|
|
expect(headers[cspHeader]).toContain('https://example.com')
|
|
expect(headers[cspHeader]).toContain('https://example.io')
|
|
}
|
|
)
|
|
|
|
test(
|
|
'Contain Content-Security-Policy header, when csp.policies.script-src is not set',
|
|
async () => {
|
|
const cspOption = {
|
|
enabled: true,
|
|
policies: {
|
|
'default-src': [`'none'`]
|
|
}
|
|
}
|
|
|
|
nuxt = await startCspServer(cspOption)
|
|
const { headers } = await rp(url('/stateless'), {
|
|
resolveWithFullResponse: true
|
|
})
|
|
|
|
expect(headers[cspHeader]).toMatch(/default-src 'none'/)
|
|
expect(headers[cspHeader]).toMatch(/script-src 'sha256-.*' 'self'$/)
|
|
}
|
|
)
|
|
|
|
test(
|
|
'Contain only unique hashes in header when csp.policies is set',
|
|
async () => {
|
|
const policies = {
|
|
'default-src': [`'self'`],
|
|
'script-src': [`'self'`],
|
|
'style-src': [`'self'`]
|
|
}
|
|
|
|
nuxt = await startCspServer({
|
|
policies
|
|
})
|
|
|
|
for (let i = 0; i < 5; i++) {
|
|
await rp(url('/stateless'), {
|
|
resolveWithFullResponse: true
|
|
})
|
|
}
|
|
|
|
const { headers } = await rp(url('/stateful'), {
|
|
resolveWithFullResponse: true
|
|
})
|
|
|
|
const hashes = headers[cspHeader].split(' ').filter(s => s.startsWith('\'sha256-'))
|
|
const uniqueHashes = [...new Set(hashes)]
|
|
|
|
expect(uniqueHashes.length).toBe(hashes.length)
|
|
}
|
|
)
|
|
})
|
|
describe('debug mode', () => {
|
|
test(
|
|
'Not contain Content-Security-Policy-Report-Only header, when csp is false',
|
|
async () => {
|
|
nuxt = await startCspDevServer(false)
|
|
const { headers } = await rp(url('/stateless'), {
|
|
resolveWithFullResponse: true
|
|
})
|
|
|
|
expect(headers[reportOnlyHeader]).toBe(undefined)
|
|
}
|
|
)
|
|
|
|
test(
|
|
'Contain Content-Security-Policy header, when explicitly asked for',
|
|
async () => {
|
|
nuxt = await startCspDevServer({ reportOnly: false })
|
|
const { headers } = await rp(url('/stateless'), {
|
|
resolveWithFullResponse: true
|
|
})
|
|
|
|
expect(headers[cspHeader]).toMatch(/^script-src 'self' 'sha256-.*'$/)
|
|
}
|
|
)
|
|
|
|
test(
|
|
'Contain Content-Security-Policy header, when csp is set',
|
|
async () => {
|
|
nuxt = await startCspDevServer(true)
|
|
const { headers } = await rp(url('/stateless'), {
|
|
resolveWithFullResponse: true
|
|
})
|
|
|
|
expect(headers[reportOnlyHeader]).toMatch(/^script-src 'self' 'sha256-.*'$/)
|
|
}
|
|
)
|
|
|
|
test(
|
|
'Contain only unique hashes in header when csp is set',
|
|
async () => {
|
|
nuxt = await startCspDevServer(true)
|
|
const { headers } = await rp(url('/stateless'), {
|
|
resolveWithFullResponse: true
|
|
})
|
|
|
|
const hashes = headers[reportOnlyHeader].split(' ').filter(s => s.startsWith('\'sha256-'))
|
|
const uniqueHashes = [...new Set(hashes)]
|
|
|
|
expect(uniqueHashes.length).toBe(hashes.length)
|
|
}
|
|
)
|
|
|
|
test(
|
|
'Contain Content-Security-Policy-Report-Only header, when csp.allowedSources set',
|
|
async () => {
|
|
const cspOption = {
|
|
allowedSources: ['https://example.com', 'https://example.io']
|
|
}
|
|
|
|
nuxt = await startCspDevServer(cspOption)
|
|
const { headers } = await rp(url('/stateless'), {
|
|
resolveWithFullResponse: true
|
|
})
|
|
|
|
expect(headers[reportOnlyHeader]).toMatch(/^script-src 'self' 'sha256-.*'/)
|
|
expect(headers[reportOnlyHeader]).toContain('https://example.com')
|
|
expect(headers[reportOnlyHeader]).toContain('https://example.io')
|
|
}
|
|
)
|
|
|
|
test(
|
|
'Contain Content-Security-Policy-Report-Only header, when csp.policies set',
|
|
async () => {
|
|
const cspOption = {
|
|
enabled: true,
|
|
policies: {
|
|
'default-src': [`'none'`],
|
|
'script-src': ['https://example.com', 'https://example.io']
|
|
}
|
|
}
|
|
|
|
nuxt = await startCspDevServer(cspOption)
|
|
const { headers } = await rp(url('/stateless'), {
|
|
resolveWithFullResponse: true
|
|
})
|
|
|
|
expect(headers[reportOnlyHeader]).toMatch(/default-src 'none'/)
|
|
expect(headers[reportOnlyHeader]).toMatch(/script-src 'sha256-(.*)?' 'self'/)
|
|
expect(headers[reportOnlyHeader]).toContain('https://example.com')
|
|
expect(headers[reportOnlyHeader]).toContain('https://example.io')
|
|
}
|
|
)
|
|
|
|
test(
|
|
'Contain Content-Security-Policy-Report-Only header, when csp.policies.script-src is not set',
|
|
async () => {
|
|
const cspOption = {
|
|
enabled: true,
|
|
policies: {
|
|
'default-src': [`'none'`]
|
|
}
|
|
}
|
|
|
|
nuxt = await startCspDevServer(cspOption)
|
|
const { headers } = await rp(url('/stateless'), {
|
|
resolveWithFullResponse: true
|
|
})
|
|
|
|
expect(headers[reportOnlyHeader]).toMatch(/default-src 'none'/)
|
|
expect(headers[reportOnlyHeader]).toMatch(/script-src 'sha256-.*' 'self'$/)
|
|
}
|
|
)
|
|
|
|
test(
|
|
'Contain only unique hashes in header when csp.policies is set',
|
|
async () => {
|
|
const policies = {
|
|
'default-src': [`'self'`],
|
|
'script-src': [`'self'`],
|
|
'style-src': [`'self'`]
|
|
}
|
|
|
|
nuxt = await startCspDevServer({
|
|
policies
|
|
})
|
|
|
|
for (let i = 0; i < 5; i++) {
|
|
await rp(url('/stateless'), {
|
|
resolveWithFullResponse: true
|
|
})
|
|
}
|
|
|
|
const { headers } = await rp(url('/stateful'), {
|
|
resolveWithFullResponse: true
|
|
})
|
|
|
|
const hashes = headers[reportOnlyHeader].split(' ').filter(s => s.startsWith('\'sha256-'))
|
|
const uniqueHashes = [...new Set(hashes)]
|
|
|
|
expect(uniqueHashes.length).toBe(hashes.length)
|
|
}
|
|
)
|
|
})
|
|
})
|