integration1_test.go 31.7 KB
Newer Older
D
Derek Parker 已提交
1
package servicetest
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

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

D
Derek Parker 已提交
16
	"github.com/derekparker/delve/pkg/proc"
D
Dan Mace 已提交
17 18
	"github.com/derekparker/delve/service"
	"github.com/derekparker/delve/service/api"
19
	"github.com/derekparker/delve/service/rpc1"
A
aarzilli 已提交
20
	"github.com/derekparker/delve/service/rpccommon"
D
Dan Mace 已提交
21 22
)

23
func withTestClient1(name string, t *testing.T, fn func(c *rpc1.RPCClient)) {
D
Dan Mace 已提交
24 25 26 27
	listener, err := net.Listen("tcp", "localhost:0")
	if err != nil {
		t.Fatalf("couldn't start listener: %s\n", err)
	}
D
Derek Parker 已提交
28
	defer listener.Close()
A
aarzilli 已提交
29
	server := rpccommon.NewServer(&service.Config{
30 31 32
		Listener:    listener,
		ProcessArgs: []string{protest.BuildFixture(name).Path},
	}, false)
33 34 35
	if err := server.Run(); err != nil {
		t.Fatal(err)
	}
36
	client := rpc1.NewClient(listener.Addr().String())
37 38 39 40
	defer func() {
		client.Detach(true)
	}()

41
	fn(client)
D
Dan Mace 已提交
42 43
}

44
func Test1RunWithInvalidPath(t *testing.T) {
45 46 47 48 49
	listener, err := net.Listen("tcp", "localhost:0")
	if err != nil {
		t.Fatalf("couldn't start listener: %s\n", err)
	}
	defer listener.Close()
A
aarzilli 已提交
50
	server := rpccommon.NewServer(&service.Config{
51 52 53 54 55 56 57 58
		Listener:    listener,
		ProcessArgs: []string{"invalid_path"},
	}, false)
	if err := server.Run(); err == nil {
		t.Fatal("Expected Run to return error for invalid program path")
	}
}

59
func Test1Restart_afterExit(t *testing.T) {
60
	withTestClient1("continuetestprog", t, func(c *rpc1.RPCClient) {
D
Derek Parker 已提交
61 62 63 64 65 66 67 68 69 70 71 72 73
		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 {
74
			t.Fatalf("expected restarted process to have exited %v", state)
D
Derek Parker 已提交
75 76 77 78
		}
	})
}

79
func Test1Restart_breakpointPreservation(t *testing.T) {
80
	withTestClient1("continuetestprog", t, func(c *rpc1.RPCClient) {
81 82 83
		_, err := c.CreateBreakpoint(&api.Breakpoint{FunctionName: "main.main", Line: 1, Name: "firstbreakpoint", Tracepoint: true})
		assertNoError(err, t, "CreateBreakpoint()")
		stateCh := c.Continue()
A
aarzilli 已提交
84 85

		state := <-stateCh
86 87 88
		if state.CurrentThread.Breakpoint.Name != "firstbreakpoint" || !state.CurrentThread.Breakpoint.Tracepoint {
			t.Fatalf("Wrong breakpoint: %#v\n", state.CurrentThread.Breakpoint)
		}
A
aarzilli 已提交
89
		state = <-stateCh
90 91 92
		if !state.Exited {
			t.Fatal("Did not exit after first tracepoint")
		}
A
aarzilli 已提交
93

94 95 96
		t.Log("Restart")
		c.Restart()
		stateCh = c.Continue()
A
aarzilli 已提交
97
		state = <-stateCh
98 99 100
		if state.CurrentThread.Breakpoint.Name != "firstbreakpoint" || !state.CurrentThread.Breakpoint.Tracepoint {
			t.Fatalf("Wrong breakpoint (after restart): %#v\n", state.CurrentThread.Breakpoint)
		}
A
aarzilli 已提交
101
		state = <-stateCh
102 103 104 105 106 107
		if !state.Exited {
			t.Fatal("Did not exit after first tracepoint (after restart)")
		}
	})
}

