wip: update test runtime
This commit is contained in:
@@ -1,36 +1,32 @@
|
||||
import {
|
||||
h,
|
||||
createVNode as h,
|
||||
render,
|
||||
Component,
|
||||
nodeOps,
|
||||
NodeTypes,
|
||||
TestElement,
|
||||
TestText,
|
||||
dumpOps,
|
||||
NodeOpTypes,
|
||||
nextTick,
|
||||
observable,
|
||||
resetOps,
|
||||
serialize,
|
||||
renderInstance,
|
||||
triggerEvent
|
||||
TestText
|
||||
// dumpOps,
|
||||
// NodeOpTypes,
|
||||
// nextTick,
|
||||
// state,
|
||||
// resetOps,
|
||||
// serialize,
|
||||
// triggerEvent
|
||||
} from '../src'
|
||||
|
||||
describe('test renderer', () => {
|
||||
it('should work', async () => {
|
||||
class App extends Component {
|
||||
render() {
|
||||
return h(
|
||||
'div',
|
||||
{
|
||||
id: 'test'
|
||||
},
|
||||
'hello'
|
||||
)
|
||||
}
|
||||
}
|
||||
const root = nodeOps.createElement('div')
|
||||
await render(h(App), root)
|
||||
render(
|
||||
h(
|
||||
'div',
|
||||
{
|
||||
id: 'test'
|
||||
},
|
||||
'hello'
|
||||
),
|
||||
root
|
||||
)
|
||||
|
||||
expect(root.children.length).toBe(1)
|
||||
|
||||
@@ -44,137 +40,137 @@ describe('test renderer', () => {
|
||||
expect(text.text).toBe('hello')
|
||||
})
|
||||
|
||||
it('should record ops', async () => {
|
||||
const state = observable({
|
||||
id: 'test',
|
||||
text: 'hello'
|
||||
})
|
||||
// it('should record ops', async () => {
|
||||
// const store = state({
|
||||
// id: 'test',
|
||||
// text: 'hello'
|
||||
// })
|
||||
|
||||
class App extends Component {
|
||||
render() {
|
||||
return h(
|
||||
'div',
|
||||
{
|
||||
id: state.id
|
||||
},
|
||||
state.text
|
||||
)
|
||||
}
|
||||
}
|
||||
const root = nodeOps.createElement('div')
|
||||
// class App extends Component {
|
||||
// render() {
|
||||
// return h(
|
||||
// 'div',
|
||||
// {
|
||||
// id: store.id
|
||||
// },
|
||||
// store.text
|
||||
// )
|
||||
// }
|
||||
// }
|
||||
// const root = nodeOps.createElement('div')
|
||||
|
||||
resetOps()
|
||||
await render(h(App), root)
|
||||
const ops = dumpOps()
|
||||
// resetOps()
|
||||
// await render(h(App), root)
|
||||
// const ops = dumpOps()
|
||||
|
||||
expect(ops.length).toBe(5)
|
||||
// expect(ops.length).toBe(5)
|
||||
|
||||
expect(ops[0]).toEqual({
|
||||
type: NodeOpTypes.CREATE,
|
||||
nodeType: NodeTypes.ELEMENT,
|
||||
tag: 'div',
|
||||
targetNode: root.children[0]
|
||||
})
|
||||
// expect(ops[0]).toEqual({
|
||||
// type: NodeOpTypes.CREATE,
|
||||
// nodeType: NodeTypes.ELEMENT,
|
||||
// tag: 'div',
|
||||
// targetNode: root.children[0]
|
||||
// })
|
||||
|
||||
expect(ops[1]).toEqual({
|
||||
type: NodeOpTypes.PATCH,
|
||||
targetNode: root.children[0],
|
||||
propKey: 'id',
|
||||
propPrevValue: null,
|
||||
propNextValue: 'test'
|
||||
})
|
||||
// expect(ops[1]).toEqual({
|
||||
// type: NodeOpTypes.PATCH,
|
||||
// targetNode: root.children[0],
|
||||
// propKey: 'id',
|
||||
// propPrevValue: null,
|
||||
// propNextValue: 'test'
|
||||
// })
|
||||
|
||||
expect(ops[2]).toEqual({
|
||||
type: NodeOpTypes.CREATE,
|
||||
nodeType: NodeTypes.TEXT,
|
||||
text: 'hello',
|
||||
targetNode: (root.children[0] as TestElement).children[0]
|
||||
})
|
||||
// expect(ops[2]).toEqual({
|
||||
// type: NodeOpTypes.CREATE,
|
||||
// nodeType: NodeTypes.TEXT,
|
||||
// text: 'hello',
|
||||
// targetNode: (root.children[0] as TestElement).children[0]
|
||||
// })
|
||||
|
||||
expect(ops[3]).toEqual({
|
||||
type: NodeOpTypes.APPEND,
|
||||
targetNode: (root.children[0] as TestElement).children[0],
|
||||
parentNode: root.children[0]
|
||||
})
|
||||
// expect(ops[3]).toEqual({
|
||||
// type: NodeOpTypes.APPEND,
|
||||
// targetNode: (root.children[0] as TestElement).children[0],
|
||||
// parentNode: root.children[0]
|
||||
// })
|
||||
|
||||
expect(ops[4]).toEqual({
|
||||
type: NodeOpTypes.APPEND,
|
||||
targetNode: root.children[0],
|
||||
parentNode: root
|
||||
})
|
||||
// expect(ops[4]).toEqual({
|
||||
// type: NodeOpTypes.APPEND,
|
||||
// targetNode: root.children[0],
|
||||
// parentNode: root
|
||||
// })
|
||||
|
||||
// test update ops
|
||||
state.id = 'foo'
|
||||
state.text = 'bar'
|
||||
await nextTick()
|
||||
// // test update ops
|
||||
// store.id = 'foo'
|
||||
// store.text = 'bar'
|
||||
// await nextTick()
|
||||
|
||||
const updateOps = dumpOps()
|
||||
expect(updateOps.length).toBe(2)
|
||||
// const updateOps = dumpOps()
|
||||
// expect(updateOps.length).toBe(2)
|
||||
|
||||
expect(updateOps[0]).toEqual({
|
||||
type: NodeOpTypes.PATCH,
|
||||
targetNode: root.children[0],
|
||||
propKey: 'id',
|
||||
propPrevValue: 'test',
|
||||
propNextValue: 'foo'
|
||||
})
|
||||
// expect(updateOps[0]).toEqual({
|
||||
// type: NodeOpTypes.PATCH,
|
||||
// targetNode: root.children[0],
|
||||
// propKey: 'id',
|
||||
// propPrevValue: 'test',
|
||||
// propNextValue: 'foo'
|
||||
// })
|
||||
|
||||
expect(updateOps[1]).toEqual({
|
||||
type: NodeOpTypes.SET_TEXT,
|
||||
targetNode: (root.children[0] as TestElement).children[0],
|
||||
text: 'bar'
|
||||
})
|
||||
})
|
||||
// expect(updateOps[1]).toEqual({
|
||||
// type: NodeOpTypes.SET_TEXT,
|
||||
// targetNode: (root.children[0] as TestElement).children[0],
|
||||
// text: 'bar'
|
||||
// })
|
||||
// })
|
||||
|
||||
it('should be able to serialize nodes', async () => {
|
||||
class App extends Component {
|
||||
render() {
|
||||
return h(
|
||||
'div',
|
||||
{
|
||||
id: 'test'
|
||||
},
|
||||
[h('span', 'foo'), 'hello']
|
||||
)
|
||||
}
|
||||
}
|
||||
const root = nodeOps.createElement('div')
|
||||
await render(h(App), root)
|
||||
expect(serialize(root)).toEqual(
|
||||
`<div><div id="test"><span>foo</span>hello</div></div>`
|
||||
)
|
||||
expect(serialize(root, 2)).toEqual(
|
||||
`<div>
|
||||
<div id="test">
|
||||
<span>
|
||||
foo
|
||||
</span>
|
||||
hello
|
||||
</div>
|
||||
</div>`
|
||||
)
|
||||
})
|
||||
// it('should be able to serialize nodes', async () => {
|
||||
// class App extends Component {
|
||||
// render() {
|
||||
// return h(
|
||||
// 'div',
|
||||
// {
|
||||
// id: 'test'
|
||||
// },
|
||||
// [h('span', 'foo'), 'hello']
|
||||
// )
|
||||
// }
|
||||
// }
|
||||
// const root = nodeOps.createElement('div')
|
||||
// await render(h(App), root)
|
||||
// expect(serialize(root)).toEqual(
|
||||
// `<div><div id="test"><span>foo</span>hello</div></div>`
|
||||
// )
|
||||
// expect(serialize(root, 2)).toEqual(
|
||||
// `<div>
|
||||
// <div id="test">
|
||||
// <span>
|
||||
// foo
|
||||
// </span>
|
||||
// hello
|
||||
// </div>
|
||||
// </div>`
|
||||
// )
|
||||
// })
|
||||
|
||||
it('should be able to trigger events', async () => {
|
||||
class App extends Component {
|
||||
count = 0
|
||||
inc() {
|
||||
this.count++
|
||||
}
|
||||
render() {
|
||||
return h(
|
||||
'div',
|
||||
{
|
||||
onClick: this.inc
|
||||
},
|
||||
this.count
|
||||
)
|
||||
}
|
||||
}
|
||||
const app = await renderInstance(App)
|
||||
triggerEvent(app.$el, 'click')
|
||||
expect(app.count).toBe(1)
|
||||
await nextTick()
|
||||
expect(serialize(app.$el)).toBe(`<div>1</div>`)
|
||||
})
|
||||
// it('should be able to trigger events', async () => {
|
||||
// class App extends Component {
|
||||
// count = 0
|
||||
// inc() {
|
||||
// this.count++
|
||||
// }
|
||||
// render() {
|
||||
// return h(
|
||||
// 'div',
|
||||
// {
|
||||
// onClick: this.inc
|
||||
// },
|
||||
// this.count
|
||||
// )
|
||||
// }
|
||||
// }
|
||||
// const app = await renderInstance(App)
|
||||
// triggerEvent(app.$el, 'click')
|
||||
// expect(app.count).toBe(1)
|
||||
// await nextTick()
|
||||
// expect(serialize(app.$el)).toBe(`<div>1</div>`)
|
||||
// })
|
||||
})
|
||||
|
||||
Reference in New Issue
Block a user