elvish/pkg/eval/purely_eval_test.go

65 lines
1.5 KiB
Go
Raw Normal View History

2020-03-31 12:28:51 +08:00
package eval
import (
"reflect"
"testing"
"github.com/elves/elvish/pkg/eval/vals"
"github.com/elves/elvish/pkg/eval/vars"
"github.com/elves/elvish/pkg/parse"
)
func TestPurelyEvalCompound(t *testing.T) {
home, cleanup := InTempHome()
defer cleanup()
var tests = []struct {
code string
upto int
wantValue string
wantErr error
}{
{code: "foobar", wantValue: "foobar"},
{code: "'foobar'", wantValue: "foobar"},
{code: "foo'bar'", wantValue: "foobar"},
{code: "$x", wantValue: "bar"},
{code: "foo$x", wantValue: "foobar"},
{code: "foo$x", upto: 3, wantValue: "foo"},
{code: "~", wantValue: home},
{code: "~/foo", wantValue: home + "/foo"},
{code: "[abc]", wantErr: ErrImpure},
{code: "$y", wantErr: ErrImpure},
{code: "a[0]", wantErr: ErrImpure},
{code: "$@x", wantErr: ErrImpure},
}
ev := NewEvaler()
ev.Global.Add("x", vars.NewReadOnly("bar"))
ev.Global.Add("y", vars.NewReadOnly(vals.MakeList()))
for _, test := range tests {
t.Run(test.code, func(t *testing.T) {
n := &parse.Compound{}
err := parse.ParseAs(
parse.Source{Name: "[test]", Code: test.code}, n, nil)
2020-03-31 12:28:51 +08:00
if err != nil {
panic(err)
}
upto := test.upto
if upto == 0 {
upto = -1
}
value, err := ev.PurelyEvalPartialCompound(n, upto)
if value != test.wantValue {
t.Errorf("got value %q, want %q", value, test.wantValue)
}
if !reflect.DeepEqual(err, test.wantErr) {
t.Errorf("got error %v, want %q", err, test.wantErr)
}
})
}
}