xgo
English | 简体中文
Enable function Trap for go
, and provide tools like Mock and Trace to help go developers write unit test and debug both easier and faster.
xgo
works as a drop-in replacement for go run
,go build
, and go test
.
It adds missing abilities to go program by cooperating with(or hacking) the go compiler.
These abilities:
See Quick Start and Documentation for more details.
Installation
# macOS and Linux (and WSL)
curl -fsSL https://github.com/xhd2015/xgo/raw/master/install.sh | bash
# windows
powershell -c "irm github.com/xhd2015/xgo/raw/master/install.ps1|iex"
If you've already installed xgo
, you can upgrade it with:
xgo upgrade
If you want to build from source, run with:
git clone https://github.com/xhd2015/xgo
cd xgo
go run ./script/build-release --local
Verify the installation:
xgo version
# output:
# 1.0.x
Requirement
xgo
requires at least go1.17
to compile.
There is no specific limitation on OS and Architecture.
All OS and Architectures are supported by xgo
as long as they are supported by go
.
OS:
- MacOS
- Linux
- Windows (+WSL)
- ...
Architecture:
- x86
- x86_64(amd64)
- arm64
- ...
Quick Start
Let's write a unit test with xgo
:
- Ensure you have installed
xgo
by following the Installation section, and verify the installation with:
xgo version
# output
# 1.0.x
If xgo
is not found, you may need to add ~/.xgo/bin
to your PATH
variable.
- Init a go project:
mkdir demo
cd demo
go mod init demo
- Add
demo_test.go
with following code:
package demo
import (
"context"
"testing"
"github.com/xhd2015/xgo/runtime/core"
"github.com/xhd2015/xgo/runtime/mock"
)
func MyFunc() string {
return "my func"
}
func TestFuncMock(t *testing.T) {
mock.Mock(MyFunc, func(ctx context.Context, fn *core.FuncInfo, args core.Object, results core.Object) error {
results.GetFieldIndex(0).Set("mock func")
return nil
})
text := MyFunc()
if text != "mock func" {
t.Fatalf("expect MyFunc() to be 'mock func', actual: %s", text)
}
}
- Get the
xgo/runtime
dependency:
go get github.com/xhd2015/xgo/runtime
- Run the code:
# NOTE: xgo will take some time
# for the first time to setup.
# It will be as fast as go after setup.
xgo test -v ./
Output:
=== RUN TestFuncMock
--- PASS: TestFuncMock (0.00s)
PASS
ok demo
If you run this with go, it would fail:
go test -v ./
Output:
WARNING: failed to link __xgo_link_on_init_finished.(xgo required)
WARNING: failed to link __xgo_link_on_goexit.(xgo required)
=== RUN TestFuncMock
WARNING: failed to link __xgo_link_set_trap.(xgo required)
WARNING: failed to link __xgo_link_init_finished.(xgo required)
demo_test.go:21: expect MyFunc() to be 'mock func', actual: my func
--- FAIL: TestFuncMock (0.00s)
FAIL
FAIL demo 0.771s
FAIL
The above demo can be found at doc/demo.
API
Trap
Trap allows developer to intercept function execution on the fly.
Trap is the core of xgo
as it is the basis of other abilities like Mock and Trace.
The following example logs function execution trace by adding a Trap interceptor:
(check test/testdata/trap/trap.go for more details.)
package main
import (
"context"
"fmt"
"github.com/xhd2015/xgo/runtime/core"
"github.com/xhd2015/xgo/runtime/trap"
)
func init() {
trap.AddInterceptor(&trap.Interceptor{
Pre: func(ctx context.Context, f *core.FuncInfo, args core.Object, results core.Object) (interface{}, error) {
trap.Skip()
if f.Name == "A" {
fmt.Printf("trap A\n")
return nil, nil
}
if f.Name == "B" {
fmt.Printf("abort B\n")
return nil, trap.ErrAbort
}
return nil, nil
},
})
}
func main() {
A()
B()
}
func A() {
fmt.Printf("A\n")
}
func B() {
fmt.Printf("B\n")
}
Run with go
:
go run ./
# output:
# A
# B
Run with xgo
:
xgo run ./
# output:
# trap A
# A
# abort B
AddInterceptor()
add given interceptor to either global or local, depending on whether it is called from init
or after init
:
- Before
init
: effective globally for all goroutines,
- After
init
: effective only for current goroutine, and will be cleared after current goroutine exits.
When AddInterceptor()
is called after init
, it will return a dispose function to clear the interceptor earlier before current goroutine exits.
Example:
func main(){
clear := trap.AddInterceptor(...)
defer clear()
...
}
Mock
Mock simplifies the process of setting up Trap interceptors.
The Mock API:
Arguments:
- If
fn
is a simple function(i.e. a package level function, or a function owned by a type, or a closure(yes, we do support mocking closures)),then all call to that function will be intercepted,
- If
fn
is a method(i.e. file.Read
),then only call to the instance will be intercepted, other instances will not be affected
Scope:
- If
Mock
is called from init
, then all goroutines will be mocked.
- Otherwise,
Mock
is called after init
, then the mock interceptor will only be effective for current gorotuine, other goroutines are not affected.
Interceptor Signature: func(ctx context.Context, fn *core.FuncInfo, args core.Object, results core.Object) error
- If the interceptor returns
nil
, then the target function is mocked,
- If the interceptor returns
mock.ErrCallOld
, then the target function is called again,
- Otherwise, the interceptor returns a non-nil error, that will be set to the function's return error.
There are other 2 APIs can be used to setup mock based on name, check runtime/mock/README.md for more details.
Function mock example(1):
The following code demonstrates how to setup mock on a given function:
- The function
add(a,b)
normally adds a
and b
up, resulting in a+b
,
- However, after
mock.Mock
, the logic is changed to a-b
.
(check test/testdata/mock_res/main.go for more details.)
package main
import (
"context"
"fmt"
"github.com/xhd2015/xgo/runtime/core"
"github.com/xhd2015/xgo/runtime/mock"
)
func main() {
before := add(5, 2)
fmt.Printf("before mock: add(5,2)=%d\n", before)
mock.Mock(add, func(ctx context.Context, fn *core.FuncInfo, args core.Object, results core.Object) error {
a := args.GetField("a").Value().(int)
b := args.GetField("b").Value().(int)
res := a - b
results.GetFieldIndex(0).Set(res)
return nil
})
after := add(5, 2)
fmt.Printf("after mock: add(5,2)=%d\n", after)
}
func add(a int, b int) int {
return a + b
}
Run with go
:
go run ./
# output:
# before mock: add(5,2)=7
# after mock: add(5,2)=7
Run with xgo
:
xgo run ./
# output:
# before mock: add(5,2)=7
# after mock: add(5,2)=3
Function mock example(2):
func MyFunc() string {
return "my func"
}
func TestFuncMock(t *testing.T){
mock.Mock(MyFunc, func(ctx context.Context, fn *core.FuncInfo, args core.Object, results core.Object) error {
results.GetFieldIndex(0).Set("mock func")
return nil
})
text := MyFunc()
if text!="mock func"{
t.Fatalf("expect MyFunc() to be 'mock func', actual: %s", text)
}
}
Method mock example:
type MyStruct struct {
name string
}
func (c *MyStruct) Name() string {
return c.name
}
func TestMethodMock(t *testing.T){
myStruct := &MyStruct{
name: "my struct",
}
otherStruct := &MyStruct{
name: "other struct",
}
mock.Mock(myStruct.Name, func(ctx context.Context, fn *core.FuncInfo, args core.Object, results core.Object) error {
results.GetFieldIndex(0).Set("mock struct")
return nil
})
// myStruct is affected
name := myStruct.Name()
if name!="mock struct"{
t.Fatalf("expect myStruct.Name() to be 'mock struct', actual: %s", name)
}
// otherStruct is not affected
otherName := otherStruct.Name()
if otherName!="other struct"{
t.Fatalf("expect otherStruct.Name() to be 'other struct', actual: %s", otherName)
}
}
Notice for mocking stdlib: due to performance and security impact, only a few packages and functions of stdlib can be mocked, the list can be found at runtime/mock/stdlib.md. If you want to mock additional stdlib functions, please discussion in Issue#6。
Trace
It is painful when debugging with a deep call stack.
Trace addresses this issue by collecting the hiearchical stack trace and stores it into file for later use.
Needless to say, with Trace, debug becomes less usual:
(check test/testdata/trace/trace.go for more details.)
package main
import (
"fmt"
"github.com/xhd2015/xgo/runtime/trace"
)
func init() {
trace.Enable()
}
func main() {
A()
B()
C()
}
func A() { fmt.Printf("A\n") }
func B() { fmt.Printf("B\n");C(); }
func C() { fmt.Printf("C\n") }
Run with go
:
go run ./
# output:
# A
# B
# C
# C
Run with xgo
:
XGO_TRACE_OUTPUT=stdout xgo run ./
# output a JSON representing the call stacktrace like:
# {
# "Name": "main",
# "Children": [{
# "Name": "A"
# },{
# "Name": "B",
# "Children": [{
# "Name": "C"
# }]
# },{
# "Name": "C"
# }
# ]
# }
#
# NOTE: other fields are ommited for displaying key information.
You can view the trace with:xgo tool trace TestExample.json
Output:
By default, Trace will write traces to a temp directory under current working directory. This behavior can be overridden by setting XGO_TRACE_OUTPUT
to different values:
XGO_TRACE_OUTPUT=stdout
: traces will be written to stdout, for debugging purepose,
XGO_TRACE_OUTPUT=<dir>
: traces will be written to <dir>
,
XGO_TRACE_OUTPUT=off
: turn off trace.
Why xgo
?
The reason is simple: NO interface.
Yes, no interface, just for mocking. If the only reason to abstract an interface is to mock, then it only makes me feel boring, not working.
Extracting interface just for mocking is never an option to me. To the domain of the problem, it's merely a workaround. It enforces the code to be written in one style, that's why we don't like it.
Monkey patching simply does the right thing for the problem. But existing library are bad at compatiblility.
So I created xgo
, so I hope xgo
will also take over other solutions to the mocking problem.
Comparing xgo
with monkey
The project bouk/monkey, was initially created by bouk, as described in his blog https://bou.ke/blog/monkey-patching-in-go.
In short, it uses a low level assembly hack to replace function at runtime. Which exposes lots of confusing problems to its users as it gets used more and more widely(especially on MacOS).
Then it was archived and no longer maintained by the author himself. However, two projects later take over the asm idea and add support for newer go versions and architectures like Apple M1.
Still, the two does not solve the underlying compatiblility issues introduced by asm, including cross-platform support, the need to write to a read-only section of the execution code and lacking of general mock.
So developers still get annoying breaked every now and then.
Xgo managed to solve these problems by avoiding low level hacking of the language itself. Instead, it relies on the IR representation employed by the go compiler.
It does a so-called IR Rewritting
on the fly when the compiler compiles the source code. The IR(Intermediate Representation) is closer to the source code rather than the machine code. Thus it is much more stable than the monkey solution.
In conclusion, xgo
and monkey are compared as the following:
|
xgo |
monkey |
Technique |
IR |
ASM |
Function Mock |
Y |
Y |
Unexpected Function Mock |
Y |
N |
Per-Instance Method Mock |
Y |
N |
Per-Goroutine Mock |
Y |
N |
Closuer Mock |
Y |
Y |
Stack Trace |
Y |
N |
General Trap |
Y |
N |
Compatiblility |
NO LIMIT |
limited to amd64 and arm64 |
API |
simple |
complex |
Integration Effore |
easy |
hard |
Contribution
Want to help contribute to xgo
? Great! Check CONTRIBUTING
for help.
Evolution of xgo
xgo
is the successor of the original go-mock, which works by rewriting go code before compile.
The strategy employed by go-mock
works well but causes much longer build time for larger projects due to source code explosion.
However, go-mock
is remarkable for it's discovery of Trap, Trace besides Mock, and additional abilities like trapping variable and disabling map randomness.
It is the shoulder which xgo
stands on.