elvish/eval/eval_test.go
2018-10-10 00:39:24 +08:00

93 lines
2.3 KiB
Go

package eval
import (
"reflect"
"strconv"
"syscall"
"testing"
"github.com/elves/elvish/eval/vals"
)
func TestBuiltinPid(t *testing.T) {
pid := strconv.Itoa(syscall.Getpid())
builtinPid := vals.ToString(builtinNs["pid"].Get())
if builtinPid != pid {
t.Errorf(`ev.builtin["pid"] = %v, want %v`, builtinPid, pid)
}
}
func TestNumBgJobs(t *testing.T) {
Test(t,
That("put $num-bg-jobs").Puts("0"),
// TODO(xiaq): Test cases where $num-bg-jobs > 0. This cannot be done
// with { put $num-bg-jobs }& because the output channel may have
// already been closed when the closure is run.
)
}
func TestMiscEval(t *testing.T) {
Test(t,
// Pseudo-namespaces local: and up:
That("x=lorem; { local:x=ipsum; put $up:x $local:x }").Puts(
"lorem", "ipsum"),
That("x=lorem; { up:x=ipsum; put $x }; put $x").Puts("ipsum", "ipsum"),
// Pseudo-namespace E:
That("E:FOO=lorem; put $E:FOO").Puts("lorem"),
That("del E:FOO; put $E:FOO").Puts(""),
)
}
func TestMultipleEval(t *testing.T) {
texts := []string{"x=hello", "put $x"}
outs, _, err := evalAndCollect(t, NewEvaler(), texts, 1)
wantOuts := []interface{}{"hello"}
if err != nil {
t.Errorf("eval %s => %v, want nil", texts, err)
}
if !reflect.DeepEqual(outs, wantOuts) {
t.Errorf("eval %s outputs %v, want %v", texts, outs, wantOuts)
}
}
func BenchmarkOutputCaptureOverhead(b *testing.B) {
op := effectOp{funcOp(func(*Frame) error { return nil }), 0, 0}
benchmarkOutputCapture(op, b.N)
}
func BenchmarkOutputCaptureValues(b *testing.B) {
op := effectOp{funcOp(func(fm *Frame) error {
fm.ports[1].Chan <- "test"
return nil
}), 0, 0}
benchmarkOutputCapture(op, b.N)
}
func BenchmarkOutputCaptureBytes(b *testing.B) {
bytesToWrite := []byte("test")
op := effectOp{funcOp(func(fm *Frame) error {
fm.ports[1].File.Write(bytesToWrite)
return nil
}), 0, 0}
benchmarkOutputCapture(op, b.N)
}
func BenchmarkOutputCaptureMixed(b *testing.B) {
bytesToWrite := []byte("test")
op := effectOp{funcOp(func(fm *Frame) error {
fm.ports[1].Chan <- false
fm.ports[1].File.Write(bytesToWrite)
return nil
}), 0, 0}
benchmarkOutputCapture(op, b.N)
}
func benchmarkOutputCapture(op effectOp, n int) {
ev := NewEvaler()
defer ev.Close()
ec := NewTopFrame(ev, NewInternalSource("[benchmark]"), []*Port{{}, {}, {}})
for i := 0; i < n; i++ {
pcaptureOutput(ec, op)
}
}