2015-10-18 17:37:13 +00:00
|
|
|
package servicetest
|
|
|
|
|
|
|
|
import (
|
|
|
|
"fmt"
|
|
|
|
"sort"
|
|
|
|
"strings"
|
|
|
|
"testing"
|
|
|
|
|
|
|
|
"github.com/derekparker/delve/proc"
|
|
|
|
"github.com/derekparker/delve/service/api"
|
|
|
|
|
|
|
|
protest "github.com/derekparker/delve/proc/test"
|
|
|
|
)
|
|
|
|
|
|
|
|
type varTest struct {
|
2015-10-30 11:39:32 +00:00
|
|
|
name string
|
|
|
|
preserveName bool
|
|
|
|
value string
|
|
|
|
setTo string
|
|
|
|
varType string
|
|
|
|
err error
|
2015-10-18 17:37:13 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
func matchStringOrPrefix(output, target string) bool {
|
|
|
|
if strings.HasSuffix(target, "…") {
|
|
|
|
prefix := target[:len(target)-len("…")]
|
|
|
|
b := strings.HasPrefix(output, prefix)
|
|
|
|
return b
|
|
|
|
} else {
|
|
|
|
return output == target
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
func assertVariable(t *testing.T, variable *proc.Variable, expected varTest) {
|
2015-10-30 11:39:32 +00:00
|
|
|
if expected.preserveName {
|
|
|
|
if variable.Name != expected.name {
|
|
|
|
t.Fatalf("Expected %s got %s\n", expected.name, variable.Name)
|
|
|
|
}
|
2015-10-18 17:37:13 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
cv := api.ConvertVar(variable)
|
|
|
|
|
|
|
|
if cv.Type != expected.varType {
|
|
|
|
t.Fatalf("Expected %s got %s (for variable %s)\n", expected.varType, cv.Type, expected.name)
|
|
|
|
}
|
|
|
|
|
|
|
|
if ss := cv.SinglelineString(); !matchStringOrPrefix(ss, expected.value) {
|
|
|
|
t.Fatalf("Expected %#v got %#v (for variable %s)\n", expected.value, ss, expected.name)
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
func evalVariable(p *proc.Process, symbol string) (*proc.Variable, error) {
|
|
|
|
scope, err := p.CurrentThread.Scope()
|
|
|
|
if err != nil {
|
|
|
|
return nil, err
|
|
|
|
}
|
|
|
|
return scope.EvalVariable(symbol)
|
|
|
|
}
|
|
|
|
|
|
|
|
func (tc *varTest) settable() bool {
|
|
|
|
return tc.setTo != ""
|
|
|
|
}
|
|
|
|
|
|
|
|
func (tc *varTest) afterSet() varTest {
|
|
|
|
r := *tc
|
|
|
|
r.value = r.setTo
|
|
|
|
return r
|
|
|
|
}
|
|
|
|
|
|
|
|
func setVariable(p *proc.Process, symbol, value string) error {
|
|
|
|
scope, err := p.CurrentThread.Scope()
|
|
|
|
if err != nil {
|
|
|
|
return err
|
|
|
|
}
|
|
|
|
return scope.SetVariable(symbol, value)
|
|
|
|
}
|
|
|
|
|
|
|
|
const varTestBreakpointLineNumber = 59
|
|
|
|
|
|
|
|
func withTestProcess(name string, t *testing.T, fn func(p *proc.Process, fixture protest.Fixture)) {
|
|
|
|
fixture := protest.BuildFixture(name)
|
|
|
|
p, err := proc.Launch([]string{fixture.Path})
|
|
|
|
if err != nil {
|
|
|
|
t.Fatal("Launch():", err)
|
|
|
|
}
|
|
|
|
|
|
|
|
defer func() {
|
|
|
|
p.Halt()
|
|
|
|
p.Kill()
|
|
|
|
}()
|
|
|
|
|
|
|
|
fn(p, fixture)
|
|
|
|
}
|
|
|
|
|
|
|
|
func TestVariableEvaluation(t *testing.T) {
|
|
|
|
testcases := []varTest{
|
2015-10-30 11:39:32 +00:00
|
|
|
{"a1", true, "\"foofoofoofoofoofoo\"", "", "struct string", nil},
|
|
|
|
{"a11", true, "[3]main.FooBar [{Baz: 1, Bur: \"a\"},{Baz: 2, Bur: \"b\"},{Baz: 3, Bur: \"c\"}]", "", "[3]main.FooBar", nil},
|
|
|
|
{"a12", true, "[]main.FooBar len: 2, cap: 2, [{Baz: 4, Bur: \"d\"},{Baz: 5, Bur: \"e\"}]", "", "struct []main.FooBar", nil},
|
|
|
|
{"a13", true, "[]*main.FooBar len: 3, cap: 3, [*{Baz: 6, Bur: \"f\"},*{Baz: 7, Bur: \"g\"},*{Baz: 8, Bur: \"h\"}]", "", "struct []*main.FooBar", nil},
|
|
|
|
{"a2", true, "6", "10", "int", nil},
|
|
|
|
{"a3", true, "7.23", "3.1", "float64", nil},
|
|
|
|
{"a4", true, "[2]int [1,2]", "", "[2]int", nil},
|
|
|
|
{"a5", true, "[]int len: 5, cap: 5, [1,2,3,4,5]", "", "struct []int", nil},
|
|
|
|
{"a6", true, "main.FooBar {Baz: 8, Bur: \"word\"}", "", "main.FooBar", nil},
|
|
|
|
{"a7", true, "*main.FooBar {Baz: 5, Bur: \"strum\"}", "", "*main.FooBar", nil},
|
|
|
|
{"a8", true, "main.FooBar2 {Bur: 10, Baz: \"feh\"}", "", "main.FooBar2", nil},
|
|
|
|
{"a9", true, "*main.FooBar nil", "", "*main.FooBar", nil},
|
|
|
|
{"baz", true, "\"bazburzum\"", "", "struct string", nil},
|
|
|
|
{"neg", true, "-1", "-20", "int", nil},
|
|
|
|
{"f32", true, "1.2", "1.1", "float32", nil},
|
|
|
|
{"c64", true, "(1 + 2i)", "(4 + 5i)", "complex64", nil},
|
|
|
|
{"c128", true, "(2 + 3i)", "(6.3 + 7i)", "complex128", nil},
|
|
|
|
{"a6.Baz", true, "8", "20", "int", nil},
|
|
|
|
{"a7.Baz", true, "5", "25", "int", nil},
|
|
|
|
{"a8.Baz", true, "\"feh\"", "", "struct string", nil},
|
|
|
|
{"a9.Baz", true, "nil", "", "int", fmt.Errorf("a9 is nil")},
|
|
|
|
{"a9.NonExistent", true, "nil", "", "int", fmt.Errorf("a9 has no member NonExistent")},
|
|
|
|
{"a8", true, "main.FooBar2 {Bur: 10, Baz: \"feh\"}", "", "main.FooBar2", nil}, // reread variable after member
|
|
|
|
{"i32", true, "[2]int32 [1,2]", "", "[2]int32", nil},
|
|
|
|
{"b1", true, "true", "false", "bool", nil},
|
|
|
|
{"b2", true, "false", "true", "bool", nil},
|
|
|
|
{"i8", true, "1", "2", "int8", nil},
|
|
|
|
{"u16", true, "65535", "0", "uint16", nil},
|
|
|
|
{"u32", true, "4294967295", "1", "uint32", nil},
|
|
|
|
{"u64", true, "18446744073709551615", "2", "uint64", nil},
|
|
|
|
{"u8", true, "255", "3", "uint8", nil},
|
|
|
|
{"up", true, "5", "4", "uintptr", nil},
|
|
|
|
{"f", true, "main.barfoo", "", "func()", nil},
|
|
|
|
{"ba", true, "[]int len: 200, cap: 200, [0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,...+136 more]", "", "struct []int", nil},
|
|
|
|
{"ms", true, "main.Nest {Level: 0, Nest: *main.Nest {Level: 1, Nest: *(*main.Nest)(…", "", "main.Nest", nil},
|
|
|
|
{"ms.Nest.Nest", true, "*main.Nest {Level: 2, Nest: *main.Nest {Level: 3, Nest: *(*main.Nest)(…", "", "*main.Nest", nil},
|
|
|
|
{"ms.Nest.Nest.Nest.Nest.Nest", true, "*main.Nest nil", "", "*main.Nest", nil},
|
|
|
|
{"ms.Nest.Nest.Nest.Nest.Nest.Nest", true, "", "", "*main.Nest", fmt.Errorf("ms.Nest.Nest.Nest.Nest.Nest is nil")},
|
|
|
|
{"main.p1", true, "10", "12", "int", nil},
|
|
|
|
{"p1", true, "10", "13", "int", nil},
|
|
|
|
{"NonExistent", true, "", "", "", fmt.Errorf("could not find symbol value for NonExistent")},
|
2015-10-18 17:37:13 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
withTestProcess("testvariables", t, func(p *proc.Process, fixture protest.Fixture) {
|
|
|
|
err := p.Continue()
|
|
|
|
assertNoError(err, t, "Continue() returned an error")
|
|
|
|
|
|
|
|
for _, tc := range testcases {
|
|
|
|
variable, err := evalVariable(p, tc.name)
|
|
|
|
if tc.err == nil {
|
|
|
|
assertNoError(err, t, "EvalVariable() returned an error")
|
|
|
|
assertVariable(t, variable, tc)
|
|
|
|
} else {
|
|
|
|
if err == nil {
|
|
|
|
t.Fatalf("Expected error %s, got no error: %s\n", tc.err.Error(), api.ConvertVar(variable).SinglelineString())
|
|
|
|
}
|
|
|
|
if tc.err.Error() != err.Error() {
|
|
|
|
t.Fatalf("Unexpected error. Expected %s got %s", tc.err.Error(), err.Error())
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
if tc.settable() {
|
|
|
|
assertNoError(setVariable(p, tc.name, tc.setTo), t, "SetVariable()")
|
|
|
|
variable, err = evalVariable(p, tc.name)
|
|
|
|
assertNoError(err, t, "EvalVariable()")
|
|
|
|
assertVariable(t, variable, tc.afterSet())
|
|
|
|
|
|
|
|
assertNoError(setVariable(p, tc.name, tc.value), t, "SetVariable()")
|
|
|
|
variable, err := evalVariable(p, tc.name)
|
|
|
|
assertNoError(err, t, "EvalVariable()")
|
|
|
|
assertVariable(t, variable, tc)
|
|
|
|
}
|
|
|
|
}
|
|
|
|
})
|
|
|
|
}
|
|
|
|
|
|
|
|
func TestMultilineVariableEvaluation(t *testing.T) {
|
|
|
|
testcases := []varTest{
|
2015-10-30 11:39:32 +00:00
|
|
|
{"a1", true, "\"foofoofoofoofoofoo\"", "", "struct string", nil},
|
|
|
|
{"a11", true, `[3]main.FooBar [
|
2015-10-18 17:37:13 +00:00
|
|
|
{Baz: 1, Bur: "a"},
|
|
|
|
{Baz: 2, Bur: "b"},
|
|
|
|
{Baz: 3, Bur: "c"},
|
|
|
|
]`, "", "[3]main.FooBar", nil},
|
2015-10-30 11:39:32 +00:00
|
|
|
{"a12", true, `[]main.FooBar len: 2, cap: 2, [
|
2015-10-18 17:37:13 +00:00
|
|
|
{Baz: 4, Bur: "d"},
|
|
|
|
{Baz: 5, Bur: "e"},
|
|
|
|
]`, "", "struct []main.FooBar", nil},
|
2015-10-30 11:39:32 +00:00
|
|
|
{"a13", true, `[]*main.FooBar len: 3, cap: 3, [
|
2015-10-18 17:37:13 +00:00
|
|
|
*{Baz: 6, Bur: "f"},
|
|
|
|
*{Baz: 7, Bur: "g"},
|
|
|
|
*{Baz: 8, Bur: "h"},
|
|
|
|
]`, "", "struct []*main.FooBar", nil},
|
2015-10-30 11:39:32 +00:00
|
|
|
{"a2", true, "6", "10", "int", nil},
|
|
|
|
{"a4", true, "[2]int [1,2]", "", "[2]int", nil},
|
|
|
|
{"a5", true, "[]int len: 5, cap: 5, [1,2,3,4,5]", "", "struct []int", nil},
|
|
|
|
{"a6", true, "main.FooBar {Baz: 8, Bur: \"word\"}", "", "main.FooBar", nil},
|
|
|
|
{"a7", true, "*main.FooBar {Baz: 5, Bur: \"strum\"}", "", "*main.FooBar", nil},
|
|
|
|
{"a8", true, "main.FooBar2 {Bur: 10, Baz: \"feh\"}", "", "main.FooBar2", nil},
|
|
|
|
{"a9", true, "*main.FooBar nil", "", "*main.FooBar", nil},
|
|
|
|
{"a8", true, "main.FooBar2 {Bur: 10, Baz: \"feh\"}", "", "main.FooBar2", nil}, // reread variable after member
|
|
|
|
{"i32", true, "[2]int32 [1,2]", "", "[2]int32", nil},
|
|
|
|
{"ba", true, "[]int len: 200, cap: 200, [0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,...+136 more]", "", "struct []int", nil},
|
|
|
|
{"ms", true, `main.Nest {
|
2015-10-18 17:37:13 +00:00
|
|
|
Level: 0,
|
|
|
|
Nest: *main.Nest {
|
|
|
|
Level: 1,
|
|
|
|
Nest: *(*main.Nest)(…`, "", "main.Nest", nil},
|
|
|
|
}
|
|
|
|
|
|
|
|
withTestProcess("testvariables", t, func(p *proc.Process, fixture protest.Fixture) {
|
|
|
|
err := p.Continue()
|
|
|
|
assertNoError(err, t, "Continue() returned an error")
|
|
|
|
|
|
|
|
for _, tc := range testcases {
|
|
|
|
variable, err := evalVariable(p, tc.name)
|
|
|
|
assertNoError(err, t, "EvalVariable() returned an error")
|
|
|
|
if ms := api.ConvertVar(variable).MultilineString(""); !matchStringOrPrefix(ms, tc.value) {
|
|
|
|
t.Fatalf("Expected %s got %s (variable %s)\n", tc.value, ms, variable.Name)
|
|
|
|
}
|
|
|
|
}
|
|
|
|
})
|
|
|
|
}
|
|
|
|
|
|
|
|
type varArray []*proc.Variable
|
|
|
|
|
|
|
|
// Len is part of sort.Interface.
|
|
|
|
func (s varArray) Len() int {
|
|
|
|
return len(s)
|
|
|
|
}
|
|
|
|
|
|
|
|
// Swap is part of sort.Interface.
|
|
|
|
func (s varArray) Swap(i, j int) {
|
|
|
|
s[i], s[j] = s[j], s[i]
|
|
|
|
}
|
|
|
|
|
|
|
|
// Less is part of sort.Interface. It is implemented by calling the "by" closure in the sorter.
|
|
|
|
func (s varArray) Less(i, j int) bool {
|
|
|
|
return s[i].Name < s[j].Name
|
|
|
|
}
|
|
|
|
|
|
|
|
func TestLocalVariables(t *testing.T) {
|
|
|
|
testcases := []struct {
|
|
|
|
fn func(*proc.EvalScope) ([]*proc.Variable, error)
|
|
|
|
output []varTest
|
|
|
|
}{
|
|
|
|
{(*proc.EvalScope).LocalVariables,
|
|
|
|
[]varTest{
|
2015-10-30 11:39:32 +00:00
|
|
|
{"a1", true, "\"foofoofoofoofoofoo\"", "", "struct string", nil},
|
|
|
|
{"a10", true, "\"ofo\"", "", "struct string", nil},
|
|
|
|
{"a11", true, "[3]main.FooBar [{Baz: 1, Bur: \"a\"},{Baz: 2, Bur: \"b\"},{Baz: 3, Bur: \"c\"}]", "", "[3]main.FooBar", nil},
|
|
|
|
{"a12", true, "[]main.FooBar len: 2, cap: 2, [{Baz: 4, Bur: \"d\"},{Baz: 5, Bur: \"e\"}]", "", "struct []main.FooBar", nil},
|
|
|
|
{"a13", true, "[]*main.FooBar len: 3, cap: 3, [*{Baz: 6, Bur: \"f\"},*{Baz: 7, Bur: \"g\"},*{Baz: 8, Bur: \"h\"}]", "", "struct []*main.FooBar", nil},
|
|
|
|
{"a2", true, "6", "", "int", nil},
|
|
|
|
{"a3", true, "7.23", "", "float64", nil},
|
|
|
|
{"a4", true, "[2]int [1,2]", "", "[2]int", nil},
|
|
|
|
{"a5", true, "[]int len: 5, cap: 5, [1,2,3,4,5]", "", "struct []int", nil},
|
|
|
|
{"a6", true, "main.FooBar {Baz: 8, Bur: \"word\"}", "", "main.FooBar", nil},
|
|
|
|
{"a7", true, "*main.FooBar {Baz: 5, Bur: \"strum\"}", "", "*main.FooBar", nil},
|
|
|
|
{"a8", true, "main.FooBar2 {Bur: 10, Baz: \"feh\"}", "", "main.FooBar2", nil},
|
|
|
|
{"a9", true, "*main.FooBar nil", "", "*main.FooBar", nil},
|
|
|
|
{"b1", true, "true", "", "bool", nil},
|
|
|
|
{"b2", true, "false", "", "bool", nil},
|
|
|
|
{"ba", true, "[]int len: 200, cap: 200, [0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,...+136 more]", "", "struct []int", nil},
|
|
|
|
{"c128", true, "(2 + 3i)", "", "complex128", nil},
|
|
|
|
{"c64", true, "(1 + 2i)", "", "complex64", nil},
|
|
|
|
{"f", true, "main.barfoo", "", "func()", nil},
|
|
|
|
{"f32", true, "1.2", "", "float32", nil},
|
|
|
|
{"i32", true, "[2]int32 [1,2]", "", "[2]int32", nil},
|
|
|
|
{"i8", true, "1", "", "int8", nil},
|
|
|
|
{"ms", true, "main.Nest {Level: 0, Nest: *main.Nest {Level: 1, Nest: *(*main.Nest)…", "", "main.Nest", nil},
|
|
|
|
{"neg", true, "-1", "", "int", nil},
|
|
|
|
{"u16", true, "65535", "", "uint16", nil},
|
|
|
|
{"u32", true, "4294967295", "", "uint32", nil},
|
|
|
|
{"u64", true, "18446744073709551615", "", "uint64", nil},
|
|
|
|
{"u8", true, "255", "", "uint8", nil},
|
|
|
|
{"up", true, "5", "", "uintptr", nil}}},
|
2015-10-18 17:37:13 +00:00
|
|
|
{(*proc.EvalScope).FunctionArguments,
|
|
|
|
[]varTest{
|
2015-10-30 11:39:32 +00:00
|
|
|
{"bar", true, "main.FooBar {Baz: 10, Bur: \"lorem\"}", "", "main.FooBar", nil},
|
|
|
|
{"baz", true, "\"bazburzum\"", "", "struct string", nil}}},
|
2015-10-18 17:37:13 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
withTestProcess("testvariables", t, func(p *proc.Process, fixture protest.Fixture) {
|
|
|
|
err := p.Continue()
|
|
|
|
assertNoError(err, t, "Continue() returned an error")
|
|
|
|
|
|
|
|
for _, tc := range testcases {
|
|
|
|
scope, err := p.CurrentThread.Scope()
|
|
|
|
assertNoError(err, t, "AsScope()")
|
|
|
|
vars, err := tc.fn(scope)
|
|
|
|
assertNoError(err, t, "LocalVariables() returned an error")
|
|
|
|
|
|
|
|
sort.Sort(varArray(vars))
|
|
|
|
|
|
|
|
if len(tc.output) != len(vars) {
|
|
|
|
t.Fatalf("Invalid variable count. Expected %d got %d.", len(tc.output), len(vars))
|
|
|
|
}
|
|
|
|
|
|
|
|
for i, variable := range vars {
|
|
|
|
assertVariable(t, variable, tc.output[i])
|
|
|
|
}
|
|
|
|
}
|
|
|
|
})
|
|
|
|
}
|
|
|
|
|
|
|
|
func TestEmbeddedStruct(t *testing.T) {
|
|
|
|
withTestProcess("testvariables4", t, func(p *proc.Process, fixture protest.Fixture) {
|
|
|
|
testcases := []varTest{
|
2015-10-30 11:39:32 +00:00
|
|
|
{"b.val", true, "-314", "", "int", nil},
|
|
|
|
{"b.A.val", true, "-314", "", "int", nil},
|
|
|
|
{"b.a.val", true, "42", "", "int", nil},
|
|
|
|
{"b.ptr.val", true, "1337", "", "int", nil},
|
|
|
|
{"b.C.s", true, "\"hello\"", "", "struct string", nil},
|
|
|
|
{"b.s", true, "\"hello\"", "", "struct string", nil},
|
|
|
|
{"b2", true, "main.B {main.A: struct main.A {val: 42}, *main.C: *struct main.C nil, a: main.A {val: 47}, ptr: *main.A nil}", "", "main.B", nil},
|
2015-10-18 17:37:13 +00:00
|
|
|
}
|
|
|
|
assertNoError(p.Continue(), t, "Continue()")
|
|
|
|
|
|
|
|
for _, tc := range testcases {
|
|
|
|
variable, err := evalVariable(p, tc.name)
|
|
|
|
if tc.err == nil {
|
|
|
|
assertNoError(err, t, "EvalVariable() returned an error")
|
|
|
|
assertVariable(t, variable, tc)
|
|
|
|
} else {
|
|
|
|
if tc.err.Error() != err.Error() {
|
|
|
|
t.Fatalf("Unexpected error. Expected %s got %s", tc.err.Error(), err.Error())
|
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|
|
|
|
})
|
|
|
|
}
|
|
|
|
|
|
|
|
func TestComplexSetting(t *testing.T) {
|
|
|
|
withTestProcess("testvariables", t, func(p *proc.Process, fixture protest.Fixture) {
|
|
|
|
err := p.Continue()
|
|
|
|
assertNoError(err, t, "Continue() returned an error")
|
|
|
|
|
|
|
|
h := func(setExpr, value string) {
|
|
|
|
assertNoError(setVariable(p, "c128", setExpr), t, "SetVariable()")
|
|
|
|
variable, err := evalVariable(p, "c128")
|
|
|
|
assertNoError(err, t, "EvalVariable()")
|
|
|
|
if s := api.ConvertVar(variable).SinglelineString(); s != value {
|
|
|
|
t.Fatalf("Wrong value of c128: \"%s\", expected \"%s\" after setting it to \"%s\"", s, value, setExpr)
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
h("3.2i", "(0 + 3.2i)")
|
|
|
|
h("1.1", "(1.1 + 0i)")
|
|
|
|
h("1 + 3.3i", "(1 + 3.3i)")
|
2015-11-12 17:53:01 +00:00
|
|
|
h("complex(1.2, 3.4)", "(1.2 + 3.4i)")
|
2015-10-18 17:37:13 +00:00
|
|
|
})
|
|
|
|
}
|
2015-10-30 11:39:32 +00:00
|
|
|
|
|
|
|
func TestEvalExpression(t *testing.T) {
|
|
|
|
testcases := []varTest{
|
|
|
|
// slice/array/string subscript
|
|
|
|
{"s1[0]", false, "\"one\"", "", "struct string", nil},
|
|
|
|
{"s1[1]", false, "\"two\"", "", "struct string", nil},
|
|
|
|
{"s1[2]", false, "\"three\"", "", "struct string", nil},
|
|
|
|
{"s1[3]", false, "\"four\"", "", "struct string", nil},
|
|
|
|
{"s1[4]", false, "\"five\"", "", "struct string", nil},
|
|
|
|
{"s1[5]", false, "", "", "struct string", fmt.Errorf("index out of bounds")},
|
|
|
|
{"a1[0]", false, "\"one\"", "", "struct string", nil},
|
|
|
|
{"a1[1]", false, "\"two\"", "", "struct string", nil},
|
|
|
|
{"a1[2]", false, "\"three\"", "", "struct string", nil},
|
|
|
|
{"a1[3]", false, "\"four\"", "", "struct string", nil},
|
|
|
|
{"a1[4]", false, "\"five\"", "", "struct string", nil},
|
|
|
|
{"a1[5]", false, "", "", "struct string", fmt.Errorf("index out of bounds")},
|
|
|
|
{"str1[0]", false, "48", "", "byte", nil},
|
|
|
|
{"str1[1]", false, "49", "", "byte", nil},
|
|
|
|
{"str1[2]", false, "50", "", "byte", nil},
|
|
|
|
{"str1[10]", false, "48", "", "byte", nil},
|
|
|
|
{"str1[11]", false, "", "", "byte", fmt.Errorf("index out of bounds")},
|
|
|
|
|
|
|
|
// slice/array/string reslicing
|
|
|
|
{"a1[2:4]", false, "[]struct string len: 2, cap: 2, [\"three\",\"four\"]", "", "struct []struct string", nil},
|
|
|
|
{"s1[2:4]", false, "[]string len: 2, cap: 2, [\"three\",\"four\"]", "", "struct []string", nil},
|
|
|
|
{"str1[2:4]", false, "\"23\"", "", "struct string", nil},
|
|
|
|
{"str1[0:11]", false, "\"01234567890\"", "", "struct string", nil},
|
|
|
|
{"str1[:3]", false, "\"012\"", "", "struct string", nil},
|
|
|
|
{"str1[3:]", false, "\"34567890\"", "", "struct string", nil},
|
|
|
|
{"str1[0:12]", false, "", "", "struct string", fmt.Errorf("index out of bounds")},
|
|
|
|
{"str1[5:3]", false, "", "", "struct string", fmt.Errorf("index out of bounds")},
|
|
|
|
|
|
|
|
// pointers
|
|
|
|
{"*p2", false, "5", "", "int", nil},
|
|
|
|
{"p2", true, "*5", "", "*int", nil},
|
|
|
|
{"p3", true, "*int nil", "", "*int", nil},
|
|
|
|
{"*p3", false, "", "", "int", fmt.Errorf("nil pointer dereference")},
|
|
|
|
|
2015-11-03 18:11:08 +00:00
|
|
|
// channels
|
|
|
|
{"ch1", true, "chan int 0/2", "", "chan int", nil},
|
2015-11-12 11:29:53 +00:00
|
|
|
{"chnil", true, "chan int nil", "", "chan int", nil},
|
2015-11-03 18:11:08 +00:00
|
|
|
{"ch1+1", false, "", "", "", fmt.Errorf("can not convert 1 constant to chan int")},
|
|
|
|
|
2015-11-05 17:25:52 +00:00
|
|
|
// maps
|
|
|
|
{"m1[\"Malone\"]", false, "struct main.astruct {A: 2, B: 3}", "", "struct main.astruct", nil},
|
|
|
|
{"m2[1].B", false, "11", "", "int", nil},
|
|
|
|
{"m2[c1.sa[2].B-4].A", false, "10", "", "int", nil},
|
|
|
|
{"m2[*p1].B", false, "11", "", "int", nil},
|
|
|
|
{"m3[as1]", false, "42", "", "int", nil},
|
|
|
|
{"mnil[\"Malone\"]", false, "", "", "", fmt.Errorf("key not found")},
|
2015-11-07 10:48:33 +00:00
|
|
|
{"m1[80:]", false, "", "", "", fmt.Errorf("map index out of bounds")},
|
2015-11-05 17:25:52 +00:00
|
|
|
|
2015-11-12 11:30:41 +00:00
|
|
|
// interfaces
|
|
|
|
{"err1", true, "error(*struct main.astruct) *{A: 1, B: 2}", "", "error", nil},
|
|
|
|
{"err2", true, "error(*struct main.bstruct) *{a: main.astruct {A: 1, B: 2}}", "", "error", nil},
|
|
|
|
{"errnil", true, "error nil", "", "error", nil},
|
|
|
|
{"iface1", true, "interface {}(*struct main.astruct) *{A: 1, B: 2}", "", "interface {}", nil},
|
2015-11-26 13:10:58 +00:00
|
|
|
{"iface2", true, "interface {}(*struct string) *\"test\"", "", "interface {}", nil},
|
|
|
|
{"iface3", true, "interface {}(map[string]go/constant.Value) []", "", "interface {}", nil},
|
|
|
|
{"iface4", true, "interface {}(*struct []go/constant.Value) *[*4]", "", "interface {}", nil},
|
2015-11-12 11:30:41 +00:00
|
|
|
{"ifacenil", true, "interface {} nil", "", "interface {}", nil},
|
|
|
|
{"err1 == err2", false, "false", "", "", nil},
|
|
|
|
{"err1 == iface1", false, "", "", "", fmt.Errorf("mismatched types \"error\" and \"interface {}\"")},
|
|
|
|
{"errnil == nil", false, "false", "", "", nil},
|
|
|
|
{"nil == errnil", false, "false", "", "", nil},
|
|
|
|
{"err1.(*main.astruct)", false, "*struct main.astruct {A: 1, B: 2}", "", "*struct main.astruct", nil},
|
|
|
|
{"err1.(*main.bstruct)", false, "", "", "", fmt.Errorf("interface conversion: error is *struct main.astruct, not *struct main.bstruct")},
|
|
|
|
{"errnil.(*main.astruct)", false, "", "", "", fmt.Errorf("interface conversion: error is nil, not *main.astruct")},
|
2015-11-26 13:10:58 +00:00
|
|
|
{"const1", true, "go/constant.Value(*go/constant.int64Val) *3", "", "go/constant.Value", nil},
|
2015-11-12 11:30:41 +00:00
|
|
|
|
2015-10-30 11:39:32 +00:00
|
|
|
// combined expressions
|
|
|
|
{"c1.pb.a.A", true, "1", "", "int", nil},
|
|
|
|
{"c1.sa[1].B", false, "3", "", "int", nil},
|
|
|
|
{"s2[5].B", false, "12", "", "int", nil},
|
|
|
|
{"s2[c1.sa[2].B].A", false, "11", "", "int", nil},
|
|
|
|
{"s2[*p2].B", false, "12", "", "int", nil},
|
|
|
|
|
|
|
|
// constants
|
|
|
|
{"1.1", false, "1.1", "", "", nil},
|
|
|
|
{"10", false, "10", "", "", nil},
|
|
|
|
{"1 + 2i", false, "(1 + 2i)", "", "", nil},
|
|
|
|
{"true", false, "true", "", "", nil},
|
|
|
|
{"\"test\"", false, "\"test\"", "", "", nil},
|
|
|
|
|
|
|
|
// binary operators
|
|
|
|
{"i2 + i3", false, "5", "", "int", nil},
|
|
|
|
{"i2 - i3", false, "-1", "", "int", nil},
|
|
|
|
{"i3 - i2", false, "1", "", "int", nil},
|
|
|
|
{"i2 * i3", false, "6", "", "int", nil},
|
|
|
|
{"i2/i3", false, "0", "", "int", nil},
|
|
|
|
{"f1/2.0", false, "1.5", "", "float64", nil},
|
|
|
|
{"i2 << 2", false, "8", "", "int", nil},
|
|
|
|
|
|
|
|
// unary operators
|
|
|
|
{"-i2", false, "-2", "", "int", nil},
|
|
|
|
{"+i2", false, "2", "", "int", nil},
|
|
|
|
{"^i2", false, "-3", "", "int", nil},
|
|
|
|
|
|
|
|
// comparison operators
|
|
|
|
{"i2 == i3", false, "false", "", "", nil},
|
|
|
|
{"i2 == 2", false, "true", "", "", nil},
|
2015-12-19 12:50:54 +00:00
|
|
|
{"i2 == 2", false, "true", "", "", nil},
|
2015-10-30 11:39:32 +00:00
|
|
|
{"i2 == 3", false, "false", "", "", nil},
|
|
|
|
{"i2 != i3", false, "true", "", "", nil},
|
|
|
|
{"i2 < i3", false, "true", "", "", nil},
|
|
|
|
{"i2 <= i3", false, "true", "", "", nil},
|
|
|
|
{"i2 > i3", false, "false", "", "", nil},
|
|
|
|
{"i2 >= i3", false, "false", "", "", nil},
|
|
|
|
{"i2 >= 2", false, "true", "", "", nil},
|
|
|
|
{"str1 == \"01234567890\"", false, "true", "", "", nil},
|
|
|
|
{"str1 < \"01234567890\"", false, "false", "", "", nil},
|
|
|
|
{"str1 < \"11234567890\"", false, "true", "", "", nil},
|
|
|
|
{"str1 > \"00234567890\"", false, "true", "", "", nil},
|
|
|
|
{"str1 == str1", false, "true", "", "", nil},
|
|
|
|
{"c1.pb.a == *(c1.sa[0])", false, "true", "", "", nil},
|
|
|
|
{"c1.pb.a != *(c1.sa[0])", false, "false", "", "", nil},
|
|
|
|
{"c1.pb.a == *(c1.sa[1])", false, "false", "", "", nil},
|
|
|
|
{"c1.pb.a != *(c1.sa[1])", false, "true", "", "", nil},
|
|
|
|
|
2015-11-12 17:53:01 +00:00
|
|
|
// builtins
|
|
|
|
{"cap(parr)", false, "4", "", "", nil},
|
|
|
|
{"len(parr)", false, "4", "", "", nil},
|
|
|
|
{"cap(p1)", false, "", "", "", fmt.Errorf("invalid argument p1 (type *int) for cap")},
|
|
|
|
{"len(p1)", false, "", "", "", fmt.Errorf("invalid argument p1 (type *int) for len")},
|
|
|
|
{"cap(a1)", false, "5", "", "", nil},
|
|
|
|
{"len(a1)", false, "5", "", "", nil},
|
|
|
|
{"cap(s3)", false, "6", "", "", nil},
|
|
|
|
{"len(s3)", false, "0", "", "", nil},
|
|
|
|
{"cap(nilslice)", false, "0", "", "", nil},
|
|
|
|
{"len(nilslice)", false, "0", "", "", nil},
|
|
|
|
{"cap(ch1)", false, "2", "", "", nil},
|
|
|
|
{"len(ch1)", false, "0", "", "", nil},
|
|
|
|
{"cap(chnil)", false, "0", "", "", nil},
|
|
|
|
{"len(chnil)", false, "0", "", "", nil},
|
|
|
|
{"len(m1)", false, "41", "", "", nil},
|
|
|
|
{"len(mnil)", false, "0", "", "", nil},
|
|
|
|
{"imag(cpx1)", false, "2", "", "", nil},
|
|
|
|
{"real(cpx1)", false, "1", "", "", nil},
|
|
|
|
{"imag(3i)", false, "3", "", "", nil},
|
|
|
|
{"real(4)", false, "4", "", "", nil},
|
|
|
|
|
2015-10-30 11:39:32 +00:00
|
|
|
// nil
|
|
|
|
{"nil", false, "nil", "", "", nil},
|
|
|
|
{"nil+1", false, "", "", "", fmt.Errorf("operator + can not be applied to \"nil\"")},
|
|
|
|
{"fn1", false, "main.afunc", "", "main.functype", nil},
|
|
|
|
{"fn2", false, "nil", "", "main.functype", nil},
|
|
|
|
{"nilslice", false, "[]int len: 0, cap: 0, []", "", "struct []int", nil},
|
|
|
|
{"fn1 == fn2", false, "", "", "", fmt.Errorf("can not compare func variables")},
|
|
|
|
{"fn1 == nil", false, "false", "", "", nil},
|
|
|
|
{"fn1 != nil", false, "true", "", "", nil},
|
|
|
|
{"fn2 == nil", false, "true", "", "", nil},
|
|
|
|
{"fn2 != nil", false, "false", "", "", nil},
|
|
|
|
{"c1.sa == nil", false, "false", "", "", nil},
|
|
|
|
{"c1.sa != nil", false, "true", "", "", nil},
|
|
|
|
{"c1.sa[0] == nil", false, "false", "", "", nil},
|
|
|
|
{"c1.sa[0] != nil", false, "true", "", "", nil},
|
|
|
|
{"nilslice == nil", false, "true", "", "", nil},
|
2015-11-12 11:29:53 +00:00
|
|
|
{"nil == nilslice", false, "true", "", "", nil},
|
2015-10-30 11:39:32 +00:00
|
|
|
{"nilslice != nil", false, "false", "", "", nil},
|
|
|
|
{"nilptr == nil", false, "true", "", "", nil},
|
|
|
|
{"nilptr != nil", false, "false", "", "", nil},
|
|
|
|
{"p1 == nil", false, "false", "", "", nil},
|
|
|
|
{"p1 != nil", false, "true", "", "", nil},
|
2015-11-03 18:11:08 +00:00
|
|
|
{"ch1 == nil", false, "false", "", "", nil},
|
|
|
|
{"chnil == nil", false, "true", "", "", nil},
|
|
|
|
{"ch1 == chnil", false, "", "", "", fmt.Errorf("can not compare chan variables")},
|
2015-11-05 17:25:52 +00:00
|
|
|
{"m1 == nil", false, "false", "", "", nil},
|
|
|
|
{"mnil == m1", false, "", "", "", fmt.Errorf("can not compare map variables")},
|
|
|
|
{"mnil == nil", false, "true", "", "", nil},
|
2015-11-12 11:29:53 +00:00
|
|
|
{"nil == 2", false, "", "", "", fmt.Errorf("can not compare int to nil")},
|
|
|
|
{"2 == nil", false, "", "", "", fmt.Errorf("can not compare int to nil")},
|
2015-10-30 11:39:32 +00:00
|
|
|
|
|
|
|
// errors
|
|
|
|
{"&3", false, "", "", "", fmt.Errorf("can not take address of \"3\"")},
|
2015-11-12 11:29:53 +00:00
|
|
|
{"*3", false, "", "", "", fmt.Errorf("expression \"3\" (int) can not be dereferenced")},
|
2015-10-30 11:39:32 +00:00
|
|
|
{"&(i2 + i3)", false, "", "", "", fmt.Errorf("can not take address of \"(i2 + i3)\"")},
|
|
|
|
{"i2 + p1", false, "", "", "", fmt.Errorf("mismatched types \"int\" and \"*int\"")},
|
|
|
|
{"i2 + f1", false, "", "", "", fmt.Errorf("mismatched types \"int\" and \"float64\"")},
|
|
|
|
{"i2 << f1", false, "", "", "", fmt.Errorf("shift count type float64, must be unsigned integer")},
|
|
|
|
{"i2 << -1", false, "", "", "", fmt.Errorf("shift count type int, must be unsigned integer")},
|
|
|
|
{"i2 << i3", false, "", "", "int", fmt.Errorf("shift count type int, must be unsigned integer")},
|
|
|
|
{"*(i2 + i3)", false, "", "", "", fmt.Errorf("expression \"(i2 + i3)\" (int) can not be dereferenced")},
|
|
|
|
{"i2.member", false, "", "", "", fmt.Errorf("i2 (type int) is not a struct")},
|
2015-11-12 17:53:01 +00:00
|
|
|
{"fmt.Println(\"hello\")", false, "", "", "", fmt.Errorf("function calls are not supported")},
|
2015-11-12 11:29:53 +00:00
|
|
|
{"*nil", false, "", "", "", fmt.Errorf("nil can not be dereferenced")},
|
|
|
|
{"!nil", false, "", "", "", fmt.Errorf("operator ! can not be applied to \"nil\"")},
|
|
|
|
{"&nil", false, "", "", "", fmt.Errorf("can not take address of \"nil\"")},
|
|
|
|
{"nil[0]", false, "", "", "", fmt.Errorf("expression \"nil\" (nil) does not support indexing")},
|
|
|
|
{"nil[2:10]", false, "", "", "", fmt.Errorf("can not slice \"nil\" (type nil)")},
|
|
|
|
{"nil.member", false, "", "", "", fmt.Errorf("type nil is not a struct")},
|
2015-12-18 16:21:54 +00:00
|
|
|
{"(map[string]main.astruct)(0x4000)", false, "", "", "", fmt.Errorf("can not convert \"0x4000\" to *struct hash<string,main.astruct>")},
|
2015-11-07 13:50:26 +00:00
|
|
|
|
|
|
|
// typecasts
|
|
|
|
{"uint(i2)", false, "2", "", "uint", nil},
|
|
|
|
{"int8(i2)", false, "2", "", "int8", nil},
|
|
|
|
{"int(f1)", false, "3", "", "int", nil},
|
|
|
|
{"complex128(f1)", false, "(3 + 0i)", "", "complex128", nil},
|
|
|
|
{"uint8(i4)", false, "32", "", "uint8", nil},
|
|
|
|
{"uint8(i5)", false, "253", "", "uint8", nil},
|
|
|
|
{"int8(i5)", false, "-3", "", "int8", nil},
|
|
|
|
{"int8(i6)", false, "12", "", "int8", nil},
|
2016-01-04 15:20:23 +00:00
|
|
|
|
|
|
|
// misc
|
|
|
|
{"i1", true, "1", "", "int", nil},
|
2015-10-30 11:39:32 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
withTestProcess("testvariables3", t, func(p *proc.Process, fixture protest.Fixture) {
|
|
|
|
assertNoError(p.Continue(), t, "Continue() returned an error")
|
|
|
|
for _, tc := range testcases {
|
|
|
|
variable, err := evalVariable(p, tc.name)
|
|
|
|
if tc.err == nil {
|
|
|
|
assertNoError(err, t, fmt.Sprintf("EvalExpression(%s) returned an error", tc.name))
|
|
|
|
assertVariable(t, variable, tc)
|
|
|
|
} else {
|
|
|
|
if err == nil {
|
2015-11-12 11:29:53 +00:00
|
|
|
t.Fatalf("Expected error %s, got no error (%s)", tc.err.Error(), tc.name)
|
2015-10-30 11:39:32 +00:00
|
|
|
}
|
|
|
|
if tc.err.Error() != err.Error() {
|
|
|
|
t.Fatalf("Unexpected error. Expected %s got %s", tc.err.Error(), err.Error())
|
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|
|
|
|
})
|
|
|
|
}
|
|
|
|
|
|
|
|
func TestEvalAddrAndCast(t *testing.T) {
|
|
|
|
withTestProcess("testvariables3", t, func(p *proc.Process, fixture protest.Fixture) {
|
|
|
|
assertNoError(p.Continue(), t, "Continue() returned an error")
|
|
|
|
c1addr, err := evalVariable(p, "&c1")
|
|
|
|
assertNoError(err, t, "EvalExpression(&c1)")
|
|
|
|
c1addrstr := api.ConvertVar(c1addr).SinglelineString()
|
|
|
|
t.Logf("&c1 → %s", c1addrstr)
|
|
|
|
if !strings.HasPrefix(c1addrstr, "(*main.cstruct)(0x") {
|
|
|
|
t.Fatalf("Invalid value of EvalExpression(&c1) \"%s\"", c1addrstr)
|
|
|
|
}
|
|
|
|
|
|
|
|
aaddr, err := evalVariable(p, "&(c1.pb.a)")
|
|
|
|
assertNoError(err, t, "EvalExpression(&(c1.pb.a))")
|
|
|
|
aaddrstr := api.ConvertVar(aaddr).SinglelineString()
|
|
|
|
t.Logf("&(c1.pb.a) → %s", aaddrstr)
|
|
|
|
if !strings.HasPrefix(aaddrstr, "(*main.astruct)(0x") {
|
|
|
|
t.Fatalf("invalid value of EvalExpression(&(c1.pb.a)) \"%s\"", aaddrstr)
|
|
|
|
}
|
|
|
|
|
|
|
|
a, err := evalVariable(p, "*"+aaddrstr)
|
|
|
|
assertNoError(err, t, fmt.Sprintf("EvalExpression(*%s)", aaddrstr))
|
|
|
|
t.Logf("*%s → %s", aaddrstr, api.ConvertVar(a).SinglelineString())
|
|
|
|
assertVariable(t, a, varTest{aaddrstr, false, "struct main.astruct {A: 1, B: 2}", "", "struct main.astruct", nil})
|
|
|
|
})
|
|
|
|
}
|
2015-11-05 17:25:52 +00:00
|
|
|
|
|
|
|
func TestMapEvaluation(t *testing.T) {
|
|
|
|
withTestProcess("testvariables3", t, func(p *proc.Process, fixture protest.Fixture) {
|
|
|
|
assertNoError(p.Continue(), t, "Continue() returned an error")
|
|
|
|
m1v, err := evalVariable(p, "m1")
|
|
|
|
assertNoError(err, t, "EvalVariable()")
|
|
|
|
m1 := api.ConvertVar(m1v)
|
|
|
|
t.Logf("m1 = %v", m1.MultilineString(""))
|
|
|
|
|
|
|
|
if m1.Type != "map[string]main.astruct" {
|
|
|
|
t.Fatalf("Wrong type: %s", m1.Type)
|
|
|
|
}
|
|
|
|
|
|
|
|
if len(m1.Children)/2 != 41 {
|
|
|
|
t.Fatalf("Wrong number of children: %d", len(m1.Children)/2)
|
|
|
|
}
|
|
|
|
|
|
|
|
found := false
|
|
|
|
for i := range m1.Children {
|
|
|
|
if i%2 == 0 && m1.Children[i].Value == "Malone" {
|
|
|
|
found = true
|
|
|
|
}
|
|
|
|
}
|
|
|
|
if !found {
|
|
|
|
t.Fatalf("Could not find Malone")
|
|
|
|
}
|
|
|
|
|
|
|
|
m1sliced, err := evalVariable(p, "m1[10:]")
|
|
|
|
assertNoError(err, t, "EvalVariable(m1[10:])")
|
|
|
|
if len(m1sliced.Children)/2 != int(m1.Len-10) {
|
|
|
|
t.Fatalf("Wrong number of children (after slicing): %d", len(m1sliced.Children)/2)
|
|
|
|
}
|
|
|
|
})
|
2015-11-05 17:27:50 +00:00
|
|
|
}
|
2015-11-05 17:25:52 +00:00
|
|
|
|
2015-11-05 17:27:50 +00:00
|
|
|
func TestUnsafePointer(t *testing.T) {
|
|
|
|
withTestProcess("testvariables3", t, func(p *proc.Process, fixture protest.Fixture) {
|
|
|
|
assertNoError(p.Continue(), t, "Continue() returned an error")
|
|
|
|
up1v, err := evalVariable(p, "up1")
|
|
|
|
assertNoError(err, t, "EvalVariable(up1)")
|
|
|
|
up1 := api.ConvertVar(up1v)
|
|
|
|
if ss := up1.SinglelineString(); !strings.HasPrefix(ss, "unsafe.Pointer(") {
|
|
|
|
t.Fatalf("wrong value for up1: %s", ss)
|
|
|
|
}
|
|
|
|
})
|
2015-11-05 17:25:52 +00:00
|
|
|
}
|