mirror of
				https://github.com/go-delve/delve.git
				synced 2025-10-31 18:57:18 +08:00 
			
		
		
		
	 d54a3262d2
			
		
	
	d54a3262d2
	
	
	
		
			
			Added: - break: b - continue: c - step: si - next: n - print: p Taken from the gdb command list Also updated .gitignore to ignore built dlv file in cmd/dlv
		
			
				
	
	
		
			54 lines
		
	
	
		
			1005 B
		
	
	
	
		
			Go
		
	
	
	
	
	
			
		
		
	
	
			54 lines
		
	
	
		
			1005 B
		
	
	
	
		
			Go
		
	
	
	
	
	
| package command
 | |
| 
 | |
| import (
 | |
| 	"fmt"
 | |
| 	"testing"
 | |
| 
 | |
| 	"github.com/derekparker/delve/proctl"
 | |
| )
 | |
| 
 | |
| func TestCommandDefault(t *testing.T) {
 | |
| 	var (
 | |
| 		cmds = Commands{}
 | |
| 		cmd  = cmds.Find("non-existant-command")
 | |
| 	)
 | |
| 
 | |
| 	err := cmd(nil)
 | |
| 	if err == nil {
 | |
| 		t.Fatal("cmd() did not default")
 | |
| 	}
 | |
| 
 | |
| 	if err.Error() != "command not available" {
 | |
| 		t.Fatal("wrong command output")
 | |
| 	}
 | |
| }
 | |
| 
 | |
| func TestCommandReplay(t *testing.T) {
 | |
| 	cmds := DebugCommands()
 | |
| 	cmds.Register("foo", func(p *proctl.DebuggedProcess, args ...string) error { return fmt.Errorf("registered command") }, "foo command")
 | |
| 	cmd := cmds.Find("foo")
 | |
| 
 | |
| 	err := cmd(nil)
 | |
| 	if err.Error() != "registered command" {
 | |
| 		t.Fatal("wrong command output")
 | |
| 	}
 | |
| 
 | |
| 	cmd = cmds.Find("")
 | |
| 	err = cmd(nil)
 | |
| 	if err.Error() != "registered command" {
 | |
| 		t.Fatal("wrong command output")
 | |
| 	}
 | |
| }
 | |
| 
 | |
| func TestCommandReplayWithoutPreviousCommand(t *testing.T) {
 | |
| 	var (
 | |
| 		cmds = DebugCommands()
 | |
| 		cmd  = cmds.Find("")
 | |
| 		err  = cmd(nil)
 | |
| 	)
 | |
| 
 | |
| 	if err != nil {
 | |
| 		t.Error("Null command not returned", err)
 | |
| 	}
 | |
| }
 |