108
func Test1Restart_duringStop(t *testing.T) {
109
	withTestClient1("continuetestprog", t, func(c *rpc1.RPCClient) {
D
Derek Parker 已提交
110
		origPid := c.ProcessPid()
111
		_, err := c.CreateBreakpoint(&api.Breakpoint{FunctionName: "main.main", Line: 1})
D
Derek Parker 已提交
112 113 114 115
		if err != nil {
			t.Fatal(err)
		}
		state := <-c.Continue()
116
		if state.CurrentThread.Breakpoint == nil {
D
Derek Parker 已提交
117 118 119 120 121 122 123 124 125 126 127 128
			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)
		}
129 130
		if len(bps) == 0 {
			t.Fatal("breakpoints not preserved")
D
Derek Parker 已提交
131 132 133 134
		}
	})
}

135
func Test1Restart_attachPid(t *testing.T) {
D
Derek Parker 已提交
136 137
	// Assert it does not work and returns error.
	// We cannot restart a process we did not spawn.
A
aarzilli 已提交
138
	server := rpccommon.NewServer(&service.Config{
D
Derek Parker 已提交
139 140 141
		Listener:  nil,
		AttachPid: 999,
	}, false)
142
	if err := server.Restart(); err == nil {
D
Derek Parker 已提交
143 144 145 146
		t.Fatal("expected error on restart after attaching to pid but got none")
	}
}

147
func Test1ClientServer_exit(t *testing.T) {
148
	withTestClient1("continuetestprog", t, func(c *rpc1.RPCClient) {
D
Dan Mace 已提交
149 150 151 152 153 154 155
		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 已提交
156
		state = <-c.Continue()
157 158
		if state.Err == nil {
			t.Fatalf("Error expected after continue")
D
Derek Parker 已提交
159
		}
A
aarzilli 已提交
160 161
		if !state.Exited {
			t.Fatalf("Expected exit after continue: %v", state)
D
Derek Parker 已提交
162 163
		}
		state, err = c.GetState()
164 165
		if err == nil {
			t.Fatal("Expected error on querying state from exited process")
D
Dan Mace 已提交
166 167 168 169
		}
	})
}

170
func Test1ClientServer_step(t *testing.T) {
171
	withTestClient1("testprog", t, func(c *rpc1.RPCClient) {
172
		_, err := c.CreateBreakpoint(&api.Breakpoint{FunctionName: "main.helloworld", Line: -1})
D
Dan Mace 已提交
173 174 175 176
		if err != nil {
			t.Fatalf("Unexpected error: %v", err)
		}

D
Derek Parker 已提交
177
		stateBefore := <-c.Continue()
A
aarzilli 已提交
178 179
		if stateBefore.Err != nil {
			t.Fatalf("Unexpected error: %v", stateBefore.Err)
D
Dan Mace 已提交
180 181 182 183 184 185 186 187 188 189 190 191 192 193
		}

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

		if before, after := stateBefore.CurrentThread.PC, stateAfter.CurrentThread.PC; before >= after {
			t.Errorf("Expected %#v to be greater than %#v", before, after)
		}
	})
}

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

A
aarzilli 已提交
200 201 202
		state := <-c.Continue()
		if state.Err != nil {
			t.Fatalf("Unexpected error: %v", state.Err)
D
Dan Mace 已提交
203 204
		}

D
Derek Parker 已提交
205
		_, err = c.ClearBreakpoint(bp.ID)
D
Dan Mace 已提交
206 207 208 209 210 211
		if err != nil {
			t.Fatalf("Unexpected error: %v", err)
		}

		for _, tc := range testcases {
			if state.CurrentThread.Line != tc.begin {
D
Dan Mace 已提交
212
				t.Fatalf("Program not stopped at correct spot expected %d was %d", tc.begin, state.CurrentThread.Line)
D
Dan Mace 已提交
213 214 215 216 217 218 219 220 221
			}

			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 已提交
222
				t.Fatalf("Program did not continue to correct next location expected %d was %d", tc.end, state.CurrentThread.Line)
D
Dan Mace 已提交
223 224 225 226 227
			}
		}
	})
}

