mirror of
https://github.com/nuxt/nuxt.git
synced 2024-11-11 16:43:55 +00:00
b11e9c0e51
- [ ] babel-eslint https://github.com/babel/babel-eslint/issues/664 - [x] eslint-config-standard-jsx https://github.com/standard/eslint-config-standard-jsx/issues/32 - [x] eslint-config-standard to be stable release https://github.com/standard/eslint-config-standard/issues/123 - [x] eslint-plugin-html - [x] eslint-plugin-import - [x] eslint-plugin-jest - [x] eslint-plugin-node - [x] eslint-plugin-promise - [x] eslint-plugin-standard https://github.com/standard/eslint-plugin-standard/issues/29 - [x] eslint-plugin-vue https://github.com/vuejs/eslint-plugin-vue/pull/504 - [x] eslint-plugin-react https://github.com/yannickcr/eslint-plugin-react/releases/tag/v7.10.0
317 lines
9.3 KiB
JavaScript
317 lines
9.3 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.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].includes('https://example.com')).toBe(true)
|
|
expect(headers[cspHeader].includes('https://example.io')).toBe(true)
|
|
}
|
|
)
|
|
|
|
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].includes('https://example.com')).toBe(true)
|
|
expect(headers[cspHeader].includes('https://example.io')).toBe(true)
|
|
}
|
|
)
|
|
|
|
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].includes('https://example.com')).toBe(true)
|
|
expect(headers[reportOnlyHeader].includes('https://example.io')).toBe(true)
|
|
}
|
|
)
|
|
|
|
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].includes('https://example.com')).toBe(true)
|
|
expect(headers[reportOnlyHeader].includes('https://example.io')).toBe(true)
|
|
}
|
|
)
|
|
|
|
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)
|
|
}
|
|
)
|
|
})
|
|
})
|