-
Notifications
You must be signed in to change notification settings - Fork 1
/
this_test.go
83 lines (67 loc) · 1.4 KB
/
this_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
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
package astquery
import (
"testing"
"github.com/robertkrimen/otto/ast"
)
func TestQuery_ContainsThis_no_this(t *testing.T) {
identifier := &ast.Identifier{
Name:"test",
}
statement := &ast.VariableStatement{
List: []ast.Expression{identifier},
}
err := NewQuery().ContainsThis().RunStatement(statement)
if err == nil {
t.Errorf("Test failed, %v", err)
}
}
func TestQuery_ContainsThis(t *testing.T) {
identifier := &ast.Identifier{
Name:"test",
}
assign := &ast.AssignExpression{
Left:identifier,
Right:&ast.ThisExpression{},
}
statement := &ast.VariableStatement{
List: []ast.Expression{assign},
}
err := NewQuery().ContainsThis().RunStatement(statement)
if err != nil {
t.Errorf("Test failed, %v", err)
}
}
func TestQuery_ContainsThis2(t *testing.T) {
identifier := &ast.Identifier{
Name:"test",
}
binary := &ast.BinaryExpression{
Left:&ast.NumberLiteral{
Value:1,
Literal:"1",
},
Right:&ast.BinaryExpression{
Left:&ast.NumberLiteral{
Value:2,
Literal:"2",
},
Right:&ast.DotExpression{
Left:&ast.ThisExpression{},
Identifier:&ast.Identifier{
Name:"test2",
},
},
},
}
assign := &ast.AssignExpression{
Left:identifier,
Right:binary,
}
statement := &ast.VariableStatement{
List: []ast.Expression{assign},
}
err := NewQuery().ContainsThis().RunStatement(statement)
if err != nil {
t.Errorf("Test failed, %v", err)
}
}