228
func Test1NextGeneral(t *testing.T) {
229 230 231 232
	var testcases []nextTest

	ver, _ := proc.ParseVersionString(runtime.Version())

233
	if ver.Major < 0 || ver.AfterOrEqual(proc.GoVersion{1, 7, -1, 0, 0}) {
234 235 236 237 238 239 240 241 242 243 244 245 246 247 248 249 250 251 252 253 254 255 256 257 258 259 260 261 262 263 264 265 266 267 268 269
		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 已提交
270
	}
271

D
Dan Mace 已提交
272 273 274
	testnext(testcases, "main.testnext", t)
}

275
func Test1NextFunctionReturn(t *testing.T) {
D
Dan Mace 已提交
276
	testcases := []nextTest{
277
		{13, 14},
D
Derek Parker 已提交
278 279
		{14, 15},
		{15, 35},
D
Dan Mace 已提交
280 281 282 283
	}
	testnext(testcases, "main.helloworld", t)
}

284
func Test1ClientServer_breakpointInMainThread(t *testing.T) {
285
	withTestClient1("testprog", t, func(c *rpc1.RPCClient) {
286
		bp, err := c.CreateBreakpoint(&api.Breakpoint{FunctionName: "main.helloworld", Line: 1})
D
Dan Mace 已提交
287 288 289 290
		if err != nil {
			t.Fatalf("Unexpected error: %v", err)
		}

A
aarzilli 已提交
291
		state := <-c.Continue()
D
Dan Mace 已提交
292 293 294 295 296 297 298 299 300 301 302 303 304
		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)
		}
	})
}

305
func Test1ClientServer_breakpointInSeparateGoroutine(t *testing.T) {
306
	withTestClient1("testthreads", t, func(c *rpc1.RPCClient) {
307
		_, err := c.CreateBreakpoint(&api.Breakpoint{FunctionName: "main.anotherthread", Line: 1})
D
Dan Mace 已提交
308 309 310 311
		if err != nil {
			t.Fatalf("Unexpected error: %v", err)
		}

A
aarzilli 已提交
312 313 314
		state := <-c.Continue()
		if state.Err != nil {
			t.Fatalf("Unexpected error: %v, state: %#v", state.Err, state)
D
Dan Mace 已提交
315 316 317
		}

		f, l := state.CurrentThread.File, state.CurrentThread.Line
318
		if f != "testthreads.go" && l != 9 {
D
Dan Mace 已提交
319 320 321 322 323
			t.Fatal("Program did not hit breakpoint")
		}
	})
}

324
func Test1ClientServer_breakAtNonexistentPoint(t *testing.T) {
325
	withTestClient1("testprog", t, func(c *rpc1.RPCClient) {
326
		_, err := c.CreateBreakpoint(&api.Breakpoint{FunctionName: "nowhere", Line: 1})
D
Dan Mace 已提交
327 328 329 330 331 332
		if err == nil {
			t.Fatal("Should not be able to break at non existent function")
		}
	})
}

333
func Test1ClientServer_clearBreakpoint(t *testing.T) {
334
	withTestClient1("testprog", t, func(c *rpc1.RPCClient) {
335
		bp, err := c.CreateBreakpoint(&api.Breakpoint{FunctionName: "main.sleepytime", Line: 1})
D
Dan Mace 已提交
336 337 338 339
		if err != nil {
			t.Fatalf("Unexpected error: %v", err)
		}

340
		if e, a := 1, countBreakpoints(t, c); e != a {
D
Dan Mace 已提交
341 342 343
			t.Fatalf("Expected breakpoint count %d, got %d", e, a)
		}

D
Derek Parker 已提交
344
		deleted, err := c.ClearBreakpoint(bp.ID)
D
Dan Mace 已提交
345 346 347 348 349 350 351 352
		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)
		}

353
		if e, a := 0, countBreakpoints(t, c); e != a {
D
Dan Mace 已提交
354 355 356 357 358
			t.Fatalf("Expected breakpoint count %d, got %d", e, a)
		}
	})
}

