import Vue from '../../dist/vue.runtime.common.js'
import { createRenderer } from '../../packages/vue-server-renderer'
const { renderToStream } = createRenderer()
describe('SSR: renderToStream', () => {
it('should render to a stream', done => {
const stream = renderToStream(new Vue({
template: `
`,
data: {
test: 'hi',
isRed: true,
testClass: 'a'
},
components: {
bComp (resolve) {
return resolve({
render (h) {
return h('test-async-2')
},
components: {
testAsync2 (resolve) {
return resolve({
created () { this.$parent.$parent.testClass = 'b' },
render (h) {
return h('div', { class: [this.$parent.$parent.testClass] }, 'test')
}
})
}
}
})
},
cComp: {
render (h) {
return h('div', { class: [this.$parent.testClass] }, 'test')
}
}
}
}))
let res = ''
stream.on('data', chunk => {
res += chunk
})
stream.on('end', () => {
expect(res).toContain(
'' +
'
yoyo
' +
'
' +
'
hi ' +
'
' +
'
test
' +
'
test
' +
'
'
)
done()
})
})
it('should catch error', done => {
Vue.config.silent = true
const stream = renderToStream(new Vue({
render () {
throw new Error('oops')
}
}))
stream.on('error', err => {
expect(err.toString()).toMatch(/oops/)
Vue.config.silent = false
done()
})
stream.on('data', _ => _)
})
it('should not mingle two components', done => {
const padding = (new Array(20000)).join('x')
const component1 = new Vue({
template: ``,
_scopeId: '_component1'
})
const component2 = new Vue({
template: ``,
_scopeId: '_component2'
})
var stream1 = renderToStream(component1)
var stream2 = renderToStream(component2)
var res = ''
stream1.on('data', (text) => {
res += text.toString('utf-8').replace(/x/g, '')
})
stream1.on('end', () => {
expect(res).not.toContain('_component2')
done()
})
stream1.read(1)
stream2.read(1)
})
it('should accept template option', done => {
const renderer = createRenderer({
template: ``
})
const context = {
head: '',
styles: '',
state: { a: 1 }
}
const stream = renderer.renderToStream(new Vue({
template: 'hi
'
}), context)
let res = ''
stream.on('data', chunk => {
res += chunk
})
stream.on('end', () => {
expect(res).toContain(
`${context.head}${context.styles}` +
`hi
` +
`` +
``
)
done()
})
})
})