integration1_test.go 31.1 KB
Newer Older
1
package service_test
D
Dan Mace 已提交
2 3

import (
A
aarzilli 已提交
4
	"fmt"
5
	"math/rand"
D
Dan Mace 已提交
6
	"net"
7
	"path/filepath"
8
	"runtime"
A
aarzilli 已提交
9
	"strconv"
L
Luke Hoban 已提交
10
	"strings"
D
Dan Mace 已提交
11
	"testing"
12
	"time"
D
Dan Mace 已提交
13

14
	protest "github.com/go-delve/delve/pkg/proc/test"
D
Derek Parker 已提交
15

16 17 18 19 20
	"github.com/go-delve/delve/pkg/goversion"
	"github.com/go-delve/delve/service"
	"github.com/go-delve/delve/service/api"
	"github.com/go-delve/delve/service/rpc1"
	"github.com/go-delve/delve/service/rpccommon"
D
Dan Mace 已提交
21 22
)

23
func withTestClient1(name string, t *testing.T, fn func(c *rpc1.RPCClient)) {
24 25 26 27 28 29
	withTestClient1Extended(name, t, func(c *rpc1.RPCClient, fixture protest.Fixture) {
		fn(c)
	})
}

func withTestClient1Extended(name string, t *testing.T, fn func(c *rpc1.RPCClient, fixture protest.Fixture)) {
30 31 32
	if testBackend == "rr" {
		protest.MustHaveRecordingAllowed(t)
	}
33
	listener, err := net.Listen("tcp", "127.0.0.1:0")
D
Dan Mace 已提交
34 35 36
	if err != nil {
		t.Fatalf("couldn't start listener: %s\n", err)
	}
D
Derek Parker 已提交
37
	defer listener.Close()
38 39 40 41 42
	var buildFlags protest.BuildFlags
	if buildMode == "pie" {
		buildFlags = protest.BuildModePIE
	}
	fixture := protest.BuildFixture(name, buildFlags)
A
aarzilli 已提交
43
	server := rpccommon.NewServer(&service.Config{
44
		Listener:    listener,
45
		ProcessArgs: []string{fixture.Path},
46
		Backend:     testBackend,
D
Derek Parker 已提交
47
	})
48 49 50
	if err := server.Run(); err != nil {
		t.Fatal(err)
	}
51
	client := rpc1.NewClient(listener.Addr().String())
52 53 54 55
	defer func() {
		client.Detach(true)
	}()

56
	fn(client, fixture)
D
Dan Mace 已提交
57 58
}

59
func Test1RunWithInvalidPath(t *testing.T) {
60 61 62 63 64 65
	if testBackend == "rr" {
		// This test won't work because rr returns an error, after recording, when
		// the recording failed but also when the recording succeeded but the
		// inferior returned an error. Therefore we have to ignore errors from rr.
		return
	}
66
	listener, err := net.Listen("tcp", "127.0.0.1:0")
67 68 69 70
	if err != nil {
		t.Fatalf("couldn't start listener: %s\n", err)
	}
	defer listener.Close()
A
aarzilli 已提交
71
	server := rpccommon.NewServer(&service.Config{
72 73
		Listener:    listener,
		ProcessArgs: []string{"invalid_path"},
74
		Backend:     testBackend,
D
Derek Parker 已提交
75
	})
76 77 78 79 80
	if err := server.Run(); err == nil {
		t.Fatal("Expected Run to return error for invalid program path")
	}
}

81
func Test1Restart_afterExit(t *testing.T) {
82
	withTestClient1("continuetestprog", t, func(c *rpc1.RPCClient) {
D
Derek Parker 已提交
83 84 85 86 87 88 89 90 91 92 93 94 95
		origPid := c.ProcessPid()
		state := <-c.Continue()
		if !state.Exited {
			t.Fatal("expected initial process to have exited")
		}
		if err := c.Restart(); err != nil {
			t.Fatal(err)
		}
		if c.ProcessPid() == origPid {
			t.Fatal("did not spawn new process, has same PID")
		}
		state = <-c.Continue()
		if !state.Exited {
96
			t.Fatalf("expected restarted process to have exited %v", state)
D
Derek Parker 已提交
97 98 99 100
		}
	})
}

101
func Test1Restart_breakpointPreservation(t *testing.T) {
102
	withTestClient1("continuetestprog", t, func(c *rpc1.RPCClient) {
103 104 105
		_, err := c.CreateBreakpoint(&api.Breakpoint{FunctionName: "main.main", Line: 1, Name: "firstbreakpoint", Tracepoint: true})
		assertNoError(err, t, "CreateBreakpoint()")
		stateCh := c.Continue()
A
aarzilli 已提交
106 107

		state := <-stateCh
108 109 110
		if state.CurrentThread.Breakpoint.Name != "firstbreakpoint" || !state.CurrentThread.Breakpoint.Tracepoint {
			t.Fatalf("Wrong breakpoint: %#v\n", state.CurrentThread.Breakpoint)
		}
A
aarzilli 已提交
111
		state = <-stateCh
112 113 114
		if !state.Exited {
			t.Fatal("Did not exit after first tracepoint")
		}
A
aarzilli 已提交
115

116 117 118
		t.Log("Restart")
		c.Restart()
		stateCh = c.Continue()
A
aarzilli 已提交
119
		state = <-stateCh
120 121 122
		if state.CurrentThread.Breakpoint.Name != "firstbreakpoint" || !state.CurrentThread.Breakpoint.Tracepoint {
			t.Fatalf("Wrong breakpoint (after restart): %#v\n", state.CurrentThread.Breakpoint)
		}
A
aarzilli 已提交
123
		state = <-stateCh
124 125 126 127 128 129
		if !state.Exited {
			t.Fatal("Did not exit after first tracepoint (after restart)")
		}
	})
}