359
func Test1ClientServer_switchThread(t *testing.T) {
360
	withTestClient1("testnextprog", t, func(c *rpc1.RPCClient) {
D
Dan Mace 已提交
361 362 363 364 365 366
		// With invalid thread id
		_, err := c.SwitchThread(-1)
		if err == nil {
			t.Fatal("Expected error for invalid thread id")
		}

367
		_, err = c.CreateBreakpoint(&api.Breakpoint{FunctionName: "main.main", Line: 1})
D
Dan Mace 已提交
368 369 370
		if err != nil {
			t.Fatalf("Unexpected error: %v", err)
		}
A
aarzilli 已提交
371 372 373
		state := <-c.Continue()
		if state.Err != nil {
			t.Fatalf("Unexpected error: %v, state: %#v", state.Err, state)
D
Dan Mace 已提交
374 375 376 377 378 379 380 381 382 383 384 385 386 387 388 389 390 391 392 393 394 395 396 397 398 399 400
		}

		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")
		}
	})
}
401

402
func Test1ClientServer_infoLocals(t *testing.T) {
403
	withTestClient1("testnextprog", t, func(c *rpc1.RPCClient) {
A
aarzilli 已提交
404 405
		fp := testProgPath(t, "testnextprog")
		_, err := c.CreateBreakpoint(&api.Breakpoint{File: fp, Line: 23})
406 407 408
		if err != nil {
			t.Fatalf("Unexpected error: %v", err)
		}
A
aarzilli 已提交
409 410 411
		state := <-c.Continue()
		if state.Err != nil {
			t.Fatalf("Unexpected error: %v, state: %#v", state.Err, state)
412
		}
413
		locals, err := c.ListLocalVariables(api.EvalScope{-1, 0})
414 415 416 417 418 419 420 421 422
		if err != nil {
			t.Fatalf("Unexpected error: %v", err)
		}
		if len(locals) != 3 {
			t.Fatalf("Expected 3 locals, got %d %#v", len(locals), locals)
		}
	})
}

423
func Test1ClientServer_infoArgs(t *testing.T) {
424
	withTestClient1("testnextprog", t, func(c *rpc1.RPCClient) {
A
aarzilli 已提交
425 426
		fp := testProgPath(t, "testnextprog")
		_, err := c.CreateBreakpoint(&api.Breakpoint{File: fp, Line: 47})
427 428 429
		if err != nil {
			t.Fatalf("Unexpected error: %v", err)
		}
A
aarzilli 已提交
430 431 432
		state := <-c.Continue()
		if state.Err != nil {
			t.Fatalf("Unexpected error: %v, state: %#v", state.Err, state)
433
		}
434 435 436 437 438 439 440
		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")
		}
441
		locals, err := c.ListFunctionArgs(api.EvalScope{-1, 0})
442 443 444 445 446 447 448 449
		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 已提交
450

451
func Test1ClientServer_traceContinue(t *testing.T) {
452
	withTestClient1("integrationprog", t, func(c *rpc1.RPCClient) {
A
aarzilli 已提交
453
		fp := testProgPath(t, "integrationprog")
D
Derek Parker 已提交
454
		_, err := c.CreateBreakpoint(&api.Breakpoint{File: fp, Line: 15, Tracepoint: true, Goroutine: true, Stacktrace: 5, Variables: []string{"i"}})
A
aarzilli 已提交
455 456 457 458
		if err != nil {
			t.Fatalf("Unexpected error: %v\n", err)
		}
		count := 0
D
Derek Parker 已提交
459 460
		contChan := c.Continue()
		for state := range contChan {
461
			if state.CurrentThread != nil && state.CurrentThread.Breakpoint != nil {
A
aarzilli 已提交
462 463 464 465
				count++

				t.Logf("%v", state)

466
				bpi := state.CurrentThread.BreakpointInfo
A
aarzilli 已提交
467 468 469 470 471 472 473 474 475 476 477 478 479 480 481 482 483

				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)
				}

484 485 486 487 488 489
				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 已提交
490 491 492 493 494 495 496 497 498 499 500 501 502 503 504 505 506
				}
			}
			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)
		}
	})
}
507

