Nuxt/test/ssr.test.js

120 lines
3.4 KiB
JavaScript
Raw Normal View History

2017-07-03 18:19:22 +00:00
import test from 'ava'
import { resolve } from 'path'
import { Nuxt, Builder, Utils } from '..'
import { uniq } from 'lodash'
2017-08-29 17:37:19 +00:00
import rp from 'request-promise-native'
import { interceptLog } from './helpers/console'
2017-07-03 18:19:22 +00:00
const port = 4008
let nuxt = null
// Utils
const range = n => [...Array(n).keys()]
const FOOBAR_REGEX = /<foobar>([\s\S]*)<\/foobar>/
const match = (regex, text) => (regex.exec(text) || [])[1]
2018-01-13 05:22:11 +00:00
const url = route => 'http://localhost:' + port + route
2017-08-29 17:37:19 +00:00
2018-03-17 10:01:57 +00:00
// const isWindows = /^win/.test(process.platform)
2017-10-07 08:51:28 +00:00
2017-07-03 18:19:22 +00:00
// Init nuxt.js and create server listening on localhost:4000
test.serial('Init Nuxt.js', async t => {
const rootDir = resolve(__dirname, 'fixtures/ssr')
const config = require(resolve(rootDir, 'nuxt.config.js'))
config.rootDir = rootDir
const logSpy = await interceptLog(async () => {
nuxt = new Nuxt(config)
await new Builder(nuxt).build()
await nuxt.listen(port, 'localhost')
})
t.true(logSpy.calledWithMatch('DONE'))
t.true(logSpy.calledWithMatch('OPEN'))
2017-07-03 18:19:22 +00:00
})
// == Uniq Test ==
2017-08-29 17:37:19 +00:00
// The idea behind is pages using a shared nextId() which returns an incrementing id
2017-07-03 18:19:22 +00:00
// So all responses should strictly be different and length of unique responses should equal to responses
// We strictly compare <foorbar>{id}</foorbar> section
// Because other response parts such as window.__NUXT may be different resulting false positive passes.
const uniqueTest = async (t, url) => {
let results = []
await Utils.parallel(range(20), async () => {
let { html } = await nuxt.renderRoute(url)
let foobar = match(FOOBAR_REGEX, html)
results.push(parseInt(foobar))
})
let isUnique = uniq(results).length === results.length
if (!isUnique) {
/* eslint-disable no-console */
console.log(url + '\n' + results.join(', ') + '\n')
}
t.true(isUnique)
return results
}
test('unique responses with data()', async t => {
await uniqueTest(t, '/data')
})
test('unique responses with component', async t => {
await uniqueTest(t, '/component')
})
test('unique responses with async components', async t => {
await uniqueTest(t, '/asyncComponent')
})
2017-07-03 18:29:38 +00:00
2017-07-03 18:19:22 +00:00
test('unique responses with asyncData()', async t => {
await uniqueTest(t, '/asyncData')
})
test('unique responses with store initial state', async t => {
await uniqueTest(t, '/store')
})
test('unique responses with nuxtServerInit', async t => {
await uniqueTest(t, '/store?onServerInit=1')
})
test('unique responses with fetch', async t => {
await uniqueTest(t, '/fetch')
})
2017-08-29 17:37:19 +00:00
// == Stress Test ==
// The idea of this test is to ensure there is no memory or data leak during SSR requests
// Or pending promises/sockets and function calls.
// Related issue: https://github.com/nuxt/nuxt.js/issues/1354
2018-03-17 10:01:57 +00:00
const stressTest = async (t, _url, concurrency = 2, steps = 4) => {
2018-01-13 05:22:11 +00:00
let statusCodes = {}
2017-08-29 17:37:19 +00:00
await Utils.sequence(range(steps), async () => {
await Utils.parallel(range(concurrency), async () => {
let response = await rp(url(_url), { resolveWithFullResponse: true })
// Status Code
let code = response.statusCode
if (!statusCodes[code]) {
statusCodes[code] = 0
}
statusCodes[code]++
})
})
t.is(statusCodes[200], concurrency * steps)
}
test('stress test with asyncData', async t => {
await stressTest(t, '/asyncData')
})
2017-07-03 18:19:22 +00:00
// Close server and ask nuxt to stop listening to file changes
test.after.always('Closing server and nuxt.js', async t => {
await nuxt.close()
2017-07-03 18:19:22 +00:00
})