130
func Test1Restart_duringStop(t *testing.T) {
131
	withTestClient1("continuetestprog", t, func(c *rpc1.RPCClient) {
D
Derek Parker 已提交
132
		origPid := c.ProcessPid()
133
		_, err := c.CreateBreakpoint(&api.Breakpoint{FunctionName: "main.main", Line: 1})
D
Derek Parker 已提交
134 135 136 137
		if err != nil {
			t.Fatal(err)
		}
		state := <-c.Continue()
138
		if state.CurrentThread.Breakpoint == nil {
D
Derek Parker 已提交
139 140 141 142 143 144 145 146 147 148 149 150
			t.Fatal("did not hit breakpoint")
		}
		if err := c.Restart(); err != nil {
			t.Fatal(err)
		}
		if c.ProcessPid() == origPid {
			t.Fatal("did not spawn new process, has same PID")
		}
		bps, err := c.ListBreakpoints()
		if err != nil {
			t.Fatal(err)
		}
151 152
		if len(bps) == 0 {
			t.Fatal("breakpoints not preserved")
D
Derek Parker 已提交
153 154 155 156
		}
	})
}

157
func Test1Restart_attachPid(t *testing.T) {
D
Derek Parker 已提交
158 159
	// Assert it does not work and returns error.
	// We cannot restart a process we did not spawn.
A
aarzilli 已提交
160
	server := rpccommon.NewServer(&service.Config{
D
Derek Parker 已提交
161 162
		Listener:  nil,
		AttachPid: 999,
163
		Backend:   testBackend,
D
Derek Parker 已提交
164
	})
165
	if err := server.Restart(); err == nil {
D
Derek Parker 已提交
166 167 168 169
		t.Fatal("expected error on restart after attaching to pid but got none")
	}
}

170
func Test1ClientServer_exit(t *testing.T) {
171
	withTestClient1("continuetestprog", t, func(c *rpc1.RPCClient) {
D
Dan Mace 已提交
172 173 174 175 176 177 178
		state, err := c.GetState()
		if err != nil {
			t.Fatalf("Unexpected error: %v", err)
		}
		if e, a := false, state.Exited; e != a {
			t.Fatalf("Expected exited %v, got %v", e, a)
		}
A
aarzilli 已提交
179
		state = <-c.Continue()
180 181
		if state.Err == nil {
			t.Fatalf("Error expected after continue")
D
Derek Parker 已提交
182
		}
A
aarzilli 已提交
183 184
		if !state.Exited {
			t.Fatalf("Expected exit after continue: %v", state)
D
Derek Parker 已提交
185
		}
186
		_, err = c.GetState()
187 188
		if err == nil {
			t.Fatal("Expected error on querying state from exited process")
D
Dan Mace 已提交
189 190 191 192
		}
	})
}

193
func Test1ClientServer_step(t *testing.T) {
H
hengwu0 已提交
194 195 196
	if runtime.GOARCH == "arm64" {
		t.Skip("test is not valid on ARM64")
	}
197
	withTestClient1("testprog", t, func(c *rpc1.RPCClient) {
198
		_, err := c.CreateBreakpoint(&api.Breakpoint{FunctionName: "main.helloworld", Line: -1})
D
Dan Mace 已提交
199 200 201 202
		if err != nil {
			t.Fatalf("Unexpected error: %v", err)
		}

D
Derek Parker 已提交
203
		stateBefore := <-c.Continue()
A
aarzilli 已提交
204 205
		if stateBefore.Err != nil {
			t.Fatalf("Unexpected error: %v", stateBefore.Err)
D
Dan Mace 已提交
206 207 208 209 210 211 212 213
		}

		stateAfter, err := c.Step()
		if err != nil {
			t.Fatalf("Unexpected error: %v", err)
		}

		if before, after := stateBefore.CurrentThread.PC, stateAfter.CurrentThread.PC; before >= after {
C
chainhelen 已提交
214
			t.Fatalf("Expected %#v to be greater than %#v", after, before)
D
Dan Mace 已提交
215 216 217 218 219
		}
	})
}

func testnext(testcases []nextTest, initialLocation string, t *testing.T) {
220
	withTestClient1("testnextprog", t, func(c *rpc1.RPCClient) {
221
		bp, err := c.CreateBreakpoint(&api.Breakpoint{FunctionName: initialLocation, Line: -1})
D
Dan Mace 已提交
222 223 224 225
		if err != nil {
			t.Fatalf("Unexpected error: %v", err)
		}

A
aarzilli 已提交
226 227 228
		state := <-c.Continue()
		if state.Err != nil {
			t.Fatalf("Unexpected error: %v", state.Err)
D
Dan Mace 已提交
229 230
		}

D
Derek Parker 已提交
231
		_, err = c.ClearBreakpoint(bp.ID)
D
Dan Mace 已提交
232 233 234 235 236 237
		if err != nil {
			t.Fatalf("Unexpected error: %v", err)
		}

		for _, tc := range testcases {
			if state.CurrentThread.Line != tc.begin {
D
Dan Mace 已提交
238
				t.Fatalf("Program not stopped at correct spot expected %d was %d", tc.begin, state.CurrentThread.Line)
D
Dan Mace 已提交
239 240 241 242 243 244 245 246 247
			}

			t.Logf("Next for scenario %#v", tc)
			state, err = c.Next()
			if err != nil {
				t.Fatalf("Unexpected error: %v", err)
			}

			if state.CurrentThread.Line != tc.end {
D
Dan Mace 已提交
248
				t.Fatalf("Program did not continue to correct next location expected %d was %d", tc.end, state.CurrentThread.Line)
D
Dan Mace 已提交
249 250 251 252 253
			}
		}
	})
}

254
func Test1NextGeneral(t *testing.T) {
255 256
	var testcases []nextTest

257
	ver, _ := goversion.Parse(runtime.Version())
258

259
	if ver.Major < 0 || ver.AfterOrEqual(goversion.GoVersion{1, 7, -1, 0, 0, ""}) {
260 261 262 263 264 265 266 267 268 269 270 271 272 273 274 275 276 277 278 279 280 281 282 283 284 285 286 287 288 289 290 291 292 293 294 295
		testcases = []nextTest{
			{17, 19},
			{19, 20},
			{20, 23},
			{23, 24},
			{24, 26},
			{26, 31},
			{31, 23},
			{23, 24},
			{24, 26},
			{26, 31},
			{31, 23},
			{23, 24},
			{24, 26},
			{26, 27},
			{27, 28},
			{28, 34},
		}
	} else {
		testcases = []nextTest{
			{17, 19},
			{19, 20},
			{20, 23},
			{23, 24},
			{24, 26},
			{26, 31},
			{31, 23},
			{23, 24},
			{24, 26},
			{26, 31},
			{31, 23},
			{23, 24},
			{24, 26},
			{26, 27},
			{27, 34},
		}
D
Dan Mace 已提交
296
	}
297

D
Dan Mace 已提交
298 299 300
	testnext(testcases, "main.testnext", t)
}