508
func Test1ClientServer_traceContinue2(t *testing.T) {
509
	withTestClient1("integrationprog", t, func(c *rpc1.RPCClient) {
510
		bp1, err := c.CreateBreakpoint(&api.Breakpoint{FunctionName: "main.main", Line: 1, Tracepoint: true})
511 512 513
		if err != nil {
			t.Fatalf("Unexpected error: %v\n", err)
		}
514
		bp2, err := c.CreateBreakpoint(&api.Breakpoint{FunctionName: "main.sayhi", Line: 1, Tracepoint: true})
515 516 517 518 519 520 521
		if err != nil {
			t.Fatalf("Unexpected error: %v\n", err)
		}
		countMain := 0
		countSayhi := 0
		contChan := c.Continue()
		for state := range contChan {
522 523
			if state.CurrentThread != nil && state.CurrentThread.Breakpoint != nil {
				switch state.CurrentThread.Breakpoint.ID {
524 525 526 527 528 529 530 531 532 533 534 535 536 537 538 539 540 541 542 543 544 545 546 547 548 549
				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)
		}
	})
}
550

551
func Test1ClientServer_FindLocations(t *testing.T) {
552
	withTestClient1("locationsprog", t, func(c *rpc1.RPCClient) {
553 554 555 556
		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)
557 558 559 560 561 562 563 564
		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)

565 566
		someTypeStringFuncAddr := findLocationHelper(t, c, "locationsprog.go:14", false, 1, 0)[0]
		otherTypeStringFuncAddr := findLocationHelper(t, c, "locationsprog.go:18", false, 1, 0)[0]
567 568 569 570 571
		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)

572
		// Issue #275
573 574 575 576 577
		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)
578

579 580 581 582 583 584
		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 已提交
585
		_, err := c.CreateBreakpoint(&api.Breakpoint{FunctionName: "main.main", Line: 4, Tracepoint: false})
586 587 588 589 590 591
		if err != nil {
			t.Fatalf("CreateBreakpoint(): %v\n", err)
		}

		<-c.Continue()

A
Alessandro Arzilli 已提交
592 593 594 595 596
		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])
597 598
	})

599
	withTestClient1("testnextdefer", t, func(c *rpc1.RPCClient) {
600
		firstMainLine := findLocationHelper(t, c, "testnextdefer.go:5", false, 1, 0)[0]
601 602 603
		findLocationHelper(t, c, "main.main", false, 1, firstMainLine)
	})

604
	withTestClient1("stacktraceprog", t, func(c *rpc1.RPCClient) {
605 606 607
		stacktracemeAddr := findLocationHelper(t, c, "stacktraceprog.go:4", false, 1, 0)[0]
		findLocationHelper(t, c, "main.stacktraceme", false, 1, stacktracemeAddr)
	})
L
Luke Hoban 已提交
608

609
	withTestClient1("locationsUpperCase", t, func(c *rpc1.RPCClient) {
L
Luke Hoban 已提交
610 611 612 613 614 615 616 617 618 619 620 621 622 623 624 625 626 627 628 629 630 631 632 633 634 635 636 637 638 639 640 641 642 643 644 645
		// Upper case
		findLocationHelper(t, c, "locationsUpperCase.go:6", false, 1, 0)

		// Fully qualified path
		path := protest.Fixtures["locationsUpperCase"].Source
		findLocationHelper(t, c, path+":6", false, 1, 0)
		bp, err := c.CreateBreakpoint(&api.Breakpoint{File: path, Line: 6})
		if err != nil {
			t.Fatalf("Could not set breakpoint in %s: %v\n", path, err)
		}
		c.ClearBreakpoint(bp.ID)

		//  Allow `/` or `\` on Windows
		if runtime.GOOS == "windows" {
			findLocationHelper(t, c, filepath.FromSlash(path)+":6", false, 1, 0)
			bp, err = c.CreateBreakpoint(&api.Breakpoint{File: filepath.FromSlash(path), Line: 6})
			if err != nil {
				t.Fatalf("Could not set breakpoint in %s: %v\n", filepath.FromSlash(path), err)
			}
			c.ClearBreakpoint(bp.ID)
		}

		// Case-insensitive on Windows, case-sensitive otherwise
		shouldWrongCaseBeError := true
		numExpectedMatches := 0
		if runtime.GOOS == "windows" {
			shouldWrongCaseBeError = false
			numExpectedMatches = 1
		}
		findLocationHelper(t, c, strings.ToLower(path)+":6", shouldWrongCaseBeError, numExpectedMatches, 0)
		bp, err = c.CreateBreakpoint(&api.Breakpoint{File: strings.ToLower(path), Line: 6})
		if (err == nil) == shouldWrongCaseBeError {
			t.Fatalf("Could not set breakpoint in %s: %v\n", strings.ToLower(path), err)
		}
		c.ClearBreakpoint(bp.ID)
	})
