integration1_test.go 31.3 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/proc/test"
D
Derek Parker 已提交
15

16
	"github.com/derekparker/delve/proc"
D
Dan Mace 已提交
17 18
	"github.com/derekparker/delve/service"
	"github.com/derekparker/delve/service/api"
19
	"github.com/derekparker/delve/service/rpc1"
D
Dan Mace 已提交
20 21
)

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

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

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

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

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

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

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

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

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

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

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

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

		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) {
193
	withTestClient1("testnextprog", t, func(c *rpc1.RPCClient) {
194
		bp, err := c.CreateBreakpoint(&api.Breakpoint{FunctionName: initialLocation, Line: -1})
D
Dan Mace 已提交
195 196 197 198
		if err != nil {
			t.Fatalf("Unexpected error: %v", err)
		}

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

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

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

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

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

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

232
	if ver.Major < 0 || ver.AfterOrEqual(proc.GoVersion{1, 7, -1, 0, 0}) {
233 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
		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 已提交
269
	}
270

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

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

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

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

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

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

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

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

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

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

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

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

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

366
		_, err = c.CreateBreakpoint(&api.Breakpoint{FunctionName: "main.main", Line: 1})
D
Dan Mace 已提交
367 368 369
		if err != nil {
			t.Fatalf("Unexpected error: %v", err)
		}
A
aarzilli 已提交
370 371 372
		state := <-c.Continue()
		if state.Err != nil {
			t.Fatalf("Unexpected error: %v, state: %#v", state.Err, state)
D
Dan Mace 已提交
373 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
		}

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

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

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

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

				t.Logf("%v", state)

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

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

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

507
func Test1ClientServer_traceContinue2(t *testing.T) {
508
	withTestClient1("integrationprog", t, func(c *rpc1.RPCClient) {
509
		bp1, err := c.CreateBreakpoint(&api.Breakpoint{FunctionName: "main.main", Line: 1, Tracepoint: true})
510 511 512
		if err != nil {
			t.Fatalf("Unexpected error: %v\n", err)
		}
513
		bp2, err := c.CreateBreakpoint(&api.Breakpoint{FunctionName: "main.sayhi", Line: 1, Tracepoint: true})
514 515 516 517 518 519 520
		if err != nil {
			t.Fatalf("Unexpected error: %v\n", err)
		}
		countMain := 0
		countSayhi := 0
		contChan := c.Continue()
		for state := range contChan {
521 522
			if state.CurrentThread != nil && state.CurrentThread.Breakpoint != nil {
				switch state.CurrentThread.Breakpoint.ID {
523 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
				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)
		}
	})
}
549

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

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

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

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

		<-c.Continue()

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

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

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

608
	withTestClient1("locationsUpperCase", t, func(c *rpc1.RPCClient) {
L
Luke Hoban 已提交
609 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
		// 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)
	})
645
}
A
aarzilli 已提交
646

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

700
func Test1ClientServer_FullStacktrace(t *testing.T) {
701
	withTestClient1("goroutinestackprog", t, func(c *rpc1.RPCClient) {
702 703 704 705 706 707 708 709 710 711 712 713 714 715 716 717 718 719 720 721 722 723 724 725 726
		_, 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
					}
727 728 729 730 731
					t.Logf("frame %d, variable i is %v\n", arg)
					argn, err := strconv.Atoi(arg.Value)
					if err == nil {
						found[argn] = true
					}
732 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
				}
			}
		}

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

772
func Test1Issue355(t *testing.T) {
773
	// After the target process has terminated should return an error but not crash
774
	withTestClient1("continuetestprog", t, func(c *rpc1.RPCClient) {
775 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
		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 已提交
825 826 827 828 829
		_, err = c.DisassemblePC(api.EvalScope{-1, 0}, 0x40100, api.IntelFlavour)
		assertError(err, t, "DisassemblePC()")
	})
}

830
func Test1Disasm(t *testing.T) {
A
aarzilli 已提交
831 832 833 834
	// 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
835
	withTestClient1("locationsprog2", t, func(c *rpc1.RPCClient) {
A
aarzilli 已提交
836 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
		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++
		}
932 933
	})
}
934

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

948
func Test1ClientServer_CondBreakpoint(t *testing.T) {
949
	withTestClient1("parallel_next", t, func(c *rpc1.RPCClient) {
950 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
		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)
		}
	})
}
977

978
func Test1SkipPrologue(t *testing.T) {
979
	withTestClient1("locationsprog2", t, func(c *rpc1.RPCClient) {
980 981 982 983 984 985 986 987 988 989 990 991 992 993
		<-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")
		}
	})
}

994
func Test1SkipPrologue2(t *testing.T) {
995
	withTestClient1("callme", t, func(c *rpc1.RPCClient) {
996 997 998 999 1000 1001 1002 1003 1004 1005 1006 1007 1008 1009 1010 1011 1012 1013 1014 1015 1016 1017 1018
		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]
		// callme3 does not have local variables therefore the first line of the function is immediately after the prologue
		findLocationHelper(t, c, "callme.go:18", false, 1, callme3Z)
		if callme3 == callme3Z {
			t.Fatal("Skip prologue failed")
		}
	})
}
1019

1020
func Test1Issue419(t *testing.T) {
1021 1022
	// 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
1023
	withTestClient1("issue419", t, func(c *rpc1.RPCClient) {
1024 1025 1026 1027 1028 1029 1030 1031 1032 1033 1034 1035
		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 已提交
1036

1037
func Test1TypesCommand(t *testing.T) {
1038
	withTestClient1("testvariables2", t, func(c *rpc1.RPCClient) {
A
aarzilli 已提交
1039 1040 1041 1042 1043 1044 1045 1046 1047 1048 1049 1050 1051 1052 1053 1054
		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")
		}

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

func Test1Issue406(t *testing.T) {
1064
	withTestClient1("issue406", t, func(c *rpc1.RPCClient) {
1065 1066 1067 1068 1069 1070 1071 1072 1073 1074 1075 1076 1077
		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)
	})
}