301
func Test1NextFunctionReturn(t *testing.T) {
D
Dan Mace 已提交
302
	testcases := []nextTest{
303
		{13, 14},
D
Derek Parker 已提交
304 305
		{14, 15},
		{15, 35},
D
Dan Mace 已提交
306 307 308 309
	}
	testnext(testcases, "main.helloworld", t)
}

310
func Test1ClientServer_breakpointInMainThread(t *testing.T) {
311
	withTestClient1("testprog", t, func(c *rpc1.RPCClient) {
312
		bp, err := c.CreateBreakpoint(&api.Breakpoint{FunctionName: "main.helloworld", Line: 1})
D
Dan Mace 已提交
313 314 315 316
		if err != nil {
			t.Fatalf("Unexpected error: %v", err)
		}

A
aarzilli 已提交
317
		state := <-c.Continue()
D
Dan Mace 已提交
318 319 320 321 322 323 324 325 326 327 328 329 330
		if err != nil {
			t.Fatalf("Unexpected error: %v, state: %#v", err, state)
		}

		pc := state.CurrentThread.PC

		if pc-1 != bp.Addr && pc != bp.Addr {
			f, l := state.CurrentThread.File, state.CurrentThread.Line
			t.Fatalf("Break not respected:\nPC:%#v %s:%d\nFN:%#v \n", pc, f, l, bp.Addr)
		}
	})
}

331
func Test1ClientServer_breakpointInSeparateGoroutine(t *testing.T) {
332
	withTestClient1("testthreads", t, func(c *rpc1.RPCClient) {
333
		_, err := c.CreateBreakpoint(&api.Breakpoint{FunctionName: "main.anotherthread", Line: 1})
D
Dan Mace 已提交
334 335 336 337
		if err != nil {
			t.Fatalf("Unexpected error: %v", err)
		}

A
aarzilli 已提交
338 339 340
		state := <-c.Continue()
		if state.Err != nil {
			t.Fatalf("Unexpected error: %v, state: %#v", state.Err, state)
D
Dan Mace 已提交
341 342 343
		}

		f, l := state.CurrentThread.File, state.CurrentThread.Line
344
		if f != "testthreads.go" && l != 9 {
D
Dan Mace 已提交
345 346 347 348 349
			t.Fatal("Program did not hit breakpoint")
		}
	})
}

350
func Test1ClientServer_breakAtNonexistentPoint(t *testing.T) {
351
	withTestClient1("testprog", t, func(c *rpc1.RPCClient) {
352
		_, err := c.CreateBreakpoint(&api.Breakpoint{FunctionName: "nowhere", Line: 1})
D
Dan Mace 已提交
353 354 355 356 357 358
		if err == nil {
			t.Fatal("Should not be able to break at non existent function")
		}
	})
}

359
func Test1ClientServer_clearBreakpoint(t *testing.T) {
360
	withTestClient1("testprog", t, func(c *rpc1.RPCClient) {
361
		bp, err := c.CreateBreakpoint(&api.Breakpoint{FunctionName: "main.sleepytime", Line: 1})
D
Dan Mace 已提交
362 363 364 365
		if err != nil {
			t.Fatalf("Unexpected error: %v", err)
		}

366
		if e, a := 1, countBreakpoints(t, c); e != a {
D
Dan Mace 已提交
367 368 369
			t.Fatalf("Expected breakpoint count %d, got %d", e, a)
		}

D
Derek Parker 已提交
370
		deleted, err := c.ClearBreakpoint(bp.ID)
D
Dan Mace 已提交
371 372 373 374 375 376 377 378
		if err != nil {
			t.Fatalf("Unexpected error: %v", err)
		}

		if deleted.ID != bp.ID {
			t.Fatalf("Expected deleted breakpoint ID %v, got %v", bp.ID, deleted.ID)
		}

379
		if e, a := 0, countBreakpoints(t, c); e != a {
D
Dan Mace 已提交
380 381 382 383 384
			t.Fatalf("Expected breakpoint count %d, got %d", e, a)
		}
	})
}

385
func Test1ClientServer_switchThread(t *testing.T) {
386
	withTestClient1("testnextprog", t, func(c *rpc1.RPCClient) {
D
Dan Mace 已提交
387 388 389 390 391 392
		// With invalid thread id
		_, err := c.SwitchThread(-1)
		if err == nil {
			t.Fatal("Expected error for invalid thread id")
		}

393
		_, err = c.CreateBreakpoint(&api.Breakpoint{FunctionName: "main.main", Line: 1})
D
Dan Mace 已提交
394 395 396
		if err != nil {
			t.Fatalf("Unexpected error: %v", err)
		}
A
aarzilli 已提交
397 398 399
		state := <-c.Continue()
		if state.Err != nil {
			t.Fatalf("Unexpected error: %v, state: %#v", state.Err, state)
D
Dan Mace 已提交
400 401 402 403 404 405 406 407 408 409 410 411 412 413 414 415 416 417 418 419 420 421 422 423 424 425 426
		}

		var nt int
		ct := state.CurrentThread.ID
		threads, err := c.ListThreads()
		if err != nil {
			t.Fatalf("Unexpected error: %v", err)
		}
		for _, th := range threads {
			if th.ID != ct {
				nt = th.ID
				break
			}
		}
		if nt == 0 {
			t.Fatal("could not find thread to switch to")
		}
		// With valid thread id
		state, err = c.SwitchThread(nt)
		if err != nil {
			t.Fatal(err)
		}
		if state.CurrentThread.ID != nt {
			t.Fatal("Did not switch threads")
		}
	})
}
427

428
func Test1ClientServer_infoLocals(t *testing.T) {
429
	withTestClient1("testnextprog", t, func(c *rpc1.RPCClient) {
A
aarzilli 已提交
430 431
		fp := testProgPath(t, "testnextprog")
		_, err := c.CreateBreakpoint(&api.Breakpoint{File: fp, Line: 23})
432 433 434
		if err != nil {
			t.Fatalf("Unexpected error: %v", err)
		}
A
aarzilli 已提交
435 436 437
		state := <-c.Continue()
		if state.Err != nil {
			t.Fatalf("Unexpected error: %v, state: %#v", state.Err, state)
438
		}
439
		locals, err := c.ListLocalVariables(api.EvalScope{-1, 0, 0})
440 441 442 443 444 445 446 447 448
		if err != nil {
			t.Fatalf("Unexpected error: %v", err)
		}
		if len(locals) != 3 {
			t.Fatalf("Expected 3 locals, got %d %#v", len(locals), locals)
		}
	})
}

449
func Test1ClientServer_infoArgs(t *testing.T) {
450
	withTestClient1("testnextprog", t, func(c *rpc1.RPCClient) {
A
aarzilli 已提交
451 452
		fp := testProgPath(t, "testnextprog")
		_, err := c.CreateBreakpoint(&api.Breakpoint{File: fp, Line: 47})
453 454 455
		if err != nil {
			t.Fatalf("Unexpected error: %v", err)
		}
A
aarzilli 已提交
456 457 458
		state := <-c.Continue()
		if state.Err != nil {
			t.Fatalf("Unexpected error: %v, state: %#v", state.Err, state)
459
		}
460 461 462 463 464 465 466
		regs, err := c.ListRegisters()
		if err != nil {
			t.Fatalf("Unexpected error: %v", err)
		}
		if regs == "" {
			t.Fatal("Expected string showing registers values, got empty string")
		}
467
		locals, err := c.ListFunctionArgs(api.EvalScope{-1, 0, 0})
468 469 470 471 472 473 474 475
		if err != nil {
			t.Fatalf("Unexpected error: %v", err)
		}
		if len(locals) != 2 {
			t.Fatalf("Expected 2 function args, got %d %#v", len(locals), locals)
		}
	})
}
A
aarzilli 已提交
476

477
func Test1ClientServer_traceContinue(t *testing.T) {
478
	withTestClient1("integrationprog", t, func(c *rpc1.RPCClient) {
A
aarzilli 已提交
479
		fp := testProgPath(t, "integrationprog")
D
Derek Parker 已提交
480
		_, err := c.CreateBreakpoint(&api.Breakpoint{File: fp, Line: 15, Tracepoint: true, Goroutine: true, Stacktrace: 5, Variables: []string{"i"}})
A
aarzilli 已提交
481 482 483 484
		if err != nil {
			t.Fatalf("Unexpected error: %v\n", err)
		}
		count := 0
D
Derek Parker 已提交
485 486
		contChan := c.Continue()
		for state := range contChan {
487
			if state.CurrentThread != nil && state.CurrentThread.Breakpoint != nil {
A
aarzilli 已提交
488 489 490 491
				count++

				t.Logf("%v", state)

492
				bpi := state.CurrentThread.BreakpointInfo
A
aarzilli 已提交
493 494 495 496 497 498 499 500 501 502 503 504 505 506 507 508 509

				if bpi.Goroutine == nil {
					t.Fatalf("No goroutine information")
				}

				if len(bpi.Stacktrace) <= 0 {
					t.Fatalf("No stacktrace\n")
				}

				if len(bpi.Variables) != 1 {
					t.Fatalf("Wrong number of variables returned: %d", len(bpi.Variables))
				}

				if bpi.Variables[0].Name != "i" {
					t.Fatalf("Wrong variable returned %s", bpi.Variables[0].Name)
				}

510 511 512 513 514 515
				t.Logf("Variable i is %v", bpi.Variables[0])

				n, err := strconv.Atoi(bpi.Variables[0].Value)

				if err != nil || n != count-1 {
					t.Fatalf("Wrong variable value %q (%v %d)", bpi.Variables[0].Value, err, count)
A
aarzilli 已提交
516 517 518 519 520 521 522 523 524 525 526 527 528 529 530 531 532
				}
			}
			if state.Exited {
				continue
			}
			t.Logf("%v", state)
			if state.Err != nil {
				t.Fatalf("Unexpected error during continue: %v\n", state.Err)
			}

		}

		if count != 3 {
			t.Fatalf("Wrong number of continues hit: %d\n", count)
		}
	})
}
533

534
func Test1ClientServer_traceContinue2(t *testing.T) {
535
	withTestClient1("integrationprog", t, func(c *rpc1.RPCClient) {
536
		bp1, err := c.CreateBreakpoint(&api.Breakpoint{FunctionName: "main.main", Line: 1, Tracepoint: true})
537 538 539
		if err != nil {
			t.Fatalf("Unexpected error: %v\n", err)
		}
540
		bp2, err := c.CreateBreakpoint(&api.Breakpoint{FunctionName: "main.sayhi", Line: 1, Tracepoint: true})
541 542 543 544 545 546 547
		if err != nil {
			t.Fatalf("Unexpected error: %v\n", err)
		}
		countMain := 0
		countSayhi := 0
		contChan := c.Continue()
		for state := range contChan {
548 549
			if state.CurrentThread != nil && state.CurrentThread.Breakpoint != nil {
				switch state.CurrentThread.Breakpoint.ID {
550 551 552 553 554 555 556 557 558 559 560 561 562 563 564 565 566 567 568 569 570 571 572 573 574 575
				case bp1.ID:
					countMain++
				case bp2.ID:
					countSayhi++
				}

				t.Logf("%v", state)
			}
			if state.Exited {
				continue
			}
			if state.Err != nil {
				t.Fatalf("Unexpected error during continue: %v\n", state.Err)
			}

		}

		if countMain != 1 {
			t.Fatalf("Wrong number of continues (main.main) hit: %d\n", countMain)
		}

		if countSayhi != 3 {
			t.Fatalf("Wrong number of continues (main.sayhi) hit: %d\n", countSayhi)
		}
	})
}
576

577
func Test1ClientServer_FindLocations(t *testing.T) {
578
	withTestClient1("locationsprog", t, func(c *rpc1.RPCClient) {
579 580 581 582
		someFunctionCallAddr := findLocationHelper(t, c, "locationsprog.go:26", false, 1, 0)[0]
		someFunctionLine1 := findLocationHelper(t, c, "locationsprog.go:27", false, 1, 0)[0]
		findLocationHelper(t, c, "anotherFunction:1", false, 1, someFunctionLine1)
		findLocationHelper(t, c, "main.anotherFunction:1", false, 1, someFunctionLine1)
583 584 585 586 587 588 589 590
		findLocationHelper(t, c, "anotherFunction", false, 1, someFunctionCallAddr)
		findLocationHelper(t, c, "main.anotherFunction", false, 1, someFunctionCallAddr)
		findLocationHelper(t, c, fmt.Sprintf("*0x%x", someFunctionCallAddr), false, 1, someFunctionCallAddr)
		findLocationHelper(t, c, "sprog.go:26", true, 0, 0)

		findLocationHelper(t, c, "String", true, 0, 0)
		findLocationHelper(t, c, "main.String", true, 0, 0)

591 592
		someTypeStringFuncAddr := findLocationHelper(t, c, "locationsprog.go:14", false, 1, 0)[0]
		otherTypeStringFuncAddr := findLocationHelper(t, c, "locationsprog.go:18", false, 1, 0)[0]
593 594 595 596 597
		findLocationHelper(t, c, "SomeType.String", false, 1, someTypeStringFuncAddr)
		findLocationHelper(t, c, "(*SomeType).String", false, 1, someTypeStringFuncAddr)
		findLocationHelper(t, c, "main.SomeType.String", false, 1, someTypeStringFuncAddr)
		findLocationHelper(t, c, "main.(*SomeType).String", false, 1, someTypeStringFuncAddr)

598
		// Issue #275
599 600 601 602 603
		readfile := findLocationHelper(t, c, "io/ioutil.ReadFile", false, 1, 0)[0]

		// Issue #296
		findLocationHelper(t, c, "/io/ioutil.ReadFile", false, 1, readfile)
		findLocationHelper(t, c, "ioutil.ReadFile", false, 1, readfile)
604

605 606 607 608 609 610
		stringAddrs := findLocationHelper(t, c, "/^main.*Type.*String$/", false, 2, 0)

		if otherTypeStringFuncAddr != stringAddrs[0] && otherTypeStringFuncAddr != stringAddrs[1] {
			t.Fatalf("Wrong locations returned for \"/.*Type.*String/\", got: %v expected: %v and %v\n", stringAddrs, someTypeStringFuncAddr, otherTypeStringFuncAddr)
		}

A
Alessandro Arzilli 已提交
611
		_, err := c.CreateBreakpoint(&api.Breakpoint{FunctionName: "main.main", Line: 4, Tracepoint: false})
612 613 614 615 616 617
		if err != nil {
			t.Fatalf("CreateBreakpoint(): %v\n", err)
		}

		<-c.Continue()

A
Alessandro Arzilli 已提交
618 619 620 621 622
		locationsprog35Addr := findLocationHelper(t, c, "locationsprog.go:35", false, 1, 0)[0]
		findLocationHelper(t, c, fmt.Sprintf("%s:35", testProgPath(t, "locationsprog")), false, 1, locationsprog35Addr)
		findLocationHelper(t, c, "+1", false, 1, locationsprog35Addr)
		findLocationHelper(t, c, "35", false, 1, locationsprog35Addr)
		findLocationHelper(t, c, "-1", false, 1, findLocationHelper(t, c, "locationsprog.go:33", false, 1, 0)[0])
623 624
	})

625
	withTestClient1("testnextdefer", t, func(c *rpc1.RPCClient) {
626
		firstMainLine := findLocationHelper(t, c, "testnextdefer.go:5", false, 1, 0)[0]
627 628 629
		findLocationHelper(t, c, "main.main", false, 1, firstMainLine)
	})

630
	withTestClient1("stacktraceprog", t, func(c *rpc1.RPCClient) {
631 632 633
		stacktracemeAddr := findLocationHelper(t, c, "stacktraceprog.go:4", false, 1, 0)[0]
		findLocationHelper(t, c, "main.stacktraceme", false, 1, stacktracemeAddr)
	})
L
Luke Hoban 已提交
634

635
	withTestClient1Extended("locationsUpperCase", t, func(c *rpc1.RPCClient, fixture protest.Fixture) {
L
Luke Hoban 已提交
636 637 638 639
		// Upper case
		findLocationHelper(t, c, "locationsUpperCase.go:6", false, 1, 0)

		// Fully qualified path
640 641
		findLocationHelper(t, c, fixture.Source+":6", false, 1, 0)
		bp, err := c.CreateBreakpoint(&api.Breakpoint{File: fixture.Source, Line: 6})
L
Luke Hoban 已提交
642
		if err != nil {
643
			t.Fatalf("Could not set breakpoint in %s: %v\n", fixture.Source, err)
L
Luke Hoban 已提交
644 645 646 647 648
		}
		c.ClearBreakpoint(bp.ID)

		//  Allow `/` or `\` on Windows
		if runtime.GOOS == "windows" {
649 650
			findLocationHelper(t, c, filepath.FromSlash(fixture.Source)+":6", false, 1, 0)
			bp, err = c.CreateBreakpoint(&api.Breakpoint{File: filepath.FromSlash(fixture.Source), Line: 6})
L
Luke Hoban 已提交
651
			if err != nil {
652
				t.Fatalf("Could not set breakpoint in %s: %v\n", filepath.FromSlash(fixture.Source), err)
L
Luke Hoban 已提交
653 654 655 656 657 658 659 660 661 662 663
			}
			c.ClearBreakpoint(bp.ID)
		}

		// Case-insensitive on Windows, case-sensitive otherwise
		shouldWrongCaseBeError := true
		numExpectedMatches := 0
		if runtime.GOOS == "windows" {
			shouldWrongCaseBeError = false
			numExpectedMatches = 1
		}
664 665
		findLocationHelper(t, c, strings.ToLower(fixture.Source)+":6", shouldWrongCaseBeError, numExpectedMatches, 0)
		bp, err = c.CreateBreakpoint(&api.Breakpoint{File: strings.ToLower(fixture.Source), Line: 6})
L
Luke Hoban 已提交
666
		if (err == nil) == shouldWrongCaseBeError {
667
			t.Fatalf("Could not set breakpoint in %s: %v\n", strings.ToLower(fixture.Source), err)
L
Luke Hoban 已提交
668 669 670
		}
		c.ClearBreakpoint(bp.ID)
	})
671
}
A
aarzilli 已提交
672

673
func Test1ClientServer_FindLocationsAddr(t *testing.T) {
674
	withTestClient1("locationsprog2", t, func(c *rpc1.RPCClient) {
675 676 677
		<-c.Continue()

		afunction := findLocationHelper(t, c, "main.afunction", false, 1, 0)[0]
678
		anonfunc := findLocationHelper(t, c, "main.main.func1", false, 1, 0)[0]
679 680 681 682 683 684

		findLocationHelper(t, c, "*fn1", false, 1, afunction)
		findLocationHelper(t, c, "*fn3", false, 1, anonfunc)
	})
}

685
func Test1ClientServer_EvalVariable(t *testing.T) {
686
	withTestClient1("testvariables", t, func(c *rpc1.RPCClient) {
A
aarzilli 已提交
687 688 689 690 691 692
		state := <-c.Continue()

		if state.Err != nil {
			t.Fatalf("Continue(): %v\n", state.Err)
		}

693
		var1, err := c.EvalVariable(api.EvalScope{-1, 0, 0}, "a1")
694
		assertNoError(err, t, "EvalVariable")
A
aarzilli 已提交
695

696
		t.Logf("var1: %s", var1.SinglelineString())
A
aarzilli 已提交
697 698

		if var1.Value != "foofoofoofoofoofoo" {
699
			t.Fatalf("Wrong variable value: %s", var1.Value)
700 701 702 703
		}
	})
}

704
func Test1ClientServer_SetVariable(t *testing.T) {
705
	withTestClient1("testvariables", t, func(c *rpc1.RPCClient) {
706 707 708 709 710 711
		state := <-c.Continue()

		if state.Err != nil {
			t.Fatalf("Continue(): %v\n", state.Err)
		}

712
		assertNoError(c.SetVariable(api.EvalScope{-1, 0, 0}, "a2", "8"), t, "SetVariable()")
713

714
		a2, err := c.EvalVariable(api.EvalScope{-1, 0, 0}, "a2")
715 716 717
		if err != nil {
			t.Fatalf("Could not evaluate variable: %v", err)
		}
718

719
		t.Logf("a2: %v", a2)
720

721 722 723 724
		n, err := strconv.Atoi(a2.Value)

		if err != nil && n != 8 {
			t.Fatalf("Wrong variable value: %v", a2)
A
aarzilli 已提交
725 726 727
		}
	})
}
728

729
func Test1ClientServer_FullStacktrace(t *testing.T) {
H
hengwu0 已提交
730 731 732
	if runtime.GOARCH == "arm64" {
		t.Skip("test is not valid on ARM64")
	}
733
	withTestClient1("goroutinestackprog", t, func(c *rpc1.RPCClient) {
734 735 736 737 738 739 740 741 742 743 744 745 746 747 748 749 750
		_, err := c.CreateBreakpoint(&api.Breakpoint{FunctionName: "main.stacktraceme", Line: -1})
		assertNoError(err, t, "CreateBreakpoint()")
		state := <-c.Continue()
		if state.Err != nil {
			t.Fatalf("Continue(): %v\n", state.Err)
		}

		gs, err := c.ListGoroutines()
		assertNoError(err, t, "GoroutinesInfo()")
		found := make([]bool, 10)
		for _, g := range gs {
			frames, err := c.Stacktrace(g.ID, 10, true)
			assertNoError(err, t, fmt.Sprintf("Stacktrace(%d)", g.ID))
			for i, frame := range frames {
				if frame.Function == nil {
					continue
				}
751
				if frame.Function.Name() != "main.agoroutine" {
752 753 754 755 756 757 758
					continue
				}
				t.Logf("frame %d: %v", i, frame)
				for _, arg := range frame.Arguments {
					if arg.Name != "i" {
						continue
					}
759
					t.Logf("frame %d, variable i is %v\n", i, arg)
760 761 762 763
					argn, err := strconv.Atoi(arg.Value)
					if err == nil {
						found[argn] = true
					}
764 765 766 767 768 769 770 771 772 773 774 775 776 777 778 779 780 781 782 783 784 785 786 787 788 789 790 791
				}
			}
		}

		for i := range found {
			if !found[i] {
				t.Fatalf("Goroutine %d not found", i)
			}
		}

		state = <-c.Continue()
		if state.Err != nil {
			t.Fatalf("Continue(): %v\n", state.Err)
		}

		frames, err := c.Stacktrace(-1, 10, true)
		assertNoError(err, t, "Stacktrace")

		cur := 3
		for i, frame := range frames {
			if i == 0 {
				continue
			}
			t.Logf("frame %d: %v", i, frame)
			v := frame.Var("n")
			if v == nil {
				t.Fatalf("Could not find value of variable n in frame %d", i)
			}
792 793 794
			vn, err := strconv.Atoi(v.Value)
			if err != nil || vn != cur {
				t.Fatalf("Expected value %d got %d (error: %v)", cur, vn, err)
795 796 797 798 799 800 801 802
			}
			cur--
			if cur < 0 {
				break
			}
		}
	})
}
803

804
func Test1Issue355(t *testing.T) {
H
hengwu0 已提交
805 806 807
	if runtime.GOARCH == "arm64" {
		t.Skip("test is not valid on ARM64")
	}
808
	// After the target process has terminated should return an error but not crash
809
	withTestClient1("continuetestprog", t, func(c *rpc1.RPCClient) {
810 811 812 813 814 815 816 817 818 819 820 821 822 823 824 825 826 827 828 829 830 831 832 833 834 835 836 837 838 839 840 841 842 843 844 845 846
		bp, err := c.CreateBreakpoint(&api.Breakpoint{FunctionName: "main.sayhi", Line: -1})
		assertNoError(err, t, "CreateBreakpoint()")
		ch := c.Continue()
		state := <-ch
		tid := state.CurrentThread.ID
		gid := state.SelectedGoroutine.ID
		assertNoError(state.Err, t, "First Continue()")
		ch = c.Continue()
		state = <-ch
		if !state.Exited {
			t.Fatalf("Target did not terminate after second continue")
		}

		ch = c.Continue()
		state = <-ch
		assertError(state.Err, t, "Continue()")

		_, err = c.Next()
		assertError(err, t, "Next()")
		_, err = c.Step()
		assertError(err, t, "Step()")
		_, err = c.StepInstruction()
		assertError(err, t, "StepInstruction()")
		_, err = c.SwitchThread(tid)
		assertError(err, t, "SwitchThread()")
		_, err = c.SwitchGoroutine(gid)
		assertError(err, t, "SwitchGoroutine()")
		_, err = c.Halt()
		assertError(err, t, "Halt()")
		_, err = c.CreateBreakpoint(&api.Breakpoint{FunctionName: "main.main", Line: -1})
		assertError(err, t, "CreateBreakpoint()")
		_, err = c.ClearBreakpoint(bp.ID)
		assertError(err, t, "ClearBreakpoint()")
		_, err = c.ListThreads()
		assertError(err, t, "ListThreads()")
		_, err = c.GetThread(tid)
		assertError(err, t, "GetThread()")
847 848
		assertError(c.SetVariable(api.EvalScope{gid, 0, 0}, "a", "10"), t, "SetVariable()")
		_, err = c.ListLocalVariables(api.EvalScope{gid, 0, 0})
849
		assertError(err, t, "ListLocalVariables()")
850
		_, err = c.ListFunctionArgs(api.EvalScope{gid, 0, 0})
851 852 853 854 855 856 857
		assertError(err, t, "ListFunctionArgs()")
		_, err = c.ListRegisters()
		assertError(err, t, "ListRegisters()")
		_, err = c.ListGoroutines()
		assertError(err, t, "ListGoroutines()")
		_, err = c.Stacktrace(gid, 10, false)
		assertError(err, t, "Stacktrace()")
858
		_, err = c.FindLocation(api.EvalScope{gid, 0, 0}, "+1")
859
		assertError(err, t, "FindLocation()")
860
		_, err = c.DisassemblePC(api.EvalScope{-1, 0, 0}, 0x40100, api.IntelFlavour)
A
aarzilli 已提交
861 862 863 864
		assertError(err, t, "DisassemblePC()")
	})
}

865
func Test1Disasm(t *testing.T) {
H
hengwu0 已提交
866 867 868
	if runtime.GOARCH == "arm64" {
		t.Skip("test is not valid on ARM64")
	}
A
aarzilli 已提交
869 870 871 872
	// Tests that disassembling by PC, range, and current PC all yeld similar results
	// Tests that disassembly by current PC will return a disassembly containing the instruction at PC
	// Tests that stepping on a calculated CALL instruction will yield a disassembly that contains the
	// effective destination of the CALL instruction
873
	withTestClient1("locationsprog2", t, func(c *rpc1.RPCClient) {
A
aarzilli 已提交
874 875 876 877
		ch := c.Continue()
		state := <-ch
		assertNoError(state.Err, t, "Continue()")

878
		locs, err := c.FindLocation(api.EvalScope{-1, 0, 0}, "main.main")
A
aarzilli 已提交
879 880 881 882
		assertNoError(err, t, "FindLocation()")
		if len(locs) != 1 {
			t.Fatalf("wrong number of locations for main.main: %d", len(locs))
		}
883
		d1, err := c.DisassemblePC(api.EvalScope{-1, 0, 0}, locs[0].PC, api.IntelFlavour)
A
aarzilli 已提交
884 885 886 887 888 889 890
		assertNoError(err, t, "DisassemblePC()")
		if len(d1) < 2 {
			t.Fatalf("wrong size of disassembly: %d", len(d1))
		}

		pcstart := d1[0].Loc.PC
		pcend := d1[len(d1)-1].Loc.PC + uint64(len(d1[len(d1)-1].Bytes))
891
		d2, err := c.DisassembleRange(api.EvalScope{-1, 0, 0}, pcstart, pcend, api.IntelFlavour)
A
aarzilli 已提交
892 893 894 895 896 897 898 899
		assertNoError(err, t, "DisassembleRange()")

		if len(d1) != len(d2) {
			t.Logf("d1: %v", d1)
			t.Logf("d2: %v", d2)
			t.Fatal("mismatched length between disassemble pc and disassemble range")
		}

900
		d3, err := c.DisassemblePC(api.EvalScope{-1, 0, 0}, state.CurrentThread.PC, api.IntelFlavour)
A
aarzilli 已提交
901 902 903 904 905 906 907 908 909 910 911
		assertNoError(err, t, "DisassemblePC() - second call")

		if len(d1) != len(d3) {
			t.Logf("d1: %v", d1)
			t.Logf("d3: %v", d3)
			t.Fatal("mismatched length between the two calls of disassemble pc")
		}

		// look for static call to afunction() on line 29
		found := false
		for i := range d3 {
912
			if d3[i].Loc.Line == 29 && strings.HasPrefix(d3[i].Text, "call") && d3[i].DestLoc != nil && d3[i].DestLoc.Function != nil && d3[i].DestLoc.Function.Name() == "main.afunction" {
A
aarzilli 已提交
913 914 915 916 917 918 919 920 921 922 923 924 925 926 927 928 929 930 931 932 933 934 935 936 937 938 939 940 941 942 943
				found = true
				break
			}
		}
		if !found {
			t.Fatal("Could not find call to main.afunction on line 29")
		}

		haspc := false
		for i := range d3 {
			if d3[i].AtPC {
				haspc = true
				break
			}
		}

		if !haspc {
			t.Logf("d3: %v", d3)
			t.Fatal("PC instruction not found")
		}

		startinstr := getCurinstr(d3)

		count := 0
		for {
			if count > 20 {
				t.Fatal("too many step instructions executed without finding a call instruction")
			}
			state, err := c.StepInstruction()
			assertNoError(err, t, fmt.Sprintf("StepInstruction() %d", count))

944
			d3, err = c.DisassemblePC(api.EvalScope{-1, 0, 0}, state.CurrentThread.PC, api.IntelFlavour)
A
aarzilli 已提交
945 946 947 948 949 950 951 952 953 954 955 956 957 958 959 960 961
			assertNoError(err, t, fmt.Sprintf("StepInstruction() %d", count))

			curinstr := getCurinstr(d3)

			if curinstr == nil {
				t.Fatalf("Could not find current instruction %d", count)
			}

			if curinstr.Loc.Line != startinstr.Loc.Line {
				t.Fatal("Calling StepInstruction() repeatedly did not find the call instruction")
			}

			if strings.HasPrefix(curinstr.Text, "call") {
				t.Logf("call: %v", curinstr)
				if curinstr.DestLoc == nil || curinstr.DestLoc.Function == nil {
					t.Fatalf("Call instruction does not have destination: %v", curinstr)
				}
962
				if curinstr.DestLoc.Function.Name() != "main.afunction" {
A
aarzilli 已提交
963 964 965 966 967 968 969
					t.Fatalf("Call instruction destination not main.afunction: %v", curinstr)
				}
				break
			}

			count++
		}
970 971
	})
}
972

973
func Test1NegativeStackDepthBug(t *testing.T) {
974
	// After the target process has terminated should return an error but not crash
975
	withTestClient1("continuetestprog", t, func(c *rpc1.RPCClient) {
976 977 978 979 980 981 982 983 984
		_, err := c.CreateBreakpoint(&api.Breakpoint{FunctionName: "main.sayhi", Line: -1})
		assertNoError(err, t, "CreateBreakpoint()")
		ch := c.Continue()
		state := <-ch
		assertNoError(state.Err, t, "Continue()")
		_, err = c.Stacktrace(-1, -2, true)
		assertError(err, t, "Stacktrace()")
	})
}
985

986
func Test1ClientServer_CondBreakpoint(t *testing.T) {
987 988 989
	if runtime.GOOS == "freebsd" {
		t.Skip("test is not valid on FreeBSD")
	}
990
	withTestClient1("parallel_next", t, func(c *rpc1.RPCClient) {
991 992 993 994 995 996 997 998 999 1000 1001 1002 1003 1004 1005 1006 1007 1008 1009
		bp, err := c.CreateBreakpoint(&api.Breakpoint{FunctionName: "main.sayhi", Line: 1})
		assertNoError(err, t, "CreateBreakpoint()")
		bp.Cond = "n == 7"
		assertNoError(c.AmendBreakpoint(bp), t, "AmendBreakpoint() 1")
		bp, err = c.GetBreakpoint(bp.ID)
		assertNoError(err, t, "GetBreakpoint() 1")
		bp.Variables = append(bp.Variables, "n")
		assertNoError(c.AmendBreakpoint(bp), t, "AmendBreakpoint() 2")
		bp, err = c.GetBreakpoint(bp.ID)
		assertNoError(err, t, "GetBreakpoint() 2")
		if bp.Cond == "" {
			t.Fatalf("No condition set on breakpoint %#v", bp)
		}
		if len(bp.Variables) != 1 {
			t.Fatalf("Wrong number of expressions to evaluate on breakpoint %#v", bp)
		}
		state := <-c.Continue()
		assertNoError(state.Err, t, "Continue()")

1010
		nvar, err := c.EvalVariable(api.EvalScope{-1, 0, 0}, "n")
1011 1012 1013 1014 1015 1016 1017
		assertNoError(err, t, "EvalVariable()")

		if nvar.SinglelineString() != "7" {
			t.Fatalf("Stopped on wrong goroutine %s\n", nvar.Value)
		}
	})
}
1018

1019
func Test1Issue419(t *testing.T) {
1020 1021
	// Calling service/rpc.(*Client).Halt could cause a crash because both Halt and Continue simultaneously
	// try to read 'runtime.g' and debug/dwarf.Data.Type is not thread safe
1022
	withTestClient1("issue419", t, func(c *rpc1.RPCClient) {
1023 1024 1025 1026 1027 1028 1029 1030 1031 1032 1033 1034
		go func() {
			rand.Seed(time.Now().Unix())
			d := time.Duration(rand.Intn(4) + 1)
			time.Sleep(d * time.Second)
			_, err := c.Halt()
			assertNoError(err, t, "RequestManualStop()")
		}()
		statech := c.Continue()
		state := <-statech
		assertNoError(state.Err, t, "Continue()")
	})
}
A
aarzilli 已提交
1035

1036
func Test1TypesCommand(t *testing.T) {
1037
	withTestClient1("testvariables2", t, func(c *rpc1.RPCClient) {
A
aarzilli 已提交
1038 1039 1040 1041 1042 1043 1044 1045 1046 1047 1048 1049 1050 1051 1052 1053
		state := <-c.Continue()
		assertNoError(state.Err, t, "Continue()")
		types, err := c.ListTypes("")
		assertNoError(err, t, "ListTypes()")

		found := false
		for i := range types {
			if types[i] == "main.astruct" {
				found = true
				break
			}
		}
		if !found {
			t.Fatal("Type astruct not found in ListTypes output")
		}

1054
		types, err = c.ListTypes("^main.astruct$")
A
aarzilli 已提交
1055
		assertNoError(err, t, "ListTypes(\"main.astruct\")")
1056 1057
		if len(types) != 1 {
			t.Fatalf("ListTypes(\"^main.astruct$\") did not filter properly, expected 1 got %d: %v", len(types), types)
A
aarzilli 已提交
1058 1059 1060
		}
	})
}
1061 1062

func Test1Issue406(t *testing.T) {
1063
	withTestClient1("issue406", t, func(c *rpc1.RPCClient) {
1064
		locs, err := c.FindLocation(api.EvalScope{-1, 0, 0}, "issue406.go:146")
1065 1066 1067 1068 1069 1070
		assertNoError(err, t, "FindLocation()")
		_, err = c.CreateBreakpoint(&api.Breakpoint{Addr: locs[0].PC})
		assertNoError(err, t, "CreateBreakpoint()")
		ch := c.Continue()
		state := <-ch
		assertNoError(state.Err, t, "Continue()")
1071
		v, err := c.EvalVariable(api.EvalScope{-1, 0, 0}, "cfgtree")
1072 1073 1074 1075 1076
		assertNoError(err, t, "EvalVariable()")
		vs := v.MultilineString("")
		t.Logf("cfgtree formats to: %s\n", vs)
	})
}