646
}
A
aarzilli 已提交
647

648
func Test1ClientServer_FindLocationsAddr(t *testing.T) {
649
	withTestClient1("locationsprog2", t, func(c *rpc1.RPCClient) {
650 651 652
		<-c.Continue()

		afunction := findLocationHelper(t, c, "main.afunction", false, 1, 0)[0]
653
		anonfunc := findLocationHelper(t, c, "main.main.func1", false, 1, 0)[0]
654 655 656 657 658 659

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

660
func Test1ClientServer_EvalVariable(t *testing.T) {
661
	withTestClient1("testvariables", t, func(c *rpc1.RPCClient) {
A
aarzilli 已提交
662 663 664 665 666 667
		state := <-c.Continue()

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

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

671
		t.Logf("var1: %s", var1.SinglelineString())
A
aarzilli 已提交
672 673

		if var1.Value != "foofoofoofoofoofoo" {
674
			t.Fatalf("Wrong variable value: %s", var1.Value)
675 676 677 678
		}
	})
}

679
func Test1ClientServer_SetVariable(t *testing.T) {
680
	withTestClient1("testvariables", t, func(c *rpc1.RPCClient) {
681 682 683 684 685 686
		state := <-c.Continue()

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

D
Derek Parker 已提交
687
		assertNoError(c.SetVariable(api.EvalScope{-1, 0}, "a2", "8"), t, "SetVariable()")
688

D
Derek Parker 已提交
689
		a2, err := c.EvalVariable(api.EvalScope{-1, 0}, "a2")
690

691
		t.Logf("a2: %v", a2)
692

693 694 695 696
		n, err := strconv.Atoi(a2.Value)

		if err != nil && n != 8 {
			t.Fatalf("Wrong variable value: %v", a2)
A
aarzilli 已提交
697 698 699
		}
	})
}
700

701
func Test1ClientServer_FullStacktrace(t *testing.T) {
702
	withTestClient1("goroutinestackprog", t, func(c *rpc1.RPCClient) {
703 704 705 706 707 708 709 710 711 712 713 714 715 716 717 718 719 720 721 722 723 724 725 726 727
		_, 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
				}
				if frame.Function.Name != "main.agoroutine" {
					continue
				}
				t.Logf("frame %d: %v", i, frame)
				for _, arg := range frame.Arguments {
					if arg.Name != "i" {
						continue
					}
728 729 730 731 732
					t.Logf("frame %d, variable i is %v\n", arg)
					argn, err := strconv.Atoi(arg.Value)
					if err == nil {
						found[argn] = true
					}
733 734 735 736 737 738 739 740 741 742 743 744 745 746 747 748 749 750 751 752 753 754 755 756 757 758 759 760
				}
			}
		}

		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)
			}
761 762 763
			vn, err := strconv.Atoi(v.Value)
			if err != nil || vn != cur {
				t.Fatalf("Expected value %d got %d (error: %v)", cur, vn, err)
764 765 766 767 768 769 770 771
			}
			cur--
			if cur < 0 {
				break
			}
		}
	})
}
772

