-
Notifications
You must be signed in to change notification settings - Fork 4
/
statement_test.go
63 lines (57 loc) · 1.56 KB
/
statement_test.go
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
package vpl
import (
"github.com/zbysir/vpl/internal/parser"
"io/ioutil"
"os"
"testing"
)
func TestSimpleNodeVue(t *testing.T) {
const rawPageHtml = `
<div style="color: red">
<div class="c">
Text
</div>
<div :id="id" style="color: red" :style="{'a': 1}">
Infos:
<ul :class="'c' + ulClass" class="b" style="color: red" >
<li v-if="ifStart" about=a>Start <span> span </span></li>
<li v-else about=b>Not Start</li>
<li v-for="item in infos" :id="item.id" :key="item.id">{{item.label}}: {{item.value}}</li>
<li v-show="a" style="top: 1px">VShow</li>
<li>End</li>
</ul>
</div>
</div>
`
// 将会优化成另一个AST:
// Tag(div, [style(attr): map[color:red]], BindProps)
// <div class="c">Text</div>
// Tag(div, [id(attr): id, style(attr): map[color:red], style(attr): {'a': 1}])
// Infos:
// Tag(ul, [class(attr): 'c' + ulClass, class(attr): [b], style(attr): color: red;])
// If(ifStart)
// <li about="a">Start<span>span</span></li>
// Else
// <li about="b">Not Start</li>
// For(item in infos)
// Tag(li, [id(attr): item.id, key: item.id])
// {{item.label}}
// :
// {{item.value}}
// Tag(li, [style(attr): map[top:1px]], v-show)
// VShow
// <li>End</li>
nt, err := parser.ParseHtml(rawPageHtml)
if err != nil {
t.Fatal(err)
}
vn, err := parser.ToVueNode(nt, nil)
if err != nil {
t.Fatal(err)
}
c, _, err := toStatement(vn)
if err != nil {
t.Fatal(err)
}
ioutil.WriteFile("statement.txt", []byte(NicePrintStatement(c, 0)), os.ModePerm)
}