The test is shell code that invokes ruby and looks at output.
I think we can use the functionality in 'go test' to replace a lot of the "shell test infrastructure".
'gem_test.go' here replaces the --require=
functionality in seen
there in gem-check
.
The benefits are:
- less shell footguns.
- standard output of 'go test'
- easy re-use of golang function
- no dependencies on /bin/sh (or grep, tee, busybox, sed, awk...) inside the test environment.
You can run this example here just like this.
$ go test -args rake
PASS
ok example.com/gemcheck 0.081s
$ go test -args gofoo rake
testing gofoo
testing rake
--- FAIL: TestGem (0.09s)
--- FAIL: TestGem/gofoo (0.03s)
gem_test.go:57: Failed require 'gofoo': stderr:
stdout: require gofoo: cannot load such file -- gofoo
FAIL
exit status 1
FAIL example.com/gemcheck 0.098s
One way to include this would be to create a multi-call binary in go that would take a 'gem-check' subcommand and then call it from the pipeline. Such as:
$ tw-checks gem-check --require=rake
Other subcommands of tw-checks
could just as easily replace other shell
programs like ldd-check
or header-check