2020-02-04 00:46:14 +08:00
|
|
|
import { getCompiledString } from './utils'
|
|
|
|
|
2020-02-04 04:51:41 +08:00
|
|
|
describe('ssr: text', () => {
|
2020-02-04 00:46:14 +08:00
|
|
|
test('static text', () => {
|
|
|
|
expect(getCompiledString(`foo`)).toMatchInlineSnapshot(`"\`foo\`"`)
|
|
|
|
})
|
|
|
|
|
|
|
|
test('static text escape', () => {
|
|
|
|
expect(getCompiledString(`<foo>`)).toMatchInlineSnapshot(
|
|
|
|
`"\`<foo>\`"`
|
|
|
|
)
|
|
|
|
})
|
|
|
|
|
|
|
|
test('nested elements with static text', () => {
|
|
|
|
expect(
|
|
|
|
getCompiledString(`<div><span>hello</span><span>bye</span></div>`)
|
|
|
|
).toMatchInlineSnapshot(
|
|
|
|
`"\`<div><span>hello</span><span>bye</span></div>\`"`
|
|
|
|
)
|
|
|
|
})
|
|
|
|
|
|
|
|
test('interpolation', () => {
|
|
|
|
expect(getCompiledString(`foo {{ bar }} baz`)).toMatchInlineSnapshot(
|
|
|
|
`"\`foo \${interpolate(_ctx.bar)} baz\`"`
|
|
|
|
)
|
|
|
|
})
|
|
|
|
|
|
|
|
test('nested elements with interpolation', () => {
|
|
|
|
expect(
|
|
|
|
getCompiledString(
|
|
|
|
`<div><span>{{ foo }} bar</span><span>baz {{ qux }}</span></div>`
|
|
|
|
)
|
|
|
|
).toMatchInlineSnapshot(
|
|
|
|
`"\`<div><span>\${interpolate(_ctx.foo)} bar</span><span>baz \${interpolate(_ctx.qux)}</span></div>\`"`
|
|
|
|
)
|
|
|
|
})
|
|
|
|
})
|