4
4
compileVue ,
5
5
compileWithDeps ,
6
6
createInstance ,
7
+ addTaskHook ,
8
+ resetTaskHook ,
7
9
getRoot ,
8
10
getEvents ,
9
11
fireEvent
@@ -19,6 +21,7 @@ function createRenderTestCase (name) {
19
21
const instance = createInstance ( id , code )
20
22
setTimeout ( ( ) => {
21
23
expect ( getRoot ( instance ) ) . toEqual ( target )
24
+ instance . $destroy ( )
22
25
done ( )
23
26
} , 50 )
24
27
} ) . catch ( done . fail )
@@ -40,6 +43,7 @@ function createEventTestCase (name) {
40
43
fireEvent ( instance , event . ref , event . type , { } )
41
44
setTimeout ( ( ) => {
42
45
expect ( getRoot ( instance ) ) . toEqual ( after )
46
+ instance . $destroy ( )
43
47
done ( )
44
48
} , 50 )
45
49
} , 50 )
@@ -79,6 +83,7 @@ describe('Usage', () => {
79
83
setTimeout ( ( ) => {
80
84
const target = readObject ( 'recycle-list/components/stateless.vdom.js' )
81
85
expect ( getRoot ( instance ) ) . toEqual ( target )
86
+ instance . $destroy ( )
82
87
done ( )
83
88
} , 50 )
84
89
} ) . catch ( done . fail )
@@ -94,29 +99,89 @@ describe('Usage', () => {
94
99
setTimeout ( ( ) => {
95
100
const target = readObject ( 'recycle-list/components/stateless-with-props.vdom.js' )
96
101
expect ( getRoot ( instance ) ) . toEqual ( target )
102
+ instance . $destroy ( )
103
+ done ( )
104
+ } , 50 )
105
+ } ) . catch ( done . fail )
106
+ } )
107
+
108
+ it ( 'multi stateless components' , done => {
109
+ compileWithDeps ( 'recycle-list/components/stateless-multi-components.vue' , [ {
110
+ name : 'banner' ,
111
+ path : 'recycle-list/components/banner.vue'
112
+ } , {
113
+ name : 'poster' ,
114
+ path : 'recycle-list/components/poster.vue'
115
+ } , {
116
+ name : 'footer' ,
117
+ path : 'recycle-list/components/footer.vue'
118
+ } ] ) . then ( code => {
119
+ const id = String ( Date . now ( ) * Math . random ( ) )
120
+ const instance = createInstance ( id , code )
121
+ setTimeout ( ( ) => {
122
+ const target = readObject ( 'recycle-list/components/stateless-multi-components.vdom.js' )
123
+ expect ( getRoot ( instance ) ) . toEqual ( target )
124
+ instance . $destroy ( )
97
125
done ( )
98
126
} , 50 )
99
127
} ) . catch ( done . fail )
100
128
} )
101
129
102
130
it ( 'stateful component' , done => {
131
+ const tasks = [ ]
132
+ addTaskHook ( ( _ , task ) => tasks . push ( task ) )
103
133
compileWithDeps ( 'recycle-list/components/stateful.vue' , [ {
104
134
name : 'counter' ,
105
135
path : 'recycle-list/components/counter.vue'
106
136
} ] ) . then ( code => {
107
137
const id = String ( Date . now ( ) * Math . random ( ) )
108
138
const instance = createInstance ( id , code )
139
+ expect ( tasks . length ) . toEqual ( 7 )
140
+ tasks . length = 0
141
+ instance . $triggerHook ( 2 , 'create' , [ 'component-1' ] )
142
+ instance . $triggerHook ( 2 , 'create' , [ 'component-2' ] )
143
+ instance . $triggerHook ( 'component-1' , 'attach' )
144
+ instance . $triggerHook ( 'component-2' , 'attach' )
145
+ expect ( tasks . length ) . toEqual ( 2 )
146
+ expect ( tasks [ 0 ] . method ) . toEqual ( 'updateComponentData' )
147
+ // expect(tasks[0].args).toEqual([{ count: 42 }])
148
+ expect ( tasks [ 1 ] . method ) . toEqual ( 'updateComponentData' )
149
+ // expect(tasks[1].args).toEqual([{ count: 42 }])
109
150
setTimeout ( ( ) => {
110
151
const target = readObject ( 'recycle-list/components/stateful.vdom.js' )
111
152
expect ( getRoot ( instance ) ) . toEqual ( target )
112
153
const event = getEvents ( instance ) [ 0 ]
154
+ tasks . length = 0
113
155
fireEvent ( instance , event . ref , event . type , { } )
114
156
setTimeout ( ( ) => {
115
- expect ( getRoot ( instance ) ) . toEqual ( target )
157
+ // expect(tasks.length).toEqual(1)
158
+ // expect(tasks[0]).toEqual({
159
+ // module: 'dom',
160
+ // method: 'updateComponentData',
161
+ // args: [{ count: 43 }]
162
+ // })
163
+ instance . $destroy ( )
164
+ resetTaskHook ( )
116
165
done ( )
117
166
} )
118
167
} , 50 )
119
168
} ) . catch ( done . fail )
120
169
} )
170
+
171
+ it ( 'stateful component with v-model' , done => {
172
+ compileWithDeps ( 'recycle-list/components/stateful-v-model.vue' , [ {
173
+ name : 'editor' ,
174
+ path : 'recycle-list/components/editor.vue'
175
+ } ] ) . then ( code => {
176
+ const id = String ( Date . now ( ) * Math . random ( ) )
177
+ const instance = createInstance ( id , code )
178
+ setTimeout ( ( ) => {
179
+ const target = readObject ( 'recycle-list/components/stateful-v-model.vdom.js' )
180
+ expect ( getRoot ( instance ) ) . toEqual ( target )
181
+ instance . $destroy ( )
182
+ done ( )
183
+ } , 50 )
184
+ } ) . catch ( done . fail )
185
+ } )
121
186
} )
122
187
} )
0 commit comments