773
func Test1Issue355(t *testing.T) {
774
	// After the target process has terminated should return an error but not crash
775
	withTestClient1("continuetestprog", t, func(c *rpc1.RPCClient) {
776 777 778 779 780 781 782 783 784 785 786 787 788 789 790 791 792 793 794 795 796 797 798 799 800 801 802 803 804 805 806 807 808 809 810 811 812 813 814 815 816 817 818 819 820 821 822 823 824 825
		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()")
		assertError(c.SetVariable(api.EvalScope{gid, 0}, "a", "10"), t, "SetVariable()")
		_, err = c.ListLocalVariables(api.EvalScope{gid, 0})
		assertError(err, t, "ListLocalVariables()")
		_, err = c.ListFunctionArgs(api.EvalScope{gid, 0})
		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()")
		_, err = c.FindLocation(api.EvalScope{gid, 0}, "+1")
		assertError(err, t, "FindLocation()")
A
aarzilli 已提交
826 827 828 829 830
		_, err = c.DisassemblePC(api.EvalScope{-1, 0}, 0x40100, api.IntelFlavour)
		assertError(err, t, "DisassemblePC()")
	})
}

831
func Test1Disasm(t *testing.T) {
A
aarzilli 已提交
832 833 834 835
	// 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
836
	withTestClient1("locationsprog2", t, func(c *rpc1.RPCClient) {
A
aarzilli 已提交
837 838 839 840 841 842 843 844 845 846 847 848 849 850 851 852 853 854 855 856 857 858 859 860 861 862 863 864 865 866 867 868 869 870 871 872 873 874 875 876 877 878 879 880 881 882 883 884 885 886 887 888 889 890 891 892 893 894 895 896 897 898 899 900 901 902 903 904 905 906 907 908 909 910 911 912 913 914 915 916 917 918 919 920 921 922 923 924 925 926 927 928 929 930 931 932
		ch := c.Continue()
		state := <-ch
		assertNoError(state.Err, t, "Continue()")

		locs, err := c.FindLocation(api.EvalScope{-1, 0}, "main.main")
		assertNoError(err, t, "FindLocation()")
		if len(locs) != 1 {
			t.Fatalf("wrong number of locations for main.main: %d", len(locs))
		}
		d1, err := c.DisassemblePC(api.EvalScope{-1, 0}, locs[0].PC, api.IntelFlavour)
		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))
		d2, err := c.DisassembleRange(api.EvalScope{-1, 0}, pcstart, pcend, api.IntelFlavour)
		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")
		}

		d3, err := c.DisassemblePC(api.EvalScope{-1, 0}, state.CurrentThread.PC, api.IntelFlavour)
		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 {
			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" {
				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))

			d3, err = c.DisassemblePC(api.EvalScope{-1, 0}, state.CurrentThread.PC, api.IntelFlavour)
			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)
				}
				if curinstr.DestLoc.Function.Name != "main.afunction" {
					t.Fatalf("Call instruction destination not main.afunction: %v", curinstr)
				}
				break
			}

			count++
		}
933 934
	})
}
935

936
func Test1NegativeStackDepthBug(t *testing.T) {
937
	// After the target process has terminated should return an error but not crash
938
	withTestClient1("continuetestprog", t, func(c *rpc1.RPCClient) {
939 940 941 942 943 944 945 946 947
		_, 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()")
	})
}
948

949
func Test1ClientServer_CondBreakpoint(t *testing.T) {
950
	withTestClient1("parallel_next", t, func(c *rpc1.RPCClient) {
951 952 953 954 955 956 957 958 959 960 961 962 963 964 965 966 967 968 969 970 971 972 973 974 975 976 977
		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()")

		nvar, err := c.EvalVariable(api.EvalScope{-1, 0}, "n")
		assertNoError(err, t, "EvalVariable()")

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

979
func Test1SkipPrologue(t *testing.T) {
980
	withTestClient1("locationsprog2", t, func(c *rpc1.RPCClient) {
981 982 983 984 985 986 987 988 989 990 991 992 993 994
		<-c.Continue()

		afunction := findLocationHelper(t, c, "main.afunction", false, 1, 0)[0]
		findLocationHelper(t, c, "*fn1", false, 1, afunction)
		findLocationHelper(t, c, "locationsprog2.go:8", false, 1, afunction)

		afunction0 := findLocationHelper(t, c, "main.afunction:0", false, 1, 0)[0]

		if afunction == afunction0 {
			t.Fatal("Skip prologue failed")
		}
	})
}

995
func Test1SkipPrologue2(t *testing.T) {
996
	withTestClient1("callme", t, func(c *rpc1.RPCClient) {
997 998 999 1000 1001 1002 1003 1004 1005 1006 1007 1008 1009 1010 1011 1012
		callme := findLocationHelper(t, c, "main.callme", false, 1, 0)[0]
		callmeZ := findLocationHelper(t, c, "main.callme:0", false, 1, 0)[0]
		findLocationHelper(t, c, "callme.go:5", false, 1, callme)
		if callme == callmeZ {
			t.Fatal("Skip prologue failed")
		}

		callme2 := findLocationHelper(t, c, "main.callme2", false, 1, 0)[0]
		callme2Z := findLocationHelper(t, c, "main.callme2:0", false, 1, 0)[0]
		findLocationHelper(t, c, "callme.go:12", false, 1, callme2)
		if callme2 == callme2Z {
			t.Fatal("Skip prologue failed")
		}

		callme3 := findLocationHelper(t, c, "main.callme3", false, 1, 0)[0]
		callme3Z := findLocationHelper(t, c, "main.callme3:0", false, 1, 0)[0]
1013 1014 1015 1016 1017 1018 1019 1020 1021 1022
		ver, _ := proc.ParseVersionString(runtime.Version())
		if ver.Major < 0 || ver.AfterOrEqual(proc.GoVer18Beta) {
			findLocationHelper(t, c, "callme.go:19", false, 1, callme3)
		} else {
			// callme3 does not have local variables therefore the first line of the
			// function is immediately after the prologue
			// This is only true before 1.8 where frame pointer chaining introduced a
			// bit of prologue even for functions without local variables
			findLocationHelper(t, c, "callme.go:19", false, 1, callme3Z)
		}
1023 1024 1025 1026 1027
		if callme3 == callme3Z {
			t.Fatal("Skip prologue failed")
		}
	})
}
1028

1029
func Test1Issue419(t *testing.T) {
1030 1031
	// 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
1032
	withTestClient1("issue419", t, func(c *rpc1.RPCClient) {
1033 1034 1035 1036 1037 1038 1039 1040 1041 1042 1043 1044
		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 已提交
1045

1046
func Test1TypesCommand(t *testing.T) {
1047
	withTestClient1("testvariables2", t, func(c *rpc1.RPCClient) {
A
aarzilli 已提交
1048 1049 1050 1051 1052 1053 1054 1055 1056 1057 1058 1059 1060 1061 1062 1063
		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")
		}

1064
		types, err = c.ListTypes("^main.astruct$")
A
aarzilli 已提交
1065
		assertNoError(err, t, "ListTypes(\"main.astruct\")")
1066 1067
		if len(types) != 1 {
			t.Fatalf("ListTypes(\"^main.astruct$\") did not filter properly, expected 1 got %d: %v", len(types), types)
A
aarzilli 已提交
1068 1069 1070
		}
	})
}
1071 1072

func Test1Issue406(t *testing.T) {
1073
	withTestClient1("issue406", t, func(c *rpc1.RPCClient) {
1074 1075 1076 1077 1078 1079 1080 1081 1082 1083 1084 1085 1086
		locs, err := c.FindLocation(api.EvalScope{-1, 0}, "issue406.go:146")
		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()")
		v, err := c.EvalVariable(api.EvalScope{-1, 0}, "cfgtree")
		assertNoError(err, t, "EvalVariable()")
		vs := v.MultilineString("")
		t.Logf("cfgtree formats to: %s\n", vs